Skip to content

Commit cf9c6f3

Browse files
authored
Merge pull request #23 from 9ee1/develop
Fix #22
2 parents 2eeea83 + 0f75b52 commit cf9c6f3

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

.build/Gee.External.Capstone.nuspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
<metadata>
44
<id>Gee.External.Capstone</id>
55
<title>Capstone.NET</title>
6-
<version>2.0.0</version>
6+
<version>2.0.1</version>
77
<authors>Ahmed Garhy (@9ee1)</authors>
88
<owners>Ahmed Garhy (@9ee1)</owners>
99
<requireLicenseAcceptance>true</requireLicenseAcceptance>
10-
<licenseUrl>https://github.com/9ee1/Capstone.NET/blob/master/LICENSE</licenseUrl>
10+
<license type="file">LICENSE</license>
1111
<projectUrl>https://github.com/9ee1/Capstone.NET</projectUrl>
1212
<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>
13-
<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>
13+
<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>
14+
<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>
1415
<copyright>Copyright (c) Ahmed Garhy</copyright>
1516
<repository url="https://github.com/9ee1/Capstone.NET" />
1617
<tags>capstone disassembler reverse-engineering security arm x86</tags>

.build/pack.bat

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,34 @@ CALL mkdir %~dp0\nuget\runtimes\win-x86\lib\netstandard2.0
1313
CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
1414
/property:Configuration="Release" ^
1515
/property:Platform="Any CPU" ^
16-
/property:AssemblyVersion=2.0.0.0 ^
16+
/property:AssemblyVersion=2.0.1.0 ^
1717
/property:Copyright="Copyright (c) Ahmed Garhy" ^
18-
/property:FileVersion=2.0.0.0 ^
19-
/property:InformationalVersion=2.0.0.0 ^
18+
/property:FileVersion=2.0.1.0 ^
19+
/property:InformationalVersion=2.0.1.0 ^
2020
/property:Product="Capstone.NET"
2121

2222
CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
2323
/property:Configuration="Release" ^
2424
/property:Platform="x64" ^
25-
/property:AssemblyVersion=2.0.0.0 ^
25+
/property:AssemblyVersion=2.0.1.0 ^
2626
/property:Copyright="Copyright (c) Ahmed Garhy" ^
27-
/property:FileVersion=2.0.0.0 ^
28-
/property:InformationalVersion=2.0.0.0 ^
27+
/property:FileVersion=2.0.1.0 ^
28+
/property:InformationalVersion=2.0.1.0 ^
2929
/property:Product="Capstone.NET"
3030

3131
CALL dotnet msbuild %~dp0\..\Capstone.NET.sln ^
3232
/property:Configuration="Release" ^
3333
/property:Platform="x86" ^
34-
/property:AssemblyVersion=2.0.0.0 ^
34+
/property:AssemblyVersion=2.0.1.0 ^
3535
/property:Copyright="Copyright (c) Ahmed Garhy" ^
36-
/property:FileVersion=2.0.0.0 ^
37-
/property:InformationalVersion=2.0.0.0 ^
36+
/property:FileVersion=2.0.1.0 ^
37+
/property:InformationalVersion=2.0.1.0 ^
3838
/property:Product="Capstone.NET"
3939

40+
CALL copy /V /Y ^
41+
%~dp0\..\LICENSE ^
42+
%~dp0\nuget\LICENSE
43+
4044
CALL copy /V /Y ^
4145
%~dp0\Gee.External.Capstone.targets ^
4246
%~dp0\nuget\build\Gee.External.Capstone.targets

Gee.External.Capstone/Gee.External.Capstone.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)