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