-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNeedSystem.csproj
More file actions
21 lines (17 loc) · 724 Bytes
/
NeedSystem.csproj
File metadata and controls
21 lines (17 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.348" />
<PackageReference Include="MysqlConnector" Version="2.4.0" />
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
<None Update="MySqlConnector.dll" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>