2019-07-13 21:45:25 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
2019-06-30 14:37:59 -04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-09-30 19:35:36 -04:00
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
2019-07-08 21:21:08 -04:00
|
|
|
|
<RazorCompileOnBuild Condition="'$(CONFIG)'!='Debug'">true</RazorCompileOnBuild>
|
|
|
|
|
<RazorCompiledOnPublish Condition="'$(CONFIG)'!='Debug'">true</RazorCompiledOnPublish>
|
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-06-30 14:37:59 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
2019-07-13 21:45:25 -04:00
|
|
|
|
<ProjectReference Include="..\..\WebfrontCore\WebfrontCore.csproj" />
|
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-07-17 14:00:30 -04:00
|
|
|
|
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"
copy "$(TargetDir)$(TargetName).Views$(TargetExt)" $(SolutionDir)BUILD\Plugins"" />
|
2019-06-30 14:37:59 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2019-07-17 14:26:48 -04:00
|
|
|
|
<Exec Command="xcopy /S /E /H /Y /I "$(ProjectDir)Views\Radar" "$(SolutionDir)WebfrontCore\Views\Plugins\Radar"
xcopy /S /E /H /Y /I "$(ProjectDir)wwwroot\images" "$(SolutionDir)WebfrontCore\wwwroot\images\radar"" />
|
2019-06-30 14:37:59 -04:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|