2019-12-02 16:52:36 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2019-06-30 14:37:59 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-07-08 21:21:08 -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-06-30 14:37:59 -04:00
|
|
|
|
<Version>0.1.0.0</Version>
|
2019-07-08 21:21:08 -04:00
|
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2019-07-13 21:45:25 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2019-12-02 16:52:36 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<StartupObject />
|
2019-06-30 14:37:59 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-01-31 21:15:07 -05:00
|
|
|
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.6" PrivateAssets="All" />
|
2019-06-30 14:37:59 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-07-19 11:33:00 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="Views\_ViewImports.cshtml">
|
|
|
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-06-30 14:37:59 -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" />
|
2019-06-30 14:37:59 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|