mirror of https://github.com/icsharpcode/ILSpy.git
Browse Source
ILSpy targets net10.0, not net10.0-windows; the VS add-in build paths, the installer output dir, the local-dev publish script, and the VS Code launch config still referenced the old net10.0-windows layout. Align them with the actual TFM, matching publish.ps1 and the build workflow. Assisted-by: Claude:claude-opus-4-8:Claude Codepull/3755/head
5 changed files with 7 additions and 7 deletions
@ -1,11 +1,11 @@ |
|||||||
# For local development of the VSIX package - build and publish (VS2022 also needs arm64) |
# For local development of the VSIX package - build and publish (VS2022 also needs arm64) |
||||||
|
|
||||||
$output_x64 = "./ILSpy/bin/Release/net10.0-windows/win-x64/publish/fwdependent" |
$output_x64 = "./ILSpy/bin/Release/net10.0/win-x64/publish/fwdependent" |
||||||
|
|
||||||
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
||||||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
||||||
|
|
||||||
$output_arm64 = "./ILSpy/bin/Release/net10.0-windows/win-arm64/publish/fwdependent" |
$output_arm64 = "./ILSpy/bin/Release/net10.0/win-arm64/publish/fwdependent" |
||||||
|
|
||||||
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
dotnet publish ./ILSpy/ILSpy.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
||||||
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
dotnet publish ./ILSpy.ReadyToRun/ILSpy.ReadyToRun.csproj -c Release --no-restore --no-self-contained -r win-arm64 -o $output_arm64 |
||||||
Loading…
Reference in new issue