1 instantiation of AspireStore
Aspire.Hosting (1)
DistributedApplicationBuilder.cs (1)
253return new AspireStore(Path.Combine(aspireDir, ".aspire"));
6 references to AspireStore
Aspire.Hosting (6)
ApplicationModel\AspireStore.cs (2)
16/// Initializes a new instance of the <see cref="AspireStore"/> class with the specified base path. 19/// <returns>A new instance of <see cref="AspireStore"/>.</returns>
DistributedApplicationBuilder.cs (4)
202[AspireStore.AspireStorePathKeyName] = aspireDir 243_innerBuilder.Services.AddSingleton<IAspireStore, AspireStore>(sp => 246var aspireDir = configuration[AspireStore.AspireStorePathKeyName]; 250throw new InvalidOperationException($"Could not determine an appropriate location for local storage. Set the {AspireStore.AspireStorePathKeyName} setting to a folder where the App Host content should be stored.");