Skip to content

Commit 814f9b0

Browse files
authored
feat: update to bit 9.8.0 (#76)
2 parents b3d72b3 + 3c65d83 commit 814f9b0

File tree

240 files changed

+6019
-2565
lines changed

Some content is hidden

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

240 files changed

+6019
-2565
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
}
2525
},
2626
"forwardPorts": [
27-
4221,
27+
4055,
2828
5000,
29-
5214
29+
5213
3030
],
3131
"features": {
3232
"ghcr.io/devcontainers/features/node": {},

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,13 +261,13 @@ jobs:
261261
run: cd src && dotnet workload install maui
262262

263263
- name: Import Code-Signing Certificates
264-
uses: apple-actions/import-codesign-certs@v3
264+
uses: apple-actions/import-codesign-certs@v5
265265
with:
266266
p12-file-base64: ${{ secrets.APPSTORE_CODE_SIGNING_CERTIFICATE_FILE_BASE64 }}
267267
p12-password: ${{ secrets.APPSTORE_CODE_SIGNING_CERTIFICATE_FILE_PASSWORD }}
268268

269269
- name: Download Apple Provisioning Profiles
270-
uses: Apple-Actions/download-provisioning-profiles@v3
270+
uses: Apple-Actions/download-provisioning-profiles@v4
271271
with:
272272
bundle-id: 'com.companyname.bit.templateplayground'
273273
issuer-id: ${{ secrets.APPSTORE_API_KEY_ISSUER_ID }}

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"glenn2223.live-sass",
4+
"ms-dotnetools.csharp",
5+
"ms-dotnettools.csdevkit",
6+
"DominicVonk.vscode-resx-editor",
7+
"ms-dotnettools.vscode-dotnet-runtime",
8+
"kevin-chatham.aspnetcorerazor-html-css-class-completion"
9+
]
10+
}

.vsconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"Component.Android.SDK.MAUI"
77
],
88
"extensions": [
9-
"https://marketplace.visualstudio.com/items?itemName=TomEnglert.ResXManager",
10-
"https://marketplace.visualstudio.com/items?itemName=Failwyn.WebCompiler64"
9+
"https://marketplace.visualstudio.com/items?itemName=TomEnglert.ResXManager"
1110
]
1211
}

Bit.ResxTranslator.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Docs_Comment": "Checkout https://github.com/bitfoundation/bitplatform/blob/develop/src/ResxTranslator/README.md",
2+
"Docs_Comment": "Check out https://github.com/bitfoundation/bitplatform/blob/develop/src/ResxTranslator/README.md",
33

44
"DefaultLanguage": "en",
55

