2019-02-18 19:30:38 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-12-24 15:23:43 -06:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-12-02 15:52:36 -06:00
|
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
2022-01-08 16:56:40 -06:00
|
|
|
|
<LangVersion>Latest</LangVersion>
|
2019-07-08 20:21:08 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-12-02 15:52:36 -06:00
|
|
|
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
2022-01-22 12:49:12 -06:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2022.1.20.1" PrivateAssets="All" />
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2019-12-02 15:52:36 -06:00
|
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
2019-02-18 19:30:38 -06:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|