-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.csproj
49 lines (42 loc) · 1.71 KB
/
Plugin.csproj
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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<!--
Version information for an assembly consists of the following four values:
Major Version
Minor Version
Build Number
Starting in version 4.2.5, we are no longer including the fourth decimal
location, which previously held the date and time.
Also, be sure to release on github with the exact assembly version tag as below
so that the update manager works correctly (via the Github releases api and mimic)
-->
<Version>1.0.0</Version>
<AssemblyTitle>BossOrNurse</AssemblyTitle>
<Company></Company>
<Product>BossOrNurse</Product>
<Copyright>Copyright © hufang360 2022</Copyright>
<!-- extras for nuget -->
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageLicenseExpression></PackageLicenseExpression>
<Authors>hufang360</Authors>
<Description></Description>
<PackageId>BossOrNurse</PackageId>
<AssemblyName>BossOrNurse</AssemblyName> <!-- package name for nuget -->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TShock" Version="5.1.3" />
</ItemGroup>
</Project>