We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea7eee9 commit 9e64a2cCopy full SHA for 9e64a2c
src/Resolvers/Microsoft.DotNet.MSBuildSdkResolver/MSBuildSdkResolver.cs
@@ -247,6 +247,10 @@ private sealed class CachedState
247
?? Path.Combine(dotnetRoot, RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? Constants.DotNetExe : Constants.DotNet);
248
if (File.Exists(fullPathToMuxer))
249
{
250
+ // keeping this in until this component no longer needs to handle 17.14.
251
+ propertiesToAdd ??= new Dictionary<string, string?>();
252
+ propertiesToAdd.Add(DotnetHostExperimentalKey, fullPathToMuxer);
253
+ // this is the future-facing implementation.
254
environmentVariablesToAdd ??= new Dictionary<string, string?>(1)
255
256
[DOTNET_HOST] = fullPathToMuxer
0 commit comments