15 writes to AssemblyName
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
191applicationOptions.AssemblyName = entryPointAssembly.GetName().Name ?? string.Empty;
Aspire.Hosting.Tests (13)
Dcp\DcpExecutorTests.cs (12)
56AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 121AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 173AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 539AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 566AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 659AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 738AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 849AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 896AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 1947AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 1984AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName 2021AssemblyName = typeof(DistributedApplicationTests).Assembly.FullName
ManifestGenerationTests.cs (1)
117{ Args = GetJsonManifestArgs(), DisableDashboard = true, AssemblyName = typeof(ManifestGenerationTests).Assembly.FullName });
TestProject.AppHost (1)
TestProgram.cs (1)
51AssemblyName = assemblyName,
4 references to AssemblyName
Aspire.Hosting (4)
DistributedApplicationOptions.cs (4)
214if (!string.IsNullOrEmpty(AssemblyName)) 219appHostAssembly = Assembly.Load(AssemblyName); 222throw new FileNotFoundException($"No assembly with name '{AssemblyName}' exists in the current AppDomain."); 227throw new InvalidOperationException($"Failed to load AppHost assembly '{AssemblyName}' specified in {nameof(DistributedApplicationOptions)}.", ex);