22 lines
946 B
XML
22 lines
946 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>AdminStealth</AssemblyName>
|
|
<RootNamespace>AdminStealth</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- Compile-time only: the server already has CounterStrikeSharp.API.dll -->
|
|
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.375">
|
|
<PrivateAssets>none</PrivateAssets>
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<!-- Compile-time only: CS2-SimpleAdmin installs it in shared/, copied from the server's copy -->
|
|
<Reference Include="CS2-SimpleAdminApi">
|
|
<HintPath>lib/CS2-SimpleAdminApi.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|