2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-08 17:50:58 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-04-08 17:50:58 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Plugins.Stats</PackageId>
|
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
|
|
|
|
<Product>Client Statistics</Product>
|
|
|
|
|
<Description>Client Statistics Plugin for IW4MAdmin</Description>
|
|
|
|
|
<Copyright>2018</Copyright>
|
2018-04-19 01:48:14 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2022-01-08 17:56:40 -05:00
|
|
|
|
<LangVersion>Latest</LangVersion>
|
2020-11-11 18:31:26 -05:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</PropertyGroup>
|
2021-03-22 12:09:25 -04:00
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
<ItemGroup>
|
2022-03-23 13:09:40 -04:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2022.3.23.1" PrivateAssets="All" />
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</Target>
|
2020-11-11 18:31:26 -05:00
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
</Project>
|