2019-12-02 16:52:36 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2019-02-16 18:18:50 -05:00
|
|
|
|
<PropertyGroup>
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-03-17 18:37:50 -04:00
|
|
|
|
<RazorCompileOnBuild Condition="'$(CONFIG)'!='Debug'">true</RazorCompileOnBuild>
|
|
|
|
|
<RazorCompiledOnPublish Condition="'$(CONFIG)'!='Debug'">true</RazorCompiledOnPublish>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<PreserveCompilationContext Condition="'$(CONFIG)'!='Debug'">false</PreserveCompilationContext>
|
|
|
|
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
2019-09-30 19:35:36 -04:00
|
|
|
|
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
2019-02-18 20:30:38 -05:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<StartupObject />
|
|
|
|
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
2019-02-16 18:18:50 -05:00
|
|
|
|
</PropertyGroup>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<ItemGroup>
|
2020-04-04 13:40:23 -04:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.8" PrivateAssets="All" />
|
2019-12-02 16:52:36 -05:00
|
|
|
|
</ItemGroup>
|
2019-02-16 18:18:50 -05:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-06-09 10:50:58 -04:00
|
|
|
|
<ProjectReference Include="..\..\Stats\Stats.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
2019-02-16 18:18:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-03-17 18:37:50 -04:00
|
|
|
|
<Content Update="Views\_ViewImports.cshtml">
|
|
|
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
2019-02-16 18:18:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<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" />
|
2019-02-16 18:18:50 -05:00
|
|
|
|
</Target>
|
|
|
|
|
</Project>
|