2018-04-08 16:50:58 -05: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 00:48:14 -05:00
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-08 16:50:58 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-04-23 16:03:50 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.0.7" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-04-08 16:50:58 -05:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2018-04-09 14:17:10 -05:00
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
2018-04-08 16:50:58 -05:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|