2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-28 01:22:18 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-04-28 01:22:18 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2018-11-05 22:01:29 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-01-21 19:08:18 -05:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.4" PrivateAssets="All" />
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</ItemGroup>
|
2020-01-21 19:08:18 -05:00
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
|
|
|
|
</Target>
|
2019-09-30 19:35:36 -04:00
|
|
|
|
|
2018-04-28 01:22:18 -04:00
|
|
|
|
</Project>
|