Bit.TemplatePlayground.Web.slnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"solution": {
3-
"path": "Bit.TemplatePlayground.sln",
3+
"path": "Bit.TemplatePlayground.slnx",
44
"projects": [
55
"src\\Client\\Bit.TemplatePlayground.Client.Core\\Bit.TemplatePlayground.Client.Core.csproj",
66
"src\\Client\\Bit.TemplatePlayground.Client.Web\\Bit.TemplatePlayground.Client.Web.csproj",

Bit.TemplatePlayground.slnx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
<Configurations>
33
<BuildType Name="Debug" />
44
<BuildType Name="DebugBlazorServer" />
5-
<BuildType Name="DebugBlazorWasm" />
6-
<BuildType Name="DebugBlazorHybridMaui" />
7-
<BuildType Name="DebugBlazorHybridWindows" />
85
<BuildType Name="Release" />
96
</Configurations>
107
<Folder Name="/.SolutionItems/">
@@ -40,32 +37,22 @@
4037
<Project Path="src/Client/Bit.TemplatePlayground.Client.Core/Bit.TemplatePlayground.Client.Core.csproj" />
4138
<Project Path="src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj">
4239
<Build Solution="DebugBlazorServer|*" Project="false" />
43-
<Build Solution="DebugBlazorWasm|*" Project="false" />
44-
<Build Solution="DebugBlazorHybridWindows|*" Project="false" />
45-
<Deploy Solution="DebugBlazorHybridMaui|*" />
4640
<Deploy Solution="Debug|*" />
4741
<Deploy Solution="Release|*" />
4842
</Project>
4943
<Project Path="src/Client/Bit.TemplatePlayground.Client.Web/Bit.TemplatePlayground.Client.Web.csproj">
50-
<Build Solution="DebugBlazorHybridMaui|*" Project="false" />
5144
<Build Solution="DebugBlazorServer|*" Project="false" />
52-
<Build Solution="DebugBlazorHybridWindows|*" Project="false" />
5345
</Project>
5446
<Project Path="src/Client/Bit.TemplatePlayground.Client.Windows/Bit.TemplatePlayground.Client.Windows.csproj">
55-
<Build Solution="DebugBlazorHybridMaui|*" Project="false" />
5647
<Build Solution="DebugBlazorServer|*" Project="false" />
57-
<Build Solution="DebugBlazorWasm|*" Project="false" />
5848
</Project>
5949
</Folder>
6050
<Folder Name="/Shared/">
6151
<Project Path="src/Shared/Bit.TemplatePlayground.Shared.csproj" />
6252
</Folder>
6353
<Folder Name="/Tests/">
6454
<Project Path="src/Tests/Bit.TemplatePlayground.Tests.csproj">
65-
<Build Solution="DebugBlazorHybridMaui|*" Project="false" />
6655
<Build Solution="DebugBlazorServer|*" Project="false" />
67-
<Build Solution="DebugBlazorWasm|*" Project="false" />
68-
<Build Solution="DebugBlazorHybridWindows|*" Project="false" />
6956
</Project>
7057
</Folder>
7158
</Solution>

settings.VisualStudio.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/* Visual Studio Settings File */
22
{
3-
"languages.defaults.general.lineNumbers": true,
4-
"debugging.general.disableJITOptimization": true,
5-
"environment.documents.saveWithSpecificEncoding": true,
6-
"environment.documents.saveEncoding": "utf-8-nobom;65001",
7-
"languages.defaults.tabs.tabSize": 4
8-
}
3+
"languages.defaults.general.lineNumbers": true,
4+
"debugging.general.disableJITOptimization": true,
5+
"environment.documents.saveWithSpecificEncoding": true,
6+
"environment.documents.saveEncoding": "utf-8-nobom;65001",
7+
"languages.defaults.tabs.tabSize": 4,
8+
"debugging.hotReload.enableHotReload": true,
9+
"debugging.hotReload.enableForNoDebugLaunch": true,
10+
"projectsAndSolutions.aspNetCore.general.hotReloadCssChanges": true
11+
}

src/Client/Bit.TemplatePlayground.Client.Core/Bit.TemplatePlayground.Client.Core.csproj

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Razor">
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
@@ -10,9 +10,6 @@
1010

1111
<ItemGroup>
1212
<SupportedPlatform Include="browser" />
13-
14-
<Content Remove="compilerconfig.json" />
15-
<None Include="compilerconfig.json" />
1613
<Content Remove="appsettings*.json" />
1714
<EmbeddedResource Include="appsettings*.json" />
1815

@@ -21,7 +18,6 @@
2118
<PackageReference Include="Bit.BlazorES2019" />
2219
<PackageReference Include="Bit.BlazorUI.Icons" />
2320
<PackageReference Include="Bit.BlazorUI.Assets" />
24-
<PackageReference Include="Fido2.Models" />
2521
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" />
2622
<PackageReference Include="Bit.BlazorUI.Extras" />
2723
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" />
@@ -51,7 +47,7 @@
5147
</ItemGroup>
5248

5349
<ItemGroup>
54-
<TypeScriptFiles Include="**\*.ts" />
50+
<TypeScriptFiles Include="**\*.ts" Exclude="node_modules\**\*.ts" />
5551
</ItemGroup>
5652

5753
<Target Name="BeforeBuildTasks" AfterTargets="CoreCompile">
@@ -70,7 +66,7 @@
7066
</Target>
7167

7268
<Target Name="BuildCssFiles">
73-
<Exec Command="node_modules/.bin/sass .:. Styles/app.scss:wwwroot/styles/app.css --style compressed --load-path=. --silence-deprecation=import" StandardOutputImportance="high" StandardErrorImportance="high" LogStandardErrorAsError="true" />
69+
<Exec Command="node_modules/.bin/sass Components:Components Styles/app.scss:wwwroot/styles/app.css --style compressed --silence-deprecation=import --update --color" StandardOutputImportance="high" StandardErrorImportance="high" LogStandardErrorAsError="true" />
7470
</Target>
7571

7672
<ItemGroup>

src/Client/Bit.TemplatePlayground.Client.Core/ClientCoreSettings.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+

22
namespace Bit.TemplatePlayground.Client.Core;
33

44
public partial class ClientCoreSettings : SharedSettings
@@ -12,6 +12,7 @@ public partial class ClientCoreSettings : SharedSettings
1212
[Required]
1313
public string GoogleRecaptchaSiteKey { get; set; } = default!;
1414

15+
1516
public override IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
1617
{
1718
var validationResults = base.Validate(validationContext).ToList();

0 commit comments

Comments
 (0)