Skip to content

Commit

Permalink
Update toolchain docs (dotnet#2525)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattFromRVA authored Feb 23, 2024
1 parent 1095280 commit c20fd51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/articles/configs/toolchains.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ public class CustomPathsConfig : ManualConfig
.NetCoreApp20
.WithCustomDotNetCliPath(@"C:\Program Files\dotnet\dotnet.exe", "64 bit cli");

Add(Job.RyuJitX86.With(CsProjCoreToolchain.From(dotnetCli32bit)).WithId("32 bit cli"));
Add(Job.RyuJitX64.With(CsProjCoreToolchain.From(dotnetCli64bit)).WithId("64 bit cli"));
AddJob(Job.RyuJitX86.WithToolchain(CsProjCoreToolchain.From(dotnetCli32bit)).WithId("32 bit cli"));
AddJob(Job.RyuJitX64.WithToolchain(CsProjCoreToolchain.From(dotnetCli64bit)).WithId("64 bit cli"));
}
}
```
Expand Down

0 comments on commit c20fd51

Please sign in to comment.