1 write to FailureReason
Microsoft.DotNet.ProjectTools (1)
LaunchSettings\LaunchProfileParseResult.cs (1)
16FailureReason = failureReason;
5 references to FailureReason
dotnet (3)
Commands\Run\RunCommand.cs (2)
174if (launchProfileParseResult.FailureReason != null) 176Reporter.Error.WriteLine(string.Format(CliCommandStrings.RunCommandExceptionCouldNotApplyLaunchSettings, LaunchProfileParser.GetLaunchProfileDisplayName(LaunchProfile), launchProfileParseResult.FailureReason).Bold().Red());
Commands\Test\MTP\SolutionAndProjectUtility.cs (1)
412Reporter.Error.WriteLine(string.Format(CliCommandStrings.RunCommandExceptionCouldNotApplyLaunchSettings, profileName, result.FailureReason).Bold().Red());
Microsoft.DotNet.ProjectTools (2)
LaunchSettings\LaunchProfileParseResult.cs (2)
20[MemberNotNullWhen(false, nameof(FailureReason))] 22=> FailureReason == null;