-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKill.csproj
19 lines (17 loc) · 906 Bytes
/
Kill.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ClassName Condition=" '$(ClassName)' == '' ">Kill</ClassName>
<DestinationFolder>Z:\game\csgo\addons\counterstrikesharp\plugins\</DestinationFolder>
<DestinationFolderLocal>D:\SteamCMD\cs2-ds\game\csgo\addons\counterstrikesharp\plugins</DestinationFolderLocal>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.60"/>
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
<!-- <Copy SourceFiles="./bin/Debug/net7.0/$(ClassName).dll" DestinationFolder="$(DestinationFolder)/$(ClassName)/" /> -->
<Copy SourceFiles="./bin/Debug/net7.0/$(ClassName).dll" DestinationFolder="$(DestinationFolderLocal)/$(ClassName)/" />
</Target>
</Project>