Skip to content
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ jobs:
echo "[+] build windows"
dotnet publish -r win-x64 --self-contained=true -c Release -p:PublishDir=build /p:Version=${{ needs.version.outputs.version }} /p:FileVersion=${{ needs.version.outputs.version }} /p:AssemblyVersion=${{ needs.version.outputs.version }} /p:ProductVersion=${{ needs.version.outputs.version }}

- name: pack
run: |
echo "[+] Packing NuGet package"
dotnet pack --configuration Release -o build -p:PublishDir=build /p:Version=${{ needs.version.outputs.version }} /p:FileVersion=${{ needs.version.outputs.version }} /p:AssemblyVersion=${{ needs.version.outputs.version }} /p:ProductVersion=${{ needs.version.outputs.version }}

- name: collect artifacts
shell: bash
run: |
Expand Down
13 changes: 11 additions & 2 deletions BinaryNinja.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,19 @@
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<ProductVersion>0.1.0.0</ProductVersion>
<Company>tinysec.net</Company>
<Product>SharpBinja</Product>
<Company>https://github.com/tinysec</Company>
<Product>BinaryNinja</Product>
<Copyright>tinysec©2006-2025</Copyright>
<Description>BinaryNinja dotnet bindings</Description>

<!-- NuGet Package properties -->
<PackageId>BinaryNinja</PackageId>
<PackageTags>binaryninja bn bnapi bindings</PackageTags>
<Authors>https://github.com/tinysec</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/tinysec/BinaryNinja</PackageProjectUrl>
<RepositoryUrl>https://github.com/tinysec/BinaryNinja.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<!-- for Windows -->
Expand Down