Skip to content

Commit c50a4d7

Browse files
committed
fix(fssdf): dfg
1 parent 92a9d05 commit c50a4d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 \

TestHostPrerenderWASM/TestHostPrerenderWASM.Client/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77

88

9-
109
Console.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");

0 commit comments

Comments
 (0)