Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Aug 20, 2024
1 parent ddb604f commit 5591f02
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin-sample.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
node-version: 20

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Configure app render mode
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bit.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: 20

- name: Install wasm and maui
run: cd src && dotnet workload install maui-android wasm-tools wasm-experimental
run: cd src && dotnet workload install maui-android wasm-tools

- name: Run BeforeBuildTasks
continue-on-error: true # Error MSB4057, not all csproj files have BeforeBuildTasks target.
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
node-version: 20

- name: Install wasm and maui
run: cd src && dotnet workload install maui-android wasm-tools wasm-experimental
run: cd src && dotnet workload install maui-android wasm-tools

- name: Install Android Sdk platform tools
run: ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT "platform-tools"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bit.full.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cd src/Templates/Boilerplate && dotnet build -c Release
dotnet pack -c Release -o . -p:ReleaseVersion=0.0.0 -p:PackageVersion=0.0.0
dotnet new install Bit.Boilerplate.0.0.0.nupkg && cd ../../../
dotnet workload install maui-tizen maui-android wasm-tools wasm-experimental
dotnet workload install maui-tizen maui-android wasm-tools
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT "platform-tools"
- name: Install sql server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/blazorui.demo.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
node-version: 20

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Enable pre rendering
run: sed -i 's/public static readonly bool PrerenderEnabled = false;/public static readonly bool PrerenderEnabled = true;/g' src/BlazorUI/Demo/Client/Bit.BlazorUI.Demo.Client.Core/Services/AppRenderMode.cs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platform.website.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
global-json-file: src/global.json

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Generate CSS/JS files
run: dotnet build src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj -t:BeforeBuildTasks --no-restore -c Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sales.website.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
global-json-file: src/global.json

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Generate CSS/JS files
run: dotnet build src/Websites/Sales/src/Bit.Websites.Sales.Client/Bit.Websites.Sales.Client.csproj -t:BeforeBuildTasks --no-restore -c Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo-sample.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
ApplicationInsights.ConnectionString: ${{ secrets.APPLICATION_INSIGHTS_CONNECTION_STRING }}

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Configure app render mode
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
inputs:
targetType: 'inline'
script: |
'cd src && dotnet workload install wasm-tools wasm-experimental'
'cd src && dotnet workload install wasm-tools'
- task: FileTransform@2
displayName: Update appsettings.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
ServerAddress: ${{ env.SERVER_ADDRESS }}

- name: Install wasm
run: cd src && dotnet workload install wasm-tools wasm-experimental
run: cd src && dotnet workload install wasm-tools

- name: Generate CSS/JS files
run: dotnet build src/Client/Boilerplate.Client.Core/Boilerplate.Client.Core.csproj -t:BeforeBuildTasks --no-restore -c Release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private async Task CopyCommandsToClipboard()
command:"winget install OpenJS.NodeJS --accept-source-agreements --accept-package-agreements;"),

(text:@"echo 'Install WebAssembly workloads https://learn.microsoft.com/en-us/aspnet/core/blazor/webassembly-build-tools-and-aot#net-webassembly-build-tools';",
command:"dotnet nuget add source \"https://api.nuget.org/v3/index.json\" --name \"nuget.org\"; dotnet workload install wasm-tools wasm-experimental;"),
command:"dotnet nuget add source \"https://api.nuget.org/v3/index.json\" --name \"nuget.org\"; dotnet workload install wasm-tools;"),

(text:@"echo 'Install the Bit.Boilerplate project template https://www.nuget.org/packages/Boilerplate.Templates';",
command:"dotnet new install Bit.Boilerplate::8.11.0-pre-02;"),
Expand Down

0 comments on commit 5591f02

Please sign in to comment.