5dfaa4ebd6
added instance and client count to api page removed vestigial ConfigGenerator
32 lines
1001 B
XML
32 lines
1001 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<PackageId>RaidMax.IW4MAdmin.Plugins.Login</PackageId>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Product>Login Plugin for IW4MAdmin</Product>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.0.7" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
</Target>
|
|
|
|
</Project>
|