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