-
Notifications
You must be signed in to change notification settings - Fork 69
/
Directory.Build.props
30 lines (28 loc) · 1.19 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<VersionPrefix>1.4.6</VersionPrefix>
<Authors>BepInEx</Authors>
<PackageOutputPath>../bin/NuGet</PackageOutputPath>
<OutputPath Condition="'$(Configuration)' == 'Release'">../bin/$(MSBuildProjectName)</OutputPath>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>Il2CppInterop</RootNamespace>
<LangVersion>latest</LangVersion>
<PackageIcon>logo_icon.png</PackageIcon>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DebugType>embedded</DebugType>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Include="..\logo\logo_icon.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="..\README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
<PropertyGroup>
<!-- TODO: Remove once all public methods have been documented or hidden. -->
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
</Project>