Skip to content

Commit

Permalink
update mk_nuget_task
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Oct 21, 2019
1 parent bfc3044 commit 0acbdff
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions scripts/mk_nuget_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,12 @@ def create_nuget_spec(release_version, release_commit):
<iconUrl>https://github.com/raw/Z3Prover/z3/{1}/package/icon.jpg</iconUrl>
<projectUrl>https://github.com/Z3Prover/z3</projectUrl>
<licenseUrl>https://github.com/raw/Z3Prover/z3/{1}/LICENSE.txt</licenseUrl>
<repository
type="git"
url="https://github.com/Z3Prover/z3.git"
branch="master"
commit="{1}"
/>
<repository type="git" url="https://github.com/Z3Prover/z3.git" branch="master" commit="{1}" />
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<language>en</language>
</metadata>
</package>""".format(release_version, release_commit)

print(contents)
with open("out/Microsoft.Z3.x64.nuspec", 'w') as f:
f.write(contents)

Expand Down

0 comments on commit 0acbdff

Please sign in to comment.