34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
<LangVersion>Latest</LangVersion>
|
|
<GenerateDocumentationFile>False</GenerateDocumentationFile>
|
|
<SignAssembly>False</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="GscApiController.cs" />
|
|
<Compile Remove="TebexApiClient.cs" />
|
|
<Compile Remove="unusedClanTag.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2024.6.29.807" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
|
</Target>
|
|
|
|
</Project>
|