-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCallAdminSystem.csproj
More file actions
27 lines (23 loc) · 1.05 KB
/
Copy pathCallAdminSystem.csproj
File metadata and controls
27 lines (23 loc) · 1.05 KB
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
<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\CallAdminSystem\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.369" />
<PackageReference Include="MysqlConnector" Version="2.5.0" />
<Reference Include="MenuManagerApi"><HintPath>MenuManagerApi.dll</HintPath></Reference>
</ItemGroup>
<Target Name="CopyMySqlConnector" AfterTargets="Build">
<Copy SourceFiles="@(RuntimeCopyLocalItems->WithMetadataValue('NuGetPackageId', 'MySqlConnector'))" DestinationFolder="$(OutputPath)" />
</Target>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>