-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGG2.csproj
26 lines (24 loc) · 1.01 KB
/
GG2.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefaultItemExcludes>GunGameAPI\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.245" />
<PackageReference Include="MaxMind.GeoIP2" Version="*" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="*" />
<PackageReference Include="MySqlConnector" Version="*" />
<PackageReference Include="Dapper" Version="*" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="*" />
<PackageReference Include="Newtonsoft.Json" Version="*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="GunGameAPI\GunGameAPI.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>