2 writes to Executable
Microsoft.AspNetCore.Components.Testing (1)
E2EManifestJsonContext.E2EAppEntry.g.cs (1)
59Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).Executable = value!,
Microsoft.AspNetCore.Components.Testing.Tests (1)
E2EManifestTests.cs (1)
84manifest.Apps["TestApp"] = new E2EAppEntry { Executable = "dotnet", Arguments = "run --no-launch-profile", WorkingDirectory = "/test" };
16 references to Executable
Microsoft.AspNetCore.Components.Testing (5)
E2EManifestJsonContext.E2EAppEntry.g.cs (2)
58Getter = static obj => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).Executable, 172writer.WriteString(PropName_executable, ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)value).Executable);
Infrastructure\ServerInstance.cs (3)
149$"Command: {appEntry.Executable} {appEntry.Arguments}.\n" + 159$"Command: {appEntry.Executable} {appEntry.Arguments}.\n" + 198var executable = appEntry.Executable;
Microsoft.AspNetCore.Components.Testing.Tests (11)
E2EManifestTests.cs (5)
37Assert.Equal("dotnet", app.Executable); 64Assert.Equal("PublishedApp.exe", app.Executable); 89Assert.Equal("dotnet", result!.Executable); 141Assert.Equal("dotnet", buildEntry!.Executable); 147Assert.Equal("MyApp.exe", publishedEntry!.Executable);
GenerateE2EManifestTaskTests.cs (6)
51Assert.Equal("dotnet", entry!.Executable); 74Assert.Equal("dotnet", entry!.Executable); 116Assert.Equal(expectedExe, entry!.Executable); 142Assert.Equal("dotnet", entry!.Executable); 187Assert.Equal("dotnet", buildEntry!.Executable); 195Assert.Equal(expectedExe, publishEntry!.Executable);