Skip to content

Commit f1a36ad

Browse files
Fix .NET 8 targets
1 parent 641b915 commit f1a36ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: 8.0.x
2121

2222
- name: Build Solution
2323
run: |

src/DistIL.OptimizerTask/DistIL.OptimizerTask.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<Exec
2828
WorkingDirectory="$(TargetDir)"
29-
Command='dotnet "$(MSBuildThisFileDirectory)../tools/net7.0/DistIL.Cli.dll" -i "$(InputAsmPath)" $(ResolverPathsArg) $(FilterUnmarkedArg) $(DistilExtraArgs)'
29+
Command='dotnet "$(MSBuildThisFileDirectory)../tools/net8.0/DistIL.Cli.dll" -i "$(InputAsmPath)" $(ResolverPathsArg) $(FilterUnmarkedArg) $(DistilExtraArgs)'
3030
/>
3131
<Touch Files="@(IntermediateAssembly -> '%(Identity).bak')" />
3232
</Target>

0 commit comments

Comments
 (0)