-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnturnedExamplePlugin.csproj
More file actions
23 lines (23 loc) · 1.1 KB
/
UnturnedExamplePlugin.csproj
File metadata and controls
23 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>rocketmod unturned-plugin unturned</PackageTags>
<RootNamespace>PLUGIN-NAMESPACE-XML</RootNamespace>
<GenerateNugetPackage>true</GenerateNugetPackage>
<Product>PLUGIN-NAME-XML</Product>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<NoWarn>$(NoWarn);NU1701;NU1702;CS0436</NoWarn>
<Version>0.1.0</Version>
<InformationalVersion>0.1.0</InformationalVersion>
<PackageVersion>0.1.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="Plugin.cs" />
<Compile Include="PluginConfiguration.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>