-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty Blazor WebAssembly Project Template #42215
Merged
Merged
Changes from 9 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
bf569bb
Duplicated required files
cerasamson 9627fd8
Removed authentication, pages, formatting
cerasamson 0aca1b6
Fix namespaces
cerasamson 766e946
Remove readme / auth template options
cerasamson 4a6e9b0
Update Index.razor
cerasamson 10c9c40
Remove auth options from templatestrings
cerasamson 5cb350f
Update launchSettings.json
cerasamson 7884d75
Merge branch 'dotnet:main' into t-samsoncera/empty-wasm
cerasamson b51e9c7
Remove auth (cont.), rename files
cerasamson f8a30dd
Added .csproj.in files
cerasamson 020fc43
Update templatestrings.json
cerasamson b93749e
Update templatestrings.cs.json
cerasamson 5575cfb
Update Program.cs
cerasamson 52e3807
Modify to reflect changes in http/https launch profiles
cerasamson 84c26e8
Merge branch 'main' into t-samsoncera/empty-wasm
cerasamson e48887e
Add template test; remove RequiresHttps logic
cerasamson 1cc0911
Added blazorwasm-empty template baseline tests
cerasamson 0a3ec04
Merge branch 'main' into t-samsoncera/empty-wasm
cerasamson 8ae18a8
Changes from code review; fix failing test
cerasamson 9702889
Add empty file to Shared folder
cerasamson 450c3ae
Merge branch 'main' into t-samsoncera/empty-wasm
cerasamson d20c638
Merge branch 'dotnet:main' into t-samsoncera/empty-wasm
cerasamson de700d1
Update src/ProjectTemplates/test/Templates.Blazor.Tests/EmptyBlazorWa…
cerasamson 22f4998
Fix issues with launchBrowser and missing PWA install app
cerasamson 25132ba
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyCompone…
cerasamson 5ce1f32
Update EmptyComponentsWebAssembly-CSharp.sln
cerasamson 9ee7e71
Merge branch 't-samsoncera/empty-wasm' of https://github.com/cerasams…
cerasamson ef4078f
Merge branch 'dotnet:main' into t-samsoncera/empty-wasm
cerasamson 28e94cf
Fix missing Server project
cerasamson e31a381
Update .json files
cerasamson 95119a3
Update template-baselines.json
cerasamson c9a1168
Move icon.png into ide/
cerasamson fed1120
Update ide.host.json
cerasamson acc7d53
Fix template-baselines, template.json
cerasamson fa76595
Fix templates-baselines, remove icon-192.png
cerasamson a35c985
Revert "Fix templates-baselines, remove icon-192.png"
cerasamson 46ac431
Delete icon-192.png
cerasamson 6e0262a
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyCompone…
cerasamson 8423016
Add ExcludeLaunchSettings to template.json
cerasamson 3ff7385
Merge branch 't-samsoncera/empty-wasm' of https://github.com/cerasams…
cerasamson 6de517a
Move tags into ide.host.json
cerasamson 4a1a6d9
Fix closing brace appsettings.json
cerasamson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
...tTemplates/content/EmptyComponentsWebAssembly-CSharp/.template.config/dotnetcli.host.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/dotnetcli.host", | ||
"symbolInfo": { | ||
"skipRestore": { | ||
"longName": "no-restore", | ||
"shortName": "" | ||
}, | ||
"Hosted": { | ||
"longName": "hosted" | ||
}, | ||
"PWA": { | ||
"longName": "pwa" | ||
}, | ||
"Framework": { | ||
"longName": "framework" | ||
}, | ||
TanayParikh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"kestrelHttpPort": { | ||
"isHidden": true | ||
}, | ||
"kestrelHttpsPort": { | ||
"isHidden": true | ||
}, | ||
"iisHttpPort": { | ||
"isHidden": true | ||
}, | ||
"iisHttpsPort": { | ||
"isHidden": true | ||
}, | ||
"ExcludeLaunchSettings": { | ||
"longName": "exclude-launch-settings", | ||
"shortName": "" | ||
}, | ||
TanayParikh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"UserSecretsId": { | ||
"isHidden": true | ||
}, | ||
"NoHttps": { | ||
"longName": "no-https", | ||
"shortName": "" | ||
}, | ||
"CalledApiUrl": { | ||
"longName": "called-api-url", | ||
"shortName": "" | ||
} | ||
} | ||
} |
Binary file added
BIN
+1.12 KB
...ctTemplates/content/EmptyComponentsWebAssembly-CSharp/.template.config/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions
26
...ProjectTemplates/content/EmptyComponentsWebAssembly-CSharp/.template.config/ide.host.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/vs-2017.3.host", | ||
cerasamson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"order": 610, | ||
cerasamson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"icon": "icon.png", | ||
cerasamson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"ports": [ | ||
cerasamson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
"name": "HttpPort", | ||
"useHttps": false | ||
}, | ||
{ | ||
"name": "HttpsPort", | ||
"useHttps": true | ||
} | ||
], | ||
"disableHttpsSymbol": "NoHttps", | ||
"symbolInfo": [ | ||
{ | ||
"id": "Hosted", | ||
"isVisible": "true" | ||
cerasamson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
{ | ||
"id": "PWA", | ||
"isVisible": "true" | ||
} | ||
] | ||
TanayParikh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.cs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.de.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.es.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.fr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.it.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.ja.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.ko.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
22 changes: 22 additions & 0 deletions
22
...ntent/EmptyComponentsWebAssembly-CSharp/.template.config/localize/templatestrings.pl.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor WebAssembly App Empty", | ||
"description": "An empty project template for creating a Blazor app that runs on WebAssembly and is optionally hosted by an ASP.NET Core app. This template does not have any content in it.", | ||
"symbols/Framework/description": "The target framework for the project.", | ||
"symbols/Framework/choices/net7.0/description": "Target net7.0", | ||
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.", | ||
"symbols/Hosted/displayName": "ASP.NET Core Hosted", | ||
"symbols/Hosted/description": "If specified, includes an ASP.NET Core host for the Blazor WebAssembly app.", | ||
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.", | ||
"symbols/kestrelHttpPort/description": "Port number to use for the HTTP endpoint in launchSettings.json.", | ||
"symbols/kestrelHttpsPort/description": "Port number to use for the HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/iisHttpPort/description": "Port number to use for the IIS Express HTTP endpoint in launchSettings.json.", | ||
"symbols/iisHttpsPort/description": "Port number to use for the IIS Express HTTPS endpoint in launchSettings.json. This option is only applicable when the parameter no-https is not used.", | ||
"symbols/PWA/displayName": "_Progressive Web Application", | ||
"symbols/PWA/description": "If specified, produces a Progressive Web Application (PWA) supporting installation and offline use.", | ||
"symbols/NoHttps/description": "Whether to turn off HTTPS.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'", | ||
"postActions/restoreClient/description": "Restore NuGet packages required by this project.", | ||
"postActions/restoreClient/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just confirming whether you've had a chance to test out these options on the CLI? Notably, the
Hosted
option is working appropriately (ie. creating empty blazor hosted vs empty blazor standalone).