File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
TestHostPrerenderWASM/TestHostPrerenderWASM.Client Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -418,12 +418,12 @@ jobs:
418418
419419
420420
421-
421+ # qqqq make release again made debug
422422 - name : Publish client using client release .csproj logic
423423 env :
424424 INDEPENDENT_CLIENT_GH_PAGES : true
425425 run : |
426- dotnet publish ./TestHostPrerenderWASM/TestHostPrerenderWASM.Client/TestHostPrerenderWASM.Client.csproj --configuration Release \
426+ dotnet publish ./TestHostPrerenderWASM/TestHostPrerenderWASM.Client/TestHostPrerenderWASM.Client.csproj --configuration Debug \
427427 /p:INDEPENDENT_CLIENT_GH_PAGES=true \
428428 /p:BCLVersion=$BCL_VERSION \
429429 /p:NupkgOutputPath=$NUPKG_OUTPUT_PATH \
Original file line number Diff line number Diff line change 66var builder = WebAssemblyHostBuilder . CreateDefault ( args ) ;
77
88
9-
109Console . WriteLine ( $ "INDEPENDENT_CLIENT_GH_PAGES value: '{ Environment . GetEnvironmentVariable ( "INDEPENDENT_CLIENT_GH_PAGES" ) } '") ;
10+ Console . WriteLine ( $ "INDEPENDENT_CLIENT_GH_PAGES value: '{ Environment . GetEnvironmentVariable ( "INDEPENDENT_CLIENT_GH_PAGES" , EnvironmentVariableTarget . Process ) } '") ;
1111
12- if ( Environment . GetEnvironmentVariable ( "INDEPENDENT_CLIENT_GH_PAGES" ) != null )
12+ if ( Environment . GetEnvironmentVariable ( "INDEPENDENT_CLIENT_GH_PAGES" , EnvironmentVariableTarget . Process ) != null )
1313{
1414 Console . WriteLine ( "Condition is TRUE - Adding root components" ) ;
1515 builder . RootComponents . Add < App > ( "#app" ) ;
You can’t perform that action at this time.
0 commit comments