Skip to content
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 Server Project Template #42079

Merged
merged 38 commits into from
Jun 22, 2022
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6794f66
Duplicated Blazor WebAssembly and Blazor Hosted templates
cerasamson Jun 2, 2022
074eff7
Renaming to reflect file name change
cerasamson Jun 2, 2022
8a46db2
Added files for empty Blazor Server template
cerasamson Jun 7, 2022
d9767a1
Delete Empty WASM Template files
cerasamson Jun 7, 2022
1144845
Create EmptyBlazorServerWeb-CSharp.csproj.in
cerasamson Jun 7, 2022
f179518
Update launchSettings.json
cerasamson Jun 7, 2022
bf6984b
Update site.css
cerasamson Jun 7, 2022
167f0c8
Removed GUIDs, "Shared" folder, Program.Main.cs
cerasamson Jun 8, 2022
b25f3f0
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyBlazorS…
cerasamson Jun 8, 2022
532d4d6
Removed references to Program.Main.cs, reverted HTTPS settings
cerasamson Jun 8, 2022
0ddda00
Merge branch 't-samsoncera/empty_template' of https://github.com/cera…
cerasamson Jun 8, 2022
59e7d18
Update src/ProjectTemplates/Web.ProjectTemplates/content/EmptyBlazorS…
cerasamson Jun 8, 2022
2e100cf
Added EmptyBlazorServerTest; fixed dismiss formatting
cerasamson Jun 10, 2022
8ad2bba
Added blazorserver-empty to template-baselines.json
cerasamson Jun 10, 2022
eeac1a3
Remove ProgramMain; name changes
cerasamson Jun 13, 2022
8858463
Moved folders for empty template
cerasamson Jun 13, 2022
f743db0
Revert this (testing CI)
cerasamson Jun 14, 2022
808fc09
Assert failure logging for missing binlog
TanayParikh Jun 14, 2022
1943667
Update Project.cs
TanayParikh Jun 14, 2022
db2bb69
Update Project.cs
TanayParikh Jun 15, 2022
1cda572
Merge branch 'main' into t-samsoncera/empty_template
cerasamson Jun 15, 2022
db608a5
Merge branch 'main' into t-samsoncera/empty_template
cerasamson Jun 16, 2022
7caf4f5
Update MainLayout.razor, Index.razor
cerasamson Jun 16, 2022
da5bcc2
Moved empty template test, changed namesapce
cerasamson Jun 16, 2022
9e1da5a
Modify to reflect changes in http/https launch profiles
cerasamson Jun 17, 2022
cecfa72
Merge branch 'main' into t-samsoncera/empty_template
cerasamson Jun 17, 2022
ceefab2
Remove RequiresHttps from template.json
cerasamson Jun 17, 2022
354f703
Update EmptyBlazorServerTemplateTest.cs
cerasamson Jun 17, 2022
74af016
Merge branch 'main' into t-samsoncera/empty_template
cerasamson Jun 20, 2022
8d966d3
Update src/ProjectTemplates/Shared/Project.cs
cerasamson Jun 20, 2022
1969efa
Update Microsoft.DotNet.Web.ProjectTemplates.csproj
cerasamson Jun 20, 2022
7b087fe
Merge branch 't-samsoncera/empty_template' of https://github.com/cera…
cerasamson Jun 20, 2022
45e0e54
Merge branch 'dotnet:main' into t-samsoncera/empty_template
cerasamson Jun 20, 2022
6d421b4
Update template.json
cerasamson Jun 20, 2022
9ae1b94
Add exclude-launch-settings test
cerasamson Jun 20, 2022
a647db9
Merge branch 'dotnet:main' into t-samsoncera/empty_template
cerasamson Jun 21, 2022
fbc7b9d
Modified .json files
cerasamson Jun 21, 2022
415faa7
Move tags to ide.host.json
cerasamson Jun 21, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update launchSettings.json
  • Loading branch information
cerasamson committed Jun 7, 2022
commit f1795183df1626d45a080017ce228b31889de9ef
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,15 @@
"iisSettings": {
"iisExpress": {
"applicationUrl": "http://localhost:8080",
//#if(RequiresHttps)
"sslPort": 44300
//#else
"sslPort": 0
//#endif
}
},
"profiles": {
"EmptyBlazorServerWeb-CSharp": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
//#if(RequiresHttps)
"applicationUrl": "https://localhost:5001;http://localhost:5000",
//#else
"applicationUrl": "http://localhost:5000",
//#endif
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down