Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions src/BlazorWasmSdk/Tasks/BrotliCompress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ protected override string GenerateResponseFileCommands()
}

builder.AppendLine("-s");
builder.AppendLine(inputFullPath);
builder.AppendLine(Quote(inputFullPath));

builder.AppendLine("-o");
builder.AppendLine(outputFullPath);
builder.AppendLine(Quote(outputFullPath));
}

return builder.ToString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,14 @@ public void BuildMinimal_Works()
new FileInfo(Path.Combine(buildOutputDirectory, "wwwroot", "_framework", "blazorwasm-minimal.dll")).Should().Exist();
}

[Fact]
public void Build_Works()
[Theory]
[InlineData("blazor")]
[InlineData("blazor spaces")]
public void Build_Works(string identifier)
{
// Arrange
var testAppName = "BlazorWasmWithLibrary";
var testInstance = CreateAspNetSdkTestAsset(testAppName);
var testInstance = CreateAspNetSdkTestAsset(testAppName, identifier: identifier);

var buildCommand = new BuildCommand(testInstance, "blazorwasm");
buildCommand.Execute()
Expand Down