8 references to SpaStaticFilesOptions
Microsoft.AspNetCore.SpaServices.Extensions (7)
StaticFiles\DefaultSpaStaticFileProvider.cs (2)
12/// physical files at a location configured using <see cref="SpaStaticFilesOptions"/>. 20SpaStaticFilesOptions options)
StaticFiles\SpaStaticFilesExtensions.cs (5)
25Action<SpaStaticFilesOptions>? configuration = null) 30var optionsProvider = serviceProvider.GetService<IOptions<SpaStaticFilesOptions>>()!; 31var options = optionsProvider.Value; 38throw new InvalidOperationException($"No {nameof(SpaStaticFilesOptions.RootPath)} " + 39$"was set on the {nameof(SpaStaticFilesOptions)}.");
Microsoft.AspNetCore.SpaServices.Extensions.Tests (1)
SpaServicesExtensionsTests.cs (1)
56private IServiceProvider GetServiceProvider(Action<SpaStaticFilesOptions> configuration = null)