17 writes to AssemblyName
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
191applicationOptions.AssemblyName = entryPointAssembly.GetName().Name ?? string.Empty;
Aspire.Hosting.Tests (15)
Dcp\DcpExecutorTests.cs (14)
57AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 122AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 176AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 210AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 576AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 603AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 696AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 775AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 886AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 933AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 2021AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 2058AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 2095AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 2175AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName
ManifestGenerationTests.cs (1)
118{ Args = GetJsonManifestArgs(), DisableDashboard = true, AssemblyName = typeof(ManifestGenerationTests).Assembly.FullName });
TestProject.AppHost (1)
TestProgram.cs (1)
53AssemblyName = assemblyName,
4 references to AssemblyName
Aspire.Hosting (4)
DistributedApplicationOptions.cs (4)
218if (!string.IsNullOrEmpty(AssemblyName)) 223appHostAssembly = Assembly.Load(AssemblyName); 226throw new FileNotFoundException($"No assembly with name '{AssemblyName}' exists in the current AppDomain."); 231throw new InvalidOperationException($"Failed to load AppHost assembly '{AssemblyName}' specified in {nameof(DistributedApplicationOptions)}.", ex);