Files
SPT-Server-Build/Libraries/Core/Core.csproj
T
2025-03-04 11:22:31 +00:00

24 lines
718 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<PackageId>SPT.Server.Core</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>
<ProjectReference Include="..\SptDependencyInjection\SptDependencyInjection.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="9.0.1" />
<PackageReference Include="FastCloner" Version="3.3.2" />
</ItemGroup>
</Project>