mirror of https://github.com/icsharpcode/ILSpy.git
29 changed files with 54 additions and 53 deletions
@ -1,6 +1,6 @@ |
|||||||
{ |
{ |
||||||
"sdk": { |
"sdk": { |
||||||
"version": "8.0.100", |
"version": "10.0.0", |
||||||
"rollForward": "major", |
"rollForward": "major", |
||||||
"allowPrerelease": true |
"allowPrerelease": true |
||||||
} |
} |
||||||
|
@ -1,12 +1,12 @@ |
|||||||
# 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/net8.0-windows/win-x64/publish/fwdependent" |
$output_x64 = "./ILSpy/bin/Release/net10.0-windows/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 |
||||||
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
dotnet publish ./ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj -c Release --no-restore --no-self-contained -r win-x64 -o $output_x64 |
||||||
|
|
||||||
$output_arm64 = "./ILSpy/bin/Release/net8.0-windows/win-arm64/publish/fwdependent" |
$output_arm64 = "./ILSpy/bin/Release/net10.0-windows/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