Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
48a663a
[dotnet-cli] prompt for target framework using `Spectre.Console`
jonathanpeppers Oct 22, 2025
f5b4ff4
Fix for `.sln` file passed in
jonathanpeppers Oct 23, 2025
0c1445e
Use `Interactive` property
jonathanpeppers Oct 23, 2025
78afad3
Update GivenDotnetRunSelectsTargetFramework.cs
jonathanpeppers Oct 23, 2025
ea80a04
Remove duplicative tests
jonathanpeppers Oct 24, 2025
36e5271
Better assertion
jonathanpeppers Oct 24, 2025
6f66408
Skip previous TFMs on arm64, x64 passes on these
jonathanpeppers Oct 24, 2025
ae1b1d7
Remove ItPrefersExplicitFrameworkOptionOverProperty
jonathanpeppers Oct 24, 2025
e18870a
Update src/Cli/dotnet/Commands/Run/RunCommand.cs
jonathanpeppers Oct 31, 2025
9141a23
Sign `Spectre.Console.dll`
jonathanpeppers Nov 3, 2025
3847cfb
small tweaks to enable running against singular-valued targetframewor…
baronfel Nov 3, 2025
18241ce
Add `EnableSearch()` w/ localization support
jonathanpeppers Nov 3, 2025
ad8a20e
Pin darc
premun Nov 4, 2025
69864e8
Fix test failure
jonathanpeppers Nov 4, 2025
3e34f5a
Test for 3847cfb9809fce3b6bf5a58b0c68f37e10fa11e9
jonathanpeppers Nov 4, 2025
1be25bf
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 4, 2025
e47ba5a
Update RunFileTests.cs
jonathanpeppers Nov 4, 2025
7823fe5
Update GivenDotnetRunSelectsTargetFramework.cs
jonathanpeppers Nov 4, 2025
5f5a8f8
Fix multi-targeted 'dotnet run lib.cs'
jonathanpeppers Nov 4, 2025
6785ac5
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 5, 2025
5ad2287
Update RunFileTests.cs
jonathanpeppers Nov 5, 2025
940500d
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 19, 2025
6472ff0
Source code changes from merge w/ main
jonathanpeppers Nov 19, 2025
7193365
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 20, 2025
26015ea
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 21, 2025
3ecef08
Merge branch 'main' into dev/peppers/tf-selection
jonathanpeppers Nov 21, 2025
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
Update src/Cli/dotnet/Commands/Run/RunCommand.cs
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
jonathanpeppers and Copilot authored Oct 31, 2025
commit e18870ae18c3365e5051c439614ddb0166a8ed10
3 changes: 3 additions & 0 deletions src/Cli/dotnet/Commands/Run/RunCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ public class RunCommand

/// <summary>
/// Parsed structure representing the MSBuild arguments that will be used to build the project.
///
/// Note: This property has a private setter and is mutated within the class when framework selection modifies it.
/// This mutability is necessary to allow the command to update MSBuild arguments after construction based on framework selection.
/// </summary>
public MSBuildArgs MSBuildArgs { get; private set; }
public bool Interactive { get; }
Expand Down
Loading