-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameCMSPlugin.csproj
30 lines (27 loc) · 1.1 KB
/
GameCMSPlugin.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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<GenerateDependencyFile>false</GenerateDependencyFile>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.276">
<PrivateAssets>none</PrivateAssets>
<ExcludeAssets>runtime</ExcludeAssets>
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Dapper" Version="2.1.44" />
<PackageReference Include="MySqlConnector" Version="2.3.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="VipCoreApi">
<HintPath>C:\Users\ovcha\Desktop\gamecms-cs2\shared-apis\VipCoreApi.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</Project>