mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-28 15:40:56 +01:00
- Move `Tgstation.Server.Host.Common.Constants` to `Tgstation.Server.Common`. - Use `Tgstation.Server.Common.Constants.CanonicalPackageName` in strings everywhere where it makes sense. - Add `SrcCommon.props` to dedupe more .csproj properties. - Rename `TgsNugetNetVersion` to `TgsNugetNetFramework` and move to `Version.props`. - Change Nugets packages' author to just `Jordan Dominion`. - Fix name of wix extensions namespace. - Update Octokit to `7.0.0`. - Add missing documentation comment for `PackageReference`.
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="SrcCommon.props" />
|
|
|
|
<PropertyGroup>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Authors>Jordan Dominion</Authors>
|
|
<Company>/tg/station 13</Company>
|
|
<PackageProjectUrl>https://tgstation.github.io/tgstation-server</PackageProjectUrl>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageIcon>tgs.png</PackageIcon>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/tgstation/tgstation-server</RepositoryUrl>
|
|
<Copyright>2018-2023</Copyright>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="" />
|
|
<None Include="../../LICENSE" Pack="true" PackagePath="" />
|
|
<None Include="../../build/tgs.png" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
</Project>
|