-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCOTL_API.Common.props
42 lines (36 loc) · 1.83 KB
/
COTL_API.Common.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
31
32
33
34
35
36
37
38
39
40
41
42
<Project>
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<Version>0.2.7</Version>
<LangVersion>latest</LangVersion>
<DebugType>portable</DebugType>
<IsPackable>true</IsPackable>
<ImplicitUsings>true</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<BepInExPluginGuid Condition="'$(BepInExPluginGuid )' == ''">$(Guid)</BepInExPluginGuid>
</PropertyGroup>
<PropertyGroup>
<!-- First one is "Forced Access" warning, second one is "Missing XML" comment -->
<NoWarn>$(NoWarn);Publicizer001;CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<OutputPath Condition=" '$(SolutionDir)' != '' ">$(SolutionDir)bin/$(Configuration)/$(MSBuildProjectName)/</OutputPath>
<OutputPath Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)bin/$(Configuration)/$(MSBuildProjectName)/</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>$(ProjectDir)bin/$(Configuration)/$(MSBuildProjectName)/$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.0.8" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.4.21" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.1.0" />
<PackageReference Include="UnityEngine.Modules" Version="2021.3.16" IncludeAssets="compile" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
</ItemGroup>
</Project>