2022-08-26 18:09:33 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<Authors>MrAmos123</Authors>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-10-13 13:36:23 -05:00
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2022.10.13.1" PrivateAssets="All" />
|
2022-08-26 18:09:33 +01:00
|
|
|
</ItemGroup>
|
2022-10-05 21:29:31 +01:00
|
|
|
|
2022-08-26 18:09:33 +01:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2022-09-08 15:03:38 -05:00
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
2022-08-26 18:09:33 +01:00
|
|
|
</Target>
|
|
|
|
</Project>
|