-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSharpPatcher.csproj
More file actions
28 lines (22 loc) · 941 Bytes
/
CSSharpPatcher.csproj
File metadata and controls
28 lines (22 loc) · 941 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<BaseOutputPath>build\CSSharpPatcher\addons\counterstrikesharp\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)plugins\CSSharpPatcher\</OutputPath>
<ConfigPath>$(BaseOutputPath)configs\plugins\CSSharpPatcher\</ConfigPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.334" />
</ItemGroup>
<ItemGroup>
<ConfigFiles Include="config/*.*" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="Build">
<Copy SourceFiles="@(ConfigFiles)" DestinationFolder="$(ConfigPath)" />
</Target>
</Project>