forked from SamboyCoding/Cpp2IL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LibCpp2IL.csproj
26 lines (22 loc) · 981 Bytes
/
LibCpp2IL.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>ubuntu-x64;win-x64;osx-x64</RuntimeIdentifiers>
<LangVersion>9</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Samboy063.LibCpp2IL</PackageId>
<Version>2021.3.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/SamboyCoding/Cpp2IL.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Description>Library for interacting with IL2CPP metadata and binaries</Description>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Iced" Version="1.11.1" />
</ItemGroup>
</Project>