-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminControlPlugin.csproj
More file actions
33 lines (27 loc) · 1.19 KB
/
AdminControlPlugin.csproj
File metadata and controls
33 lines (27 loc) · 1.19 KB
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
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyName>AdminControlPlugin</AssemblyName>
<OutDir>$(MSBuildThisFileDirectory)..\..\addons\counterstrikesharp\plugins\AdminControlPlugin\</OutDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.340">
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
<PackageReference Include="CS2MenuManager" Version="1.0.40" />
<PackageReference Include="MySqlConnector" Version="2.4.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.9" />
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="System.Text.Json" Version="9.0.9" />
</ItemGroup>
<ItemGroup>
<Content Include="lang\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>