-
Notifications
You must be signed in to change notification settings - Fork 245
Fix Blazor WebAssembly Hosted and Blazor Server build perf benchmarks #1943
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
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
afa8e91
Update Blazor build perf scenarios
MackinnonBuck a630ecb
Update 'BlazorWasmHosted.cs'
MackinnonBuck ebda92a
Update "BlazorWasmHosted.cs"
MackinnonBuck 4239f53
Update "BlazorServerScenario.cs"
MackinnonBuck 05a5fff
Update "BlazorServerScenario.cs"
MackinnonBuck 5d879ac
Update "build-perf-scenarios.yml"
MackinnonBuck 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
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
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 |
---|---|---|
|
@@ -9,6 +9,8 @@ namespace Build | |
{ | ||
class BlazorWasmHosted | ||
{ | ||
private const string ProjectName = "BlazorApp"; | ||
|
||
private readonly DotNet _dotnet; | ||
private readonly string _workingDirectory; | ||
private readonly string _serverDirectory; | ||
|
@@ -18,19 +20,16 @@ public BlazorWasmHosted(DotNet dotNet) | |
{ | ||
_dotnet = dotNet; | ||
_workingDirectory = dotNet.WorkingDirectory; | ||
_serverDirectory = Path.Combine(_workingDirectory, "Server"); | ||
_clientDirectory = Path.Combine(_workingDirectory, "Client"); | ||
_serverDirectory = Path.Combine(_workingDirectory, ProjectName); | ||
_clientDirectory = Path.Combine(_workingDirectory, $"{ProjectName}.Client"); | ||
} | ||
|
||
public async Task RunAsync() | ||
{ | ||
await _dotnet.ExecuteAsync($"new blazor --use-wasm"); | ||
await _dotnet.ExecuteAsync($"new blazor -n {ProjectName} -o . -int WebAssembly"); | ||
|
||
await Build(); | ||
|
||
// Change | ||
await ChangeShared(); | ||
|
||
// Changes to .razor file markup | ||
await ChangeClient(); | ||
|
||
|
@@ -67,23 +66,9 @@ async Task ChangeServer() | |
"Change a file in Server"); | ||
} | ||
|
||
async Task ChangeShared() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed this because there is no "Shared" project anymore. |
||
{ | ||
// Changes to .cs file | ||
var csFile = Path.Combine(_workingDirectory, "Shared", "WeatherForecast.cs"); | ||
File.AppendAllText(csFile, Environment.NewLine + "// Hello world"); | ||
|
||
var buildDuration = await _dotnet.ExecuteAsync("build --no-restore", _serverDirectory); | ||
|
||
MeasureAndRegister( | ||
"blazorwasm-hosted/shared-file", | ||
buildDuration.TotalMilliseconds, | ||
"Change a file in shared"); | ||
} | ||
|
||
async Task ChangeClient() | ||
{ | ||
var indexRazorFile = Path.Combine(_clientDirectory, "Pages", "Index.razor"); | ||
var indexRazorFile = Path.Combine(_clientDirectory, "Pages", "Counter.razor"); | ||
File.AppendAllText(indexRazorFile, Environment.NewLine + "<h3>New content</h3>"); | ||
|
||
var buildDuration = await _dotnet.ExecuteAsync("build --no-restore", _serverDirectory); | ||
|
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.
Removed this because there are no
.cshtml
files in the template anymore.