Skip to content

Commit 24883f3

Browse files
committed
Correct case of blazor.webassembly.js paths
- how did Linux builds ever work? - case difference between these lines and global `$(Configuration)` value is **really** old - same for case in src/Components/Web.JS/src/webpack.config.js versus `$(Configuration)` I'm not sure this is the right fix when building `Debug` - will overwrite the checked-in dist/Debug files - should the project no-op in that configuration? Error seen in #21487 w/o this: ``` text error MSB3954: Failed to compute hash for file '/datadisks/disk1/workspace/_work/1/s/src/Components/Web.JS/dist/Release/blazor.webassembly.js' because it does not exist or is inaccessible. ```
1 parent aa0885b commit 24883f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/Web.JS/Microsoft.AspNetCore.Components.Web.JS.npmproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<BuildOutputFiles Include="dist\release\blazor.server.js" />
11-
<BuildOutputFiles Include="dist\release\blazor.webassembly.js" />
10+
<BuildOutputFiles Include="dist\$(Configuration)\blazor.server.js" />
11+
<BuildOutputFiles Include="dist\$(Configuration)\blazor.webassembly.js" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

0 commit comments

Comments
 (0)