19 lines
532 B
XML
19 lines
532 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>SPT.Common</PackageId>
|
|
<Authors>SPT Team</Authors>
|
|
<RepositoryUrl>https://github.com/sp-tarkov/server-csharp</RepositoryUrl>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Library</OutputType>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SemanticVersioning" Version="3.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|