7 instantiations of SdkCheckCommand
dotnet (1)
Commands\Sdk\Check\SdkCheckCommand.cs (1)
82
return new
SdkCheckCommand
(parseResult).Execute();
dotnet.Tests (6)
CommandTests\Sdk\Check\GivenDotnetSdkCheck.cs (6)
56
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(newerBandExists ? oldSdks : newSdks), new MockProductCollectionProvider(fakeReleasesPath), _reporter).Execute();
78
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(bundles), new MockProductCollectionProvider(fakeReleasesPath), _reporter).Execute();
111
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(bundles), new MockProductCollectionProvider(fakeReleasesPath), _reporter).Execute();
137
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(bundles), new MockProductCollectionProvider(fakeReleasesPath), _reporter).Execute();
171
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(bundles), new MockProductCollectionProvider(fakeReleasesPath), _reporter).Execute();
204
new
SdkCheckCommand
(parseResult, new MockNETBundleProvider(bundles), dotnetRoot: dotnetRoot, dotnetVersion: "6.0.100", reporter: _reporter).Execute();
1 reference to SdkCheckCommand
dotnet (1)
Commands\Sdk\Check\SdkCheckCommandParser.cs (1)
23
command.SetAction(
SdkCheckCommand
.Run);