-
Notifications
You must be signed in to change notification settings - Fork 0
/
UtilityServices.csproj
36 lines (34 loc) · 1.4 KB
/
UtilityServices.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<NoWarn>$(NoWarn);NU1701;NU1702;CS0436;NU1605;MSB3270</NoWarn>
<LangVersion>latest</LangVersion>
<PackageLicenseExpression>EUPL-1.2</PackageLicenseExpression>
<PackageTags>openmod openmod-plugin unturned</PackageTags>
<RootNamespace>Alpalis.UtilityServices</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateNugetPackage>true</GenerateNugetPackage>
<Product>Alpalis UtilityServices</Product>
<Authors>Pandetthe</Authors>
<Version>1.1.5</Version>
<InformationalVersion>1.1.5</InformationalVersion>
<PackageVersion>1.1.5</PackageVersion>
<AssemblyName>Alpalis.UtilityServices</AssemblyName>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Alpalis/UtilityServices</RepositoryUrl>
<PackageProjectUrl>https://alpalis.github.io/docs/plugins/utilityservices/about</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="config.yaml" />
<EmbeddedResource Include="translations.yaml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenMod.Unturned" Version="3.8.10" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>