Skip to content

Commit 839c810

Browse files
authored
feat: update to bit 9.0.0 #59 (#60)
1 parent d38edba commit 839c810

File tree

487 files changed

+10775
-8213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

487 files changed

+10775
-8213
lines changed

.devcontainer/devcontainer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "Bit.TemplatePlayground",
3-
"image": "mcr.microsoft.com/dotnet/sdk:8.0",
3+
"image": "mcr.microsoft.com/dotnet/sdk:9.0",
44
"hostRequirements": {
55
"cpus": 4
66
},
7-
"onCreateCommand": "dotnet dev-certs https --trust && dotnet workload install wasm-tools",
7+
"onCreateCommand": "dotnet workload install wasm-tools",
88
"waitFor": "onCreateCommand",
99
"customizations": {
1010
"codespaces": {
@@ -24,9 +24,9 @@
2424
}
2525
},
2626
"forwardPorts": [
27-
4138,
27+
4052,
2828
5000,
29-
5276
29+
5054
3030
],
3131
"features": {
3232
"ghcr.io/devcontainers/features/node": {},

.github/workflows/cd.yml

+23-36
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
build_api_blazor:
2121
name: build api + blazor web
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323

2424
steps:
2525

@@ -33,15 +33,12 @@ jobs:
3333

3434
- uses: actions/setup-node@v4
3535
with:
36-
node-version: 20
36+
node-version: 22
3737

38-
# - name: Enable pre rendering
39-
# run: sed -i 's/public static readonly bool PrerenderEnabled = false;/public static readonly bool PrerenderEnabled = true;/g' src/Client/Bit.TemplatePlayground.Client.Core/Services/AppRenderMode.cs
40-
4138
- name: Update core appsettings.json
4239
uses: devops-actions/[email protected]
4340
with:
44-
files: 'src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared/appsettings.json'
41+
files: 'src/Shared/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Web/appsettings.json'
4542
env:
4643
ServerAddress: ${{ env.SERVER_ADDRESS }}
4744

@@ -69,11 +66,12 @@ jobs:
6966
with:
7067
name: server-bundle
7168
path: ${{env.DOTNET_ROOT}}/server
69+
include-hidden-files: true # Required for wwwroot/.well-known folder
7270

7371
deploy_api_blazor:
7472
name: deploy api + blazor
7573
needs: build_api_blazor
76-
runs-on: ubuntu-22.04
74+
runs-on: ubuntu-24.04
7775
environment:
7876
name: 'production'
7977
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
@@ -140,36 +138,25 @@ jobs:
140138

141139
- uses: actions/setup-node@v4
142140
with:
143-
node-version: 20
141+
node-version: 22
144142

145143
- name: Update core appsettings.json
146144
uses: devops-actions/[email protected]
147145
with:
148-
files: 'src\Client\Bit.TemplatePlayground.Client.Core\appsettings.json, src\Shared\appsettings.json'
146+
files: 'src\Shared\appsettings.json, src\Client\Bit.TemplatePlayground.Client.Core\appsettings.json, src\Client\Bit.TemplatePlayground.Client.Windows\appsettings.json'
149147
env:
150148
ServerAddress: ${{ env.SERVER_ADDRESS }}
151-
WindowsUpdateSettings.FilesUrl: 'https://use-your-server-url-here.com/windows' # Deploy the published Windows application files to your desired hosting location and use the host url here.
149+
WindowsUpdate.FilesUrl: 'https://use-your-server-url-here.com/windows' # Deploy the published Windows application files to your desired hosting location and use the host url here.
152150

153151
- name: Generate CSS/JS files
154152
run: dotnet build src\Client\Bit.TemplatePlayground.Client.Core\Bit.TemplatePlayground.Client.Core.csproj -t:BeforeBuildTasks --no-restore -c Release
155153

156154
- name: Publish
157155
run: |
158-
cd src\Client\Bit.TemplatePlayground.Client.Windows\
159-
dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-arm64 -r win-arm64
160-
ren .\bin\publish-arm64\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-arm64.exe
161-
dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-x86 -r win-x86
162-
ren .\bin\publish-x86\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-x86.exe
163-
dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-x64 -r win-x64
164-
ren .\bin\publish-x64\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-x64.exe
165-
dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish
166-
del .\bin\publish\Bit.TemplatePlayground.Client.Windows.exe
167-
echo D | xcopy .\bin\publish-arm64 .\publish-result /s /e /h
168-
echo A | xcopy .\bin\publish-x86 .\publish-result /s /e /h
169-
echo A | xcopy .\bin\publish-x64 .\publish-result /s /e /h
170-
echo A | xcopy .\bin\publish .\publish-result /s /e /h
156+
cd src\Client\Bit.TemplatePlayground.Client.Windows\
157+
dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\publish-result -r win-x86 -p:Version="${{ vars.APPLICATION_DISPLAY_VERSION}}"
171158
dotnet tool restore
172-
dotnet vpk pack -u Bit.TemplatePlayground.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.TemplatePlayground.Client.Windows-x86.exe -r win-x86 --framework net8.0.8-x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit.TemplatePlayground'
159+
dotnet vpk pack -u Bit.TemplatePlayground.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.TemplatePlayground.Client.Windows.exe -r win-x86 --framework net9.0-x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit.TemplatePlayground'
173160
174161
- name: Upload artifact
175162
uses: actions/upload-artifact@v4
@@ -179,7 +166,7 @@ jobs:
179166

180167
build_blazor_hybrid_android:
181168
name: build blazor hybrid (android)
182-
runs-on: ubuntu-22.04
169+
runs-on: ubuntu-24.04
183170

184171
steps:
185172

@@ -193,7 +180,7 @@ jobs:
193180

194181
- uses: actions/setup-node@v4
195182
with:
196-
node-version: 20
183+
node-version: 22
197184

198185
- name: Extract Android signing key from env
199186
uses: timheuer/[email protected]
@@ -205,7 +192,7 @@ jobs:
205192
- name: Update core appsettings.json
206193
uses: devops-actions/[email protected]
207194
with:
208-
files: 'src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared/appsettings.json'
195+
files: 'src/Shared/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Maui/appsettings.json'
209196
env:
210197
ServerAddress: ${{ env.SERVER_ADDRESS }}
211198

@@ -221,20 +208,20 @@ jobs:
221208
dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -t:BeforeBuildTasks --no-restore -c Release
222209
223210
- name: Build aab
224-
run: dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidPackageFormat=aab -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net8.0-android
211+
run: dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidPackageFormat=aab -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net9.0-android
225212

226213
- name: Build apk
227-
run: dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net8.0-android
214+
run: dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net9.0-android
228215

229216
- name: Upload artifact
230217
uses: actions/upload-artifact@v4
231218
with:
232219
name: android-bundle
233-
path: src/Client/Bit.TemplatePlayground.Client.Maui/bin/Release/net8.0-android/*-Signed.*
220+
path: src/Client/Bit.TemplatePlayground.Client.Maui/bin/Release/net9.0-android/*-Signed.*
234221

235222
build_blazor_hybrid_iOS:
236223
name: build blazor hybrid (iOS-macOS)
237-
runs-on: macos-14
224+
runs-on: macOS-15
238225

239226
steps:
240227

@@ -248,16 +235,16 @@ jobs:
248235

249236
- uses: maxim-lobanov/[email protected]
250237
with:
251-
xcode-version: '15.4'
238+
xcode-version: '16.0'
252239

253240
- uses: actions/setup-node@v4
254241
with:
255-
node-version: 20
242+
node-version: 22
256243

257244
- name: Update core appsettings.json
258245
uses: devops-actions/[email protected]
259246
with:
260-
files: 'src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared/appsettings.json'
247+
files: 'src/Shared/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Maui/appsettings.json'
261248
env:
262249
ServerAddress: ${{ env.SERVER_ADDRESS }}
263250

@@ -284,10 +271,10 @@ jobs:
284271
dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -t:BeforeBuildTasks --no-restore -c Release
285272
286273
- name: Build ipa
287-
run: dotnet publish src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -p:RuntimeIdentifier=ios-arm64 -c Release -p:ArchiveOnBuild=true -p:CodesignKey="iPhone Distribution" -p:CodesignProvision="${{ env.IOS_CODE_SIGN_PROVISION }}" -p:ApplicationDisplayVersion="${{ vars.APPLICATION_DISPLAY_VERSION }}" -p:ApplicationVersion="${{ vars.APPLICATION_VERSION }}" -f net8.0-ios
274+
run: dotnet publish src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -p:RuntimeIdentifier=ios-arm64 -c Release -p:ArchiveOnBuild=true -p:CodesignKey="iPhone Distribution" -p:CodesignProvision="${{ env.IOS_CODE_SIGN_PROVISION }}" -p:ApplicationDisplayVersion="${{ vars.APPLICATION_DISPLAY_VERSION }}" -p:ApplicationVersion="${{ vars.APPLICATION_VERSION }}" -f net9.0-ios
288275

289276
- name: Upload artifact
290277
uses: actions/upload-artifact@v4
291278
with:
292279
name: iOS-bundle
293-
path: src/Client/Bit.TemplatePlayground.Client.Maui/bin/release/net8.0-ios/ios-arm64/publish/*.ipa
280+
path: src/Client/Bit.TemplatePlayground.Client.Maui/bin/release/net9.0-ios/ios-arm64/publish/*.ipa

.github/workflows/ci.yml

+18-6
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,36 @@ jobs:
1111

1212
build_blazor_server:
1313
name: build blazor
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
17-
17+
1818
- name: Checkout source code
1919
uses: actions/checkout@v4
20-
20+
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@v4
2323
with:
2424
global-json-file: global.json
2525

2626
- uses: actions/setup-node@v4
2727
with:
28-
node-version: 20
29-
28+
node-version: 22
29+
3030
- name: Build
3131
run: dotnet build Bit.TemplatePlayground.sln -c Release
3232

33+
- name: Install Playwright
34+
run: pwsh src/Tests/bin/Debug/net8.0/playwright.ps1 install --with-deps
35+
3336
- name: Test
34-
run: dotnet test src/Tests/Bit.TemplatePlayground.Tests.csproj
37+
id: test
38+
run: dotnet test src/Tests/Bit.TemplatePlayground.Tests.csproj --logger GitHubActions
39+
40+
- name: Upload Tests Artifact
41+
uses: actions/[email protected]
42+
if: ${{ failure() && steps.test.conclusion == 'failure' }}
43+
with:
44+
name: tests-artifact
45+
path: ./src/Tests/TestResults
46+
retention-days: 14

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,6 @@ custom.aprof
227227
/src/**/App_Data/*
228228

229229
/src/Client/Bit.TemplatePlayground.Client.Core/wwwroot/scripts/app*.js
230+
/src/Client/Bit.TemplatePlayground.Client.Maui/Platforms/Android/google-services.json
230231

231232
.env

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"liveSassCompile.settings.watchOnLaunch": true,
33
"dotnet.defaultSolution": "Bit.TemplatePlayground.Web.slnf",
4+
"dotnet.unitTests.runSettingsPath": "src/Tests/.runsettings",
45
"csharp.preview.improvedLaunchExperience": true,
56
"explorer.fileNesting.enabled": true,
67
"explorer.fileNesting.patterns": {

Bit.TemplatePlayground.Web.slnf

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"solution": {
33
"path": "Bit.TemplatePlayground.sln",
44
"projects": [
5-
"src\\Server\\Bit.TemplatePlayground.Server.Web\\Bit.TemplatePlayground.Server.Web.csproj",
6-
"src\\Server\\Bit.TemplatePlayground.Server.Api\\Bit.TemplatePlayground.Server.Api.csproj",
7-
"src\\Shared\\Bit.TemplatePlayground.Shared.csproj",
85
"src\\Client\\Bit.TemplatePlayground.Client.Core\\Bit.TemplatePlayground.Client.Core.csproj",
96
"src\\Client\\Bit.TemplatePlayground.Client.Web\\Bit.TemplatePlayground.Client.Web.csproj",
7+
"src\\Server\\Bit.TemplatePlayground.Server.Api\\Bit.TemplatePlayground.Server.Api.csproj",
8+
"src\\Server\\Bit.TemplatePlayground.Server.Web\\Bit.TemplatePlayground.Server.Web.csproj",
9+
"src\\Shared\\Bit.TemplatePlayground.Shared.csproj",
1010
"src\\Tests\\Bit.TemplatePlayground.Tests.csproj"
1111
]
1212
}

Bit.TemplatePlayground.sln

+2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".SolutionItems", ".Solution
99
.editorconfig = .editorconfig
1010
.gitignore = .gitignore
1111
.vsconfig = .vsconfig
12+
settings.VisualStudio.json = settings.VisualStudio.json
1213
Clean.bat = Clean.bat
1314
src\Directory.Build.props = src\Directory.Build.props
15+
src\Directory.Packages.props = src\Directory.Packages.props
1416
global.json = global.json
1517
README.md = README.md
1618
EndProjectSection

LICENSE

-21
This file was deleted.

README.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
## Welcome!
1+
# Bit Templates Playground
22

3-
Thank you for creating a new project with bit platform! We appreciate your trust in our platform and are excited to see what you'll build.
3+
With [GitHub Codespaces](https://github.com/features/codespaces), you can access the ultimate online development platform, right in your browser - no downloads or installations required!
44

5-
## Documentation
5+
Experience lightning-fast speeds and seamless integration as you dive into the world of Bit BlazorUI, and elevate your web development game to new heights.
66

7-
To help you get started, we have comprehensive documentation available. You can find detailed guides, samples, and more at:
7+
[![Open in Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/bitfoundation/bit-templates-playground/tree/develop)
88

9-
[bitplatform.dev/templates](https://bitplatform.dev/templates/overview)
9+
**Instructions:**
1010

11-
If you have any questions or need further assistance, feel free to [reach out](https://github.com/bitfoundation/bitplatform/issues/new/choose). Happy coding!
11+
Run `cd src/Server/Bit.TemplatePlayground.Server.Web && dotnet run`, then sign-in using `test@bitplatform.dev`, `123456` and explorer features.
1212

13-
---
13+
This sample project gets created by the following command:
14+
```bash
15+
dotnet new install Bit.Boilerplate && dotnet new bit-bp --name Bit.TemplatePlayground --database sqlite --sample admin
16+
```
1417

15-
The **bit platform** team.
18+
Note: In order to view sign-up's `confirmation email`, read [Email settings docs](https://bitplatform.dev/templates/settings).

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.400",
4-
"rollForward": "latestFeature"
3+
"version": "9.0.100",
4+
"rollForward": "latestPatch"
55
}
66
}

settings.VisualStudio.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* Visual Studio Settings File */
2+
{
3+
"debugging.general.disableJITOptimization": true,
4+
"environment.documents.saveWithSpecificEncoding": true,
5+
"environment.documents.saveEncoding": "utf-8;65001"
6+
}

0 commit comments

Comments
 (0)