9 references to Assembly
Aspire.Hosting (9)
Dcp\DcpOptions.cs (1)
133var assemblyMetadata = appOptions.Assembly?.GetCustomAttributes<AssemblyMetadataAttribute>();
DistributedApplicationBuilder.cs (1)
80public Assembly? AppHostAssembly => _options.Assembly;
DistributedApplicationOptions.cs (3)
83var assemblyMetadata = Assembly?.GetCustomAttributes<AssemblyMetadataAttribute>(); 89var assemblyMetadata = Assembly?.GetCustomAttributes<AssemblyMetadataAttribute>(); 118return Assembly?.GetCustomAttribute<AssemblyConfigurationAttribute>()?.Configuration;
Orchestrator\ParameterProcessor.cs (1)
205SecretsStore.TrySetUserSecret(options.Assembly, parameter.ConfigurationKey, inputValue);
VersionChecking\VersionCheckService.cs (3)
92SecretsStore.TrySetUserSecret(_options.Assembly, LastCheckDateKey, now.ToString("o", CultureInfo.InvariantCulture)); 124SecretsStore.TrySetUserSecret(_options.Assembly, KnownLatestVersionKey, latestVersion.ToString()); 142SecretsStore.TrySetUserSecret(_options.Assembly, IgnoreVersionKey, latestVersion.ToString());