Files
CS2-SimpleAdmin/CS2-SimpleAdmin.csproj
Dawid Bepierszcz 3793385ce4 1.3.0b
- Minor changes
- Fixed `css_players`
- Probably fixed problems with taking actions with bots
2024-02-04 21:04:22 +01:00

27 lines
833 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>CS2_SimpleAdmin</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.159" />
<PackageReference Include="Dapper" Version="*" />
<PackageReference Include="MySqlConnector" Version="2.3.5" />
<PackageReference Include="Newtonsoft.Json" Version="*" />
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<None Update="database_setup.sql" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>