Skip to content

Commit

Permalink
Merge pull request #23 from 9ee1/develop
Browse files Browse the repository at this point in the history
Fix #22
  • Loading branch information
9ee1 authored Apr 30, 2019
2 parents 2eeea83 + 0f75b52 commit cf9c6f3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
7 changes: 4 additions & 3 deletions .build/Gee.External.Capstone.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
<metadata>
<id>Gee.External.Capstone</id>
<title>Capstone.NET</title>
<version>2.0.0</version>
<version>2.0.1</version>
<authors>Ahmed Garhy (@9ee1)</authors>
<owners>Ahmed Garhy (@9ee1)</owners>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<licenseUrl>https://github.com/9ee1/Capstone.NET/blob/master/LICENSE</licenseUrl>
<license type="file">LICENSE</license>
<projectUrl>https://github.com/9ee1/Capstone.NET</projectUrl>
<description>Capstone.NET is an opinionated .NET Core and a .NET Framework binding for the Capstone disassembly framework. It is written in C#, supports Capstone 4, and has a friendly and simple type safe API that is ridiculously easy to learn and quick to pick up.</description>
<releaseNotes>Capstone.NET 2.0+ IS NOT backwards-compatible with previous releases of Capstone.NET, specifically Capstone.NET 1.x. Please do not upgrade until you are prepared to put in the effort to refactor your existing applications and libraries. See https://github.com/9ee1/Capstone.NET/wiki/What's-New-in-Capstone.NET-2.x for more information.</releaseNotes>
<summary>Capstone.NET is an opinionated .NET Core and a .NET Framework binding for the Capstone disassembly framework. It is written in C#, supports Capstone 4, and has a friendly and simple type safe API that is ridiculously easy to learn and quick to pick up.</summary>
<releaseNotes>Capstone.NET 2.x IS NOT backwards-compatible with previous releases of Capstone.NET, specifically Capstone.NET 1.x. Please do not upgrade until you are prepared to put in the effort to refactor your existing applications and libraries. See https://github.com/9ee1/Capstone.NET/wiki/What-is-New-in-Capstone.NET-2.x for more information.</releaseNotes>
<copyright>Copyright (c) Ahmed Garhy</copyright>
<repository url="https://github.com/9ee1/Capstone.NET" />
<tags>capstone disassembler reverse-engineering security arm x86</tags>
Expand Down
22 changes: 13 additions & 9 deletions .build/pack.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,34 @@ CALL mkdir %~dp0\nuget\runtimes\win-x86\lib\netstandard2.0
CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
/property:Configuration="Release" ^
/property:Platform="Any CPU" ^
/property:AssemblyVersion=2.0.0.0 ^
/property:AssemblyVersion=2.0.1.0 ^
/property:Copyright="Copyright (c) Ahmed Garhy" ^
/property:FileVersion=2.0.0.0 ^
/property:InformationalVersion=2.0.0.0 ^
/property:FileVersion=2.0.1.0 ^
/property:InformationalVersion=2.0.1.0 ^
/property:Product="Capstone.NET"

CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
/property:Configuration="Release" ^
/property:Platform="x64" ^
/property:AssemblyVersion=2.0.0.0 ^
/property:AssemblyVersion=2.0.1.0 ^
/property:Copyright="Copyright (c) Ahmed Garhy" ^
/property:FileVersion=2.0.0.0 ^
/property:InformationalVersion=2.0.0.0 ^
/property:FileVersion=2.0.1.0 ^
/property:InformationalVersion=2.0.1.0 ^
/property:Product="Capstone.NET"

CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
/property:Configuration="Release" ^
/property:Platform="x86" ^
/property:AssemblyVersion=2.0.0.0 ^
/property:AssemblyVersion=2.0.1.0 ^
/property:Copyright="Copyright (c) Ahmed Garhy" ^
/property:FileVersion=2.0.0.0 ^
/property:InformationalVersion=2.0.0.0 ^
/property:FileVersion=2.0.1.0 ^
/property:InformationalVersion=2.0.1.0 ^
/property:Product="Capstone.NET"

CALL copy /V /Y ^
%~dp0\..\LICENSE ^
%~dp0\nuget\LICENSE

CALL copy /V /Y ^
%~dp0\Gee.External.Capstone.targets ^
%~dp0\nuget\build\Gee.External.Capstone.targets
Expand Down
4 changes: 2 additions & 2 deletions Gee.External.Capstone/Gee.External.Capstone.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cf9c6f3

Please sign in to comment.