2018-04-08 17:50:58 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
|
|
<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>
|
2018-04-08 17:50:58 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.0.7" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2018-04-09 15:17:10 -04:00
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
2018-04-08 17:50:58 -04:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|