Skip to content
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

Binary parsers package #502

Merged
merged 3 commits into from
Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BuildPackages.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ SETLOCAL
call SetCurrentVersion.cmd

%~dp0.nuget\NuGet.exe pack %~dp0src\Nuget\BinSkim.nuspec -Properties configuration=%Configuration%;version=%MAJOR%.%MINOR%.%PATCH%%PRERELEASE% -Verbosity Quiet -BasePath %~dp0 -OutputDirectory %~dp0bld\bin\Nuget || goto :ExitFailed
%~dp0.nuget\NuGet.exe pack %~dp0src\Nuget\BinaryParsers.nuspec -Properties configuration=%Configuration%;version=%MAJOR%.%MINOR%.%PATCH%%PRERELEASE% -Verbosity Quiet -BasePath %~dp0 -OutputDirectory %~dp0bld\bin\Nuget || goto :ExitFailed

goto Exit

Expand Down
22 changes: 22 additions & 0 deletions src/Nuget/BinaryParsers.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>Microsoft.Binary.Parsers</id>
<version>$version$</version>
<title>Microsoft Binary Parsers</title>
<authors>Microsoft</authors>
<owners>Microsoft,TSE-SecurityTools</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A library that contains binary parsers for Windows portable executables and Linux ELF binaries.</description>
<summary>A library that contains binary parsers for Windows portable executables and Linux ELF binaries.</summary>
<releaseNotes>Version $version$ of BinSkim</releaseNotes>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<licenseUrl>https://github.com/microsoft/binskim/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/microsoft/binskim</projectUrl>
<tags>binary analysis binskim binscope security portable executable linkable format sdl devops devsecops</tags>
<iconUrl>https://go.microsoft.com/fwlink/?linkid=2008940</iconUrl>
</metadata>
<files>
<file src="bld\bin\x64_$configuration$\netstandard2.1\BinaryParsers.dll" target="lib\netstandard2.1"/>
</files>
</package>