2022-08-26 13:09:33 -04: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>
|
2023-04-05 11:15:36 -04:00
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2023.4.5.1" PrivateAssets="All" />
|
2022-08-26 13:09:33 -04:00
|
|
|
</ItemGroup>
|
2022-10-05 16:29:31 -04:00
|
|
|
|
2022-08-26 13:09:33 -04:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2022-09-08 16:03:38 -04:00
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
2022-08-26 13:09:33 -04:00
|
|
|
</Target>
|
|
|
|
</Project>
|