2 writes to Arguments
Microsoft.AspNetCore.Components.Testing (1)
E2EManifestJsonContext.E2EAppEntry.g.cs (1)
81Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).Arguments = value!,
Microsoft.AspNetCore.Components.Testing.Tests (1)
E2EManifestTests.cs (1)
84manifest.Apps["TestApp"] = new E2EAppEntry { Executable = "dotnet", Arguments = "run --no-launch-profile", WorkingDirectory = "/test" };
14 references to Arguments
Microsoft.AspNetCore.Components.Testing (5)
E2EManifestJsonContext.E2EAppEntry.g.cs (2)
80Getter = static obj => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).Arguments, 173writer.WriteString(PropName_arguments, ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)value).Arguments);
Infrastructure\ServerInstance.cs (3)
149$"Command: {appEntry.Executable} {appEntry.Arguments}.\n" + 159$"Command: {appEntry.Executable} {appEntry.Arguments}.\n" + 199var args = appEntry.Arguments;
Microsoft.AspNetCore.Components.Testing.Tests (9)
E2EManifestTests.cs (4)
38Assert.Equal("run --no-launch-profile", app.Arguments); 65Assert.Equal("", app.Arguments); 142Assert.Equal("run --no-launch-profile", buildEntry.Arguments); 148Assert.Equal("", publishedEntry.Arguments);
GenerateE2EManifestTaskTests.cs (5)
52Assert.Equal("run --no-launch-profile", entry.Arguments); 117Assert.Equal("", entry.Arguments); 143Assert.Equal("MyApp.dll", entry.Arguments); 188Assert.Equal("run --no-launch-profile", buildEntry.Arguments); 196Assert.Equal("", publishEntry.Arguments);