-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoodPlus.Common.props
More file actions
46 lines (38 loc) · 2.17 KB
/
FoodPlus.Common.props
File metadata and controls
46 lines (38 loc) · 2.17 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
<Project>
<PropertyGroup>
<AssemblyName>FoodPlus</AssemblyName>
<AssemblyVersion>1.0.0</AssemblyVersion>
<ReleaseVersion>1.0.0</ReleaseVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<OutputPath Condition=" '$(SolutionDir)' != '' ">$(SolutionDir)bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<OutputPath Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</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>