-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update nuget.exe. Remove duplicate files from package. Resolve nuget.… #2074
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/microsoft/sarif-sdk</projectUrl> | ||
<icon>triskelion.png</icon> | ||
<iconUrl>https://go.microsoft.com/fwlink/?linkid=2008860</iconUrl> | ||
<tags>SARIF command line static analysis</tags> | ||
<packageTypes> | ||
|
@@ -26,15 +27,14 @@ | |
/> | ||
<file src="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\net461\**" | ||
target="tools\net461" | ||
exclude="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\net461\Sarif*" | ||
exclude="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\net461\Sarif*;bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\net461\WorkItems*;" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
this exclusion prevents the unsigned binary from getting copied as well as the signed binary. since workitems.dll is signed, the lack of an exclusion resulted in it being duplicated in the package. |
||
/> | ||
<file src="bld\bin\Signing\net461\**" | ||
target="tools\net461" | ||
/> | ||
|
||
<file src="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\netcoreapp2.1\**" | ||
target="tools\netcoreapp2.1" | ||
exclude="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\netcoreapp2.1\Sarif*.dll" | ||
exclude="bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\netcoreapp2.1\Sarif*.dll;bld\bin\$platform$_$configuration$\Sarif.Multitool\Publish\netcoreapp2.1\WorkItems*" | ||
/> | ||
<file src="bld\bin\Signing\netcoreapp2.1\**" | ||
target="tools\netcoreapp2.1" | ||
|
@@ -55,6 +55,7 @@ | |
target="tools\netcoreapp2.1\any" | ||
/> | ||
|
||
<file src="triskelion.png" /> | ||
<file src="src\ReleaseHistory.md" /> | ||
<file src="src\Sarif.Multitool\**\*.cs" target="src" /> | ||
</files> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
more recent nuget clients expect an embedded icon rather than simply having a URL to one.