2019-02-16 18:18:50 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2019-03-17 18:37:50 -04:00
|
|
|
|
<RazorCompileOnBuild Condition="'$(CONFIG)'!='Debug'">true</RazorCompileOnBuild>
|
|
|
|
|
<RazorCompiledOnPublish Condition="'$(CONFIG)'!='Debug'">true</RazorCompiledOnPublish>
|
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-02-16 18:18:50 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<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="PreBuild" BeforeTargets="PreBuildEvent">
|
|
|
|
|
<Exec Command="xcopy /E /K /Y /C /I "$(ProjectDir)wwwroot\images" "$(SolutionDir)WebfrontCore\wwwroot\images"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
<Exec Command="copy "$(TargetDir)$(ProjectName).Views$(TargetExt)" "$(SolutionDir)BUILD\Plugins"" />
|
|
|
|
|
</Target>
|
|
|
|
|
</Project>
|