-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Empty Blazor Server Project Template #42079
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
Merged
cerasamson
merged 38 commits into
dotnet:main
from
cerasamson:t-samsoncera/empty_template
Jun 22, 2022
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
6794f66
Duplicated Blazor WebAssembly and Blazor Hosted templates
cerasamson 074eff7
Renaming to reflect file name change
cerasamson 8a46db2
Added files for empty Blazor Server template
cerasamson d9767a1
Delete Empty WASM Template files
cerasamson 1144845
Create EmptyBlazorServerWeb-CSharp.csproj.in
cerasamson f179518
Update launchSettings.json
cerasamson bf6984b
Update site.css
cerasamson 167f0c8
Removed GUIDs, "Shared" folder, Program.Main.cs
cerasamson b25f3f0
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyBlazorS…
cerasamson 532d4d6
Removed references to Program.Main.cs, reverted HTTPS settings
cerasamson 0ddda00
Merge branch 't-samsoncera/empty_template' of https://github.com/cera…
cerasamson 59e7d18
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyBlazorS…
cerasamson 2e100cf
Added EmptyBlazorServerTest; fixed dismiss formatting
cerasamson 8ad2bba
Added blazorserver-empty to template-baselines.json
cerasamson eeac1a3
Remove ProgramMain; name changes
cerasamson 8858463
Moved folders for empty template
cerasamson f743db0
Revert this (testing CI)
cerasamson 808fc09
Assert failure logging for missing binlog
TanayParikh 1943667
Update Project.cs
TanayParikh db2bb69
Update Project.cs
TanayParikh 1cda572
Merge branch 'main' into t-samsoncera/empty_template
cerasamson db608a5
Merge branch 'main' into t-samsoncera/empty_template
cerasamson 7caf4f5
Update MainLayout.razor, Index.razor
cerasamson da5bcc2
Moved empty template test, changed namesapce
cerasamson 9e1da5a
Modify to reflect changes in http/https launch profiles
cerasamson cecfa72
Merge branch 'main' into t-samsoncera/empty_template
cerasamson ceefab2
Remove RequiresHttps from template.json
cerasamson 354f703
Update EmptyBlazorServerTemplateTest.cs
cerasamson 74af016
Merge branch 'main' into t-samsoncera/empty_template
cerasamson 8d966d3
Update src/ProjectTemplates/Shared/Project.cs
cerasamson 1969efa
Update Microsoft.DotNet.Web.ProjectTemplates.csproj
cerasamson 7b087fe
Merge branch 't-samsoncera/empty_template' of https://github.com/cera…
cerasamson 45e0e54
Merge branch 'dotnet:main' into t-samsoncera/empty_template
cerasamson 6d421b4
Update template.json
cerasamson 9ae1b94
Add exclude-launch-settings test
cerasamson a647db9
Merge branch 'dotnet:main' into t-samsoncera/empty_template
cerasamson fbc7b9d
Modified .json files
cerasamson 415faa7
Move tags to ide.host.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
This file contains hidden or 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
11 changes: 11 additions & 0 deletions
11
src/ProjectTemplates/Web.ProjectTemplates/EmptyBlazorServerWeb-CSharp.csproj.in
This file contains hidden or 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,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>${DefaultNetCoreTargetFramework}</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">True</NoDefaultLaunchSettingsFile> | ||
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">EmptyBlazorServerWeb_CSharp</RootNamespace> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains hidden or 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
35 changes: 35 additions & 0 deletions
35
...ProjectTemplates/content/EmptyBlazorServerWeb-CSharp/.template.config/dotnetcli.host.json
This file contains hidden or 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,35 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/dotnetcli.host", | ||
"symbolInfo": { | ||
"Framework": { | ||
"longName": "framework" | ||
}, | ||
"skipRestore": { | ||
"longName": "no-restore", | ||
"shortName": "" | ||
}, | ||
"kestrelHttpPort": { | ||
"isHidden": true | ||
}, | ||
"kestrelHttpsPort": { | ||
"isHidden": true | ||
}, | ||
"iisHttpPort": { | ||
"isHidden": true | ||
}, | ||
"iisHttpsPort": { | ||
"isHidden": true | ||
}, | ||
"ExcludeLaunchSettings": { | ||
"longName": "exclude-launch-settings", | ||
"shortName": "" | ||
}, | ||
"NoHttps": { | ||
"longName": "no-https", | ||
"shortName": "" | ||
} | ||
}, | ||
"usageExamples": [ | ||
"" | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
...s/Web.ProjectTemplates/content/EmptyBlazorServerWeb-CSharp/.template.config/ide.host.json
This file contains hidden or 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,18 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/ide.host", | ||
"order": 650, | ||
"icon": "ide/icon.png", | ||
"disableHttpsSymbol": "NoHttps", | ||
"supportsDocker": true, | ||
"tags": [ | ||
{ | ||
"type": "projectType", | ||
"add": [ "Cloud", "Web" ], | ||
"remove": [ "*" ] | ||
}, | ||
{ | ||
"type": "platform", | ||
"add": [ "Linux", "macOS", "Windows" ] | ||
} | ||
] | ||
} |
Binary file added
BIN
+1.12 KB
...jectTemplates/content/EmptyBlazorServerWeb-CSharp/.template.config/ide/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.cs.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
TanayParikh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.de.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.en.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.es.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.fr.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.it.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.ja.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.ko.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.pl.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
.../content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.pt-BR.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/manualInstructions/default/text": "Run 'dotnet restore'" | ||
} |
16 changes: 16 additions & 0 deletions
16
...tes/content/EmptyBlazorServerWeb-CSharp/.template.config/localize/templatestrings.ru.json
This file contains hidden or 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,16 @@ | ||
{ | ||
"author": "Microsoft", | ||
"name": "Blazor Server App Empty", | ||
"description": "An empty project template for creating a Blazor server app that runs server-side inside an ASP.NET Core app and handles user interactions over a SignalR connection. This template does not have any content in it.", | ||
"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/NoHttps/description": "Whether to turn off HTTPS.", | ||
"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.", | ||
"postActions/restore/description": "Restore NuGet packages required by this project.", | ||
"postActions/restore/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.
Uh oh!
There was an error while loading. Please reload this page.