Skip to content

Commit 51759c8

Browse files
committed
Fix: make package path lowercase in deps.json
- Otherwise, it won't work on case-sensitive file systems (macOS/Linux)
1 parent 8b4a504 commit 51759c8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

UserSecretsExtension/PackageContents/tools/net10.0/Toolbelt.Blazor.WebAssembly.ExtensibleDevServer.UserSecretsExtension.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
"compilationOptions": {},
77
"targets": {
88
".NETCoreApp,Version=v10.0": {
9-
"Toolbelt.Blazor.WebAssembly.ExtensibleDevServer.UserSecretsExtension/10.0.3": {
9+
"toolbelt.blazor.webassembly.extensibledevserver.usersecretsextension/10.0.3": {
1010
"runtime": {
1111
"tools/net10.0/Toolbelt.Blazor.WebAssembly.ExtensibleDevServer.UserSecretsExtension.dll": {}
1212
}
1313
}
1414
}
1515
},
1616
"libraries": {
17-
"Toolbelt.Blazor.WebAssembly.ExtensibleDevServer.UserSecretsExtension/10.0.3": {
17+
"toolbelt.blazor.webassembly.extensibledevserver.usersecretsextension/10.0.3": {
1818
"type": "project",
1919
"serviceable": false,
2020
"sha512": ""

UserSecretsExtension/UserSecretsExtension.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@
6262
<DepsJsonLine Include="%20 &quot;compilationOptions&quot;: {}," />
6363
<DepsJsonLine Include="%20 &quot;targets&quot;: {" />
6464
<DepsJsonLine Include="%20 &quot;.NETCoreApp,Version=v10.0&quot;: {" />
65-
<DepsJsonLine Include="%20 &quot;$(AssemblyName)/$(Version)&quot;: {" />
65+
<DepsJsonLine Include="%20 &quot;$(AssemblyName.ToLower())/$(Version)&quot;: {" />
6666
<DepsJsonLine Include="%20 &quot;runtime&quot;: {" />
6767
<DepsJsonLine Include="%20 &quot;tools/$(TargetFramework)/$(AssemblyName).dll&quot;: {}" />
6868
<DepsJsonLine Include="%20 }" />
6969
<DepsJsonLine Include="%20 }" />
7070
<DepsJsonLine Include="%20 }" />
7171
<DepsJsonLine Include="%20 }," />
7272
<DepsJsonLine Include="%20 &quot;libraries&quot;: {" />
73-
<DepsJsonLine Include="%20 &quot;$(AssemblyName)/$(Version)&quot;: {" />
73+
<DepsJsonLine Include="%20 &quot;$(AssemblyName.ToLower())/$(Version)&quot;: {" />
7474
<DepsJsonLine Include="%20 &quot;type&quot;: &quot;project&quot;," />
7575
<DepsJsonLine Include="%20 &quot;serviceable&quot;: false," />
7676
<DepsJsonLine Include="%20 &quot;sha512&quot;: &quot;&quot;" />

0 commit comments

Comments
 (0)