Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Vsix/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public async Task RunFinalExe(DisasmoSymbolInfo symbolInfo, IProjectProperties p
return;

command = "";
executable = Path.Combine(clrReleaseFolder, "ilc", "ilc.exe");
executable = Path.Combine(clrReleaseFolder, "ilc-published", "ilc.exe");

command += $" \"{fileName}.dll\" ";

Expand Down Expand Up @@ -602,7 +602,7 @@ private UnconfiguredProject GetUnconfiguredProject(Project project)
{
var arch = SettingsViewModel.Arch;
var releaseFolder = Path.Combine(SettingsVm.PathToLocalCoreClr, "artifacts", "bin", "coreclr", $"windows.{arch}.Checked");
if (!Directory.Exists(releaseFolder) || !Directory.Exists(Path.Combine(releaseFolder, "aotsdk")) || !Directory.Exists(Path.Combine(releaseFolder, "ilc")))
if (!Directory.Exists(releaseFolder) || !Directory.Exists(Path.Combine(releaseFolder, "aotsdk")) || !Directory.Exists(Path.Combine(releaseFolder, "ilc-published")))
{
Output = $"Path to a local dotnet/runtime repository is either not set or it's not correctly built for {arch} arch yet for NativeAOT" +
"\nPlease clone it and build it using the following steps.:\n\n" +
Expand Down Expand Up @@ -939,4 +939,4 @@ private static string FindJitDirectory(string basePath, string arch)
return null;
}
}
}
}