27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\Build.props" />
|
|
<PropertyGroup>
|
|
<PackageId>SPTarkov.Reflection</PackageId>
|
|
<Authors>Single Player Tarkov</Authors>
|
|
<Description>Reflection library for the Single Player Tarkov server.</Description>
|
|
<Copyright>Copyright (c) Single Player Tarkov 2026</Copyright>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageProjectUrl>https://sp-tarkov.com</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/sp-tarkov/server-csharp</RepositoryUrl>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<OutputType>Library</OutputType>
|
|
<IsPackable>true</IsPackable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\LICENSE" Pack="true" Visible="false" PackagePath="" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="HarmonyX" Version="2.15.0" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SPTarkov.DI\SPTarkov.DI.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|