3 types derived from ForwardingApp
dotnet (3)
Commands\Format\FormatForwardingApp.cs (1)
8public class FormatForwardingApp(IEnumerable<string> argsToForward) : ForwardingApp(forwardApplicationPath: GetForwardApplicationPath(),
Commands\Fsi\FsiForwardingApp.cs (1)
10public class FsiForwardingApp(string[] arguments) : ForwardingApp(GetFsiAppPath(), processArguments(arguments))
Commands\Test\VSTest\VSTestForwardingApp.cs (1)
10public class VSTestForwardingApp : ForwardingApp
13 instantiations of ForwardingApp
dotnet (1)
NuGetForwardingApp.cs (1)
15_forwardingApp = new ForwardingApp(
dotnet.Tests (12)
CommandTests\MSBuild\GivenForwardingApp.cs (9)
11new ForwardingApp("<apppath>", new string[0]) 18new ForwardingApp("<apppath>", new string[0]) 25new ForwardingApp("<apppath>", new string[] { "one", "two", "three" }) 32new ForwardingApp("<apppath>", new string[] { "<arg>" }, depsFile: "<deps-file>") 39new ForwardingApp("<apppath>", new string[] { "<arg>" }, runtimeConfig: "<runtime-config>") 46new ForwardingApp("<apppath>", new string[] { "<arg>" }, additionalProbingPath: "<additionalprobingpath>") 53new ForwardingApp("<apppath>", new string[] { "a b c" }) 60new ForwardingApp("<apppath>", new string[] { "a\"b\"c" }) 67var startInfo = new ForwardingApp("<apppath>", new string[0], environmentVariables: new Dictionary<string, string>
NuGetSignatureVerificationEnablerTests.cs (3)
61ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>()); 75ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>()); 116ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>());
7 references to ForwardingApp
dotnet (3)
ForwardingApp.cs (1)
32public ForwardingApp WithEnvironmentVariable(string name, string value)
NuGetForwardingApp.cs (1)
11private readonly ForwardingApp _forwardingApp;
NuGetSignatureVerificationEnabler.cs (1)
15public static void ConditionallyEnable(ForwardingApp forwardingApp, IEnvironmentProvider? environmentProvider = null)
dotnet.Tests (4)
NuGetSignatureVerificationEnablerTests.cs (4)
37ForwardingApp forwardingApp = null!; 61ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>()); 75ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>()); 116ForwardingApp forwardingApp = new(FakeFilePath, Array.Empty<string>());