-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.props
More file actions
49 lines (41 loc) · 2.05 KB
/
plugin.props
File metadata and controls
49 lines (41 loc) · 2.05 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
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>@Someone</Authors>
</PropertyGroup>
<PropertyGroup>
<!-- This is the global version and is used for all projects that don't have a version -->
<Version Condition="$(Version) == ''">1.0.0</Version>
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
<PublicBeta>false</PublicBeta>
<Nullable>enable</Nullable>
<HarmonyVersion>2.2.2</HarmonyVersion>
<YamlDotNetVersion>12.0.0</YamlDotNetVersion>
<StyleCopVersion>1.1.118</StyleCopVersion>
<SemanticVersioningVersion>1.3.0</SemanticVersioningVersion>
<ExiledVersion>9.12.2</ExiledVersion>
<Copyright>Copyright © $(Authors) 2020 - $([System.DateTime]::Now.ToString("yyyy"))</Copyright>
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/Someone-193/SNAPI</RepositoryUrl>
<PackageProjectUrl>https://github.com/Someone-193/SNAPI</PackageProjectUrl>
<PackageLicenseExpression>CC-BY-SA-3.0</PackageLicenseExpression>
<DefineConstants Condition="$(PublicBeta) == 'true'">$(DefineConstants);PUBLIC_BETA</DefineConstants>
</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>
<NoWarn>$(NoWarn);SA1602</NoWarn>
<NoWarn>$(NoWarn);SA1010</NoWarn>
<NoWarn>$(NoWarn);SA1013</NoWarn>
<NoWarn>$(NoWarn);SA1028</NoWarn>
<NoWarn>$(NoWarn);SA1101</NoWarn>
<NoWarn>$(NoWarn);SA1011</NoWarn>
<NoWarn>$(NoWarn);SA1503</NoWarn>
<NoWarn>$(NoWarn);SA1118</NoWarn>
<NoWarn>$(NoWarn);SA1633</NoWarn>
</PropertyGroup>
</Project>