-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBinaryNinja.csproj
More file actions
56 lines (48 loc) · 1.98 KB
/
BinaryNinja.csproj
File metadata and controls
56 lines (48 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>BinaryNinja</RootNamespace>
<AssemblyName>BinaryNinja</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latestmajor</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>library</OutputType>
<NativeLib>Shared</NativeLib>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- version -->
<Version>0.1.0.0</Version>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<ProductVersion>0.1.0.0</ProductVersion>
<Company>https://github.com/tinysec</Company>
<Product>BinaryNinja</Product>
<Copyright>tinysec©2006</Copyright>
<Description>BinaryNinja dotnet bindings</Description>
<!-- NuGet Package properties -->
<PackageId>BinaryNinja</PackageId>
<PackageTags>binaryninja bn bnapi bindings</PackageTags>
<Authors>tinysec</Authors>
<PackageProjectUrl>https://github.com/tinysec/BinaryNinja</PackageProjectUrl>
<RepositoryUrl>https://github.com/tinysec/BinaryNinja.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<!-- for Windows -->
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="README.md">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>