forked from Exiled-Team/Common-Utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.props
49 lines (39 loc) · 1.85 KB
/
Plugin.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
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="$(BaseProperties) == '' OR $(BaseProperties) == 'true'">
<Authors>Exmod-Team</Authors>
</PropertyGroup>
<PropertyGroup Condition="$(BuildProperties) == '' OR $(BuildProperties) == 'true'">
<TargetFramework>net48</TargetFramework>
<LangVersion>10.0</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>../bin\$(Configuration)\</OutputPath>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
<!-- This is the global version and is used for all projects that don't have a version -->
<Version Condition="$(Version) == ''">7.1.0</Version>
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
<PublicBeta>false</PublicBeta>
<HarmonyVersion>2.2.2</HarmonyVersion>
<StyleCopVersion>1.1.118</StyleCopVersion>
<SemanticVersioningVersion>1.3.0</SemanticVersioningVersion>
<RepositoryType>Git</RepositoryType>
<PackageLicenseExpression>CC-BY-SA-3.0</PackageLicenseExpression>
<DefineConstants Condition="$(PublicBeta) == 'true'">$(DefineConstants);PUBLIC_BETA</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<DebugType>Portable</DebugType>
</PropertyGroup>
<!-- Disable warning about disabled generation of xml files on debug build -->
<PropertyGroup>
<NoWarn>$(NoWarn);SA0001</NoWarn>
<NoWarn>$(NoWarn);SA1000</NoWarn>
<NoWarn>$(NoWarn);SA1520</NoWarn>
<NoWarn>$(NoWarn);SA1009</NoWarn>
<NoWarn>$(NoWarn);SA1002</NoWarn>
</PropertyGroup>
</Project>