mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Updating codegen to support view compilation (#7713)
This commit is contained in:
parent
584ba97b27
commit
54b4ca174a
@ -98,7 +98,7 @@
|
|||||||
-->
|
-->
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="AfterBuildCompiler" Condition="'$(MvcBuildViews)'=='true'">
|
<Target Name="AfterBuildCompiler" Condition="'$(MvcBuildViews)'=='true'">
|
||||||
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
|
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<VisualStudio>
|
<VisualStudio>
|
||||||
|
@ -330,22 +330,22 @@ namespace Orchard.CodeGeneration.Commands {
|
|||||||
@"<ProjectReference Include=""..\..\..\Orchard\Orchard.Framework.csproj"">
|
@"<ProjectReference Include=""..\..\..\Orchard\Orchard.Framework.csproj"">
|
||||||
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
|
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
|
||||||
<Name>Orchard.Framework</Name>
|
<Name>Orchard.Framework</Name>
|
||||||
<Private>false</Private>
|
<Private>$(MvcBuildViews)</Private>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include=""..\..\Core\Orchard.Core.csproj"">
|
<ProjectReference Include=""..\..\Core\Orchard.Core.csproj"">
|
||||||
<Project>{9916839C-39FC-4CEB-A5AF-89CA7E87119F}</Project>
|
<Project>{9916839C-39FC-4CEB-A5AF-89CA7E87119F}</Project>
|
||||||
<Name>Orchard.Core</Name>
|
<Name>Orchard.Core</Name>
|
||||||
<Private>false</Private>
|
<Private>$(MvcBuildViews)</Private>
|
||||||
</ProjectReference>" :
|
</ProjectReference>" :
|
||||||
@"<Reference Include=""Orchard.Core"">
|
@"<Reference Include=""Orchard.Core"">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\bin\Orchard.Core.dll</HintPath>
|
<HintPath>..\..\bin\Orchard.Core.dll</HintPath>
|
||||||
<Private>false</Private>
|
<Private>$(MvcBuildViews)</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include=""Orchard.Framework"">
|
<Reference Include=""Orchard.Framework"">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\bin\Orchard.Framework.dll</HintPath>
|
<HintPath>..\..\bin\Orchard.Framework.dll</HintPath>
|
||||||
<Private>false</Private>
|
<Private>$(MvcBuildViews)</Private>
|
||||||
</Reference>";
|
</Reference>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user