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-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<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>
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-04-14 00:51:38 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<DefineConstants>TRACE;DEBUG;</DefineConstants>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-04-14 00:51:38 -04:00
|
|
|
|
<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-14 00:51:38 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<ItemGroup>
|
2020-02-11 17:44:06 -05:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.7" PrivateAssets="All" />
|
2019-12-02 16:52:36 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-14 00:51:38 -04:00
|
|
|
|
</Project>
|