-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCS2-AdminsList.csproj
More file actions
29 lines (24 loc) · 919 Bytes
/
CS2-AdminsList.csproj
File metadata and controls
29 lines (24 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<OutputPath>bin\Release\addons\counterstrikesharp\plugins\CS2-AdminsList\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Configuration>Release</Configuration>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.287" />
</ItemGroup>
<ItemGroup>
<Reference Include="KitsuneMenu">
<HintPath>..\..\KitsuneMenu.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>