Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove unnecessary ?.
  • Loading branch information
jjonescz committed Dec 11, 2025
commit f9e57b553a0af11b6f988a65491fa9402f882665
4 changes: 2 additions & 2 deletions src/Cli/dotnet/Commands/Run/VirtualProjectBuildingCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -939,11 +939,11 @@ private BuildLevel GetBuildLevel(out CacheInfo cache)
{
Reporter.Verbose.WriteLine("No CSC arguments from previous run.");
}
else if (cache.PreviousEntry?.Run == null)
else if (cache.PreviousEntry.Run == null)
{
Reporter.Verbose.WriteLine("We have CSC arguments but not run properties. That's unexpected.");
}
else if (cache.PreviousEntry?.BuildResultFile == null)
else if (cache.PreviousEntry.BuildResultFile == null)
{
Reporter.Verbose.WriteLine("We have CSC arguments but not build result file. That's unexpected.");
}
Expand Down