| 12345678910111213141516171819202122232425262728 |
- commit fa386c458b74936f8ee30f7f53d0f44afadcdc2a
- Author: Steve Sanderson <[email protected]>
- Date: Tue Jan 2 09:34:11 2018 +0000
- Remove bogus BuildServerSideRenderer property from React-Redux csproj. #1457
- diff --git a/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/ReactRedux-CSharp.csproj.in b/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/ReactRedux-CSharp.csproj.in
- index a01c2e73e13..ed69d98c5e1 100644
- --- a/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/ReactRedux-CSharp.csproj.in
- +++ b/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/ReactRedux-CSharp.csproj.in
- @@ -8,9 +8,6 @@
- <IsPackable>false</IsPackable>
- <SpaRoot>ClientApp\</SpaRoot>
- <DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
- -
- - <!-- Set this to true if you enable server-side prerendering -->
- - <BuildServerSideRenderer>false</BuildServerSideRenderer>
- </PropertyGroup>
-
- <ItemGroup Condition="'$(TargetFrameworkOverride)' == ''">
- @@ -52,7 +49,6 @@
- <!-- As part of publishing, ensure the JS resources are freshly built in production mode -->
- <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
- <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build" />
- - <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build:ssr" Condition=" '$(BuildServerSideRenderer)' == 'true' " />
-
- <!-- Include the newly-built files in the publish output -->
- <ItemGroup>
|