2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-14 00:51:38 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.Plugins.Login</PackageId>
|
|
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
|
<Company>Forever None</Company>
|
|
|
|
|
<Product>Login Plugin for IW4MAdmin</Product>
|
2018-04-19 01:48:14 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-14 00:51:38 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
|
<ItemGroup>
|
2019-02-12 21:34:29 -05:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
2018-04-23 17:03:50 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|