Removing the additional shared framework from the official stage2 build of the CLI. Instead, I also create a stage2 build with the legacy runtime so that we can continue to run tests tthat depend on it, but most importantly, we will be able to run backwards compatibility tests using it.
This commit is contained in:
parent
95a367136c
commit
772e838ff8
16 changed files with 203 additions and 68 deletions
|
@ -9,6 +9,14 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
|
|||
{
|
||||
public class DependencyToolInvokerCommand : DotnetCommand
|
||||
{
|
||||
public DependencyToolInvokerCommand() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public DependencyToolInvokerCommand(string dotnetUnderTest) : base(dotnetUnderTest)
|
||||
{
|
||||
}
|
||||
|
||||
public CommandResult Execute(string commandName, string framework, string additionalArgs)
|
||||
{
|
||||
var args = $"dependency-tool-invoker {commandName} --framework {framework} {additionalArgs}";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue