Updating codegen to support view compilation (#7713)

This commit is contained in:
Lombiq 2017-11-06 19:19:44 +01:00 committed by Benedek Farkas
parent 584ba97b27
commit 54b4ca174a
2 changed files with 5 additions and 5 deletions

View File

@ -98,7 +98,7 @@
-->
</Target>
<Target Name="AfterBuildCompiler" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
</Target>
<ProjectExtensions>
<VisualStudio>

View File

@ -330,22 +330,22 @@ namespace Orchard.CodeGeneration.Commands {
@"<ProjectReference Include=""..\..\..\Orchard\Orchard.Framework.csproj"">
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
<Name>Orchard.Framework</Name>
<Private>false</Private>
<Private>$(MvcBuildViews)</Private>
</ProjectReference>
<ProjectReference Include=""..\..\Core\Orchard.Core.csproj"">
<Project>{9916839C-39FC-4CEB-A5AF-89CA7E87119F}</Project>
<Name>Orchard.Core</Name>
<Private>false</Private>
<Private>$(MvcBuildViews)</Private>
</ProjectReference>" :
@"<Reference Include=""Orchard.Core"">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\bin\Orchard.Core.dll</HintPath>
<Private>false</Private>
<Private>$(MvcBuildViews)</Private>
</Reference>
<Reference Include=""Orchard.Framework"">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\bin\Orchard.Framework.dll</HintPath>
<Private>false</Private>
<Private>$(MvcBuildViews)</Private>
</Reference>";
}