7 writes to ContentRoots
Microsoft.AspNetCore.Hosting.Tests (7)
StaticWebAssets\ManifestStaticWebAssetsFileProviderTests.cs (7)
20manifest.ContentRoots = new[] { Path.GetDirectoryName(typeof(ManifestStaticWebAssetsFileProviderTest).Assembly.Location) }; 368manifest.ContentRoots = new[] { Path.Combine(AppContext.BaseDirectory, "testroot", "wwwroot") }; 509manifest.ContentRoots = new[] { AppContext.BaseDirectory }; 559manifest.ContentRoots = new[] { AppContext.BaseDirectory }; 616manifest.ContentRoots = new[] { Path.GetDirectoryName(typeof(ManifestStaticWebAssetsFileProviderTest).Assembly.Location) }; 653manifest.ContentRoots = new string[2] { 740manifest.ContentRoots = new[] { "Cero" };
3 references to ContentRoots
Microsoft.AspNetCore.Hosting (3)
src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (3)
27_fileProviders = new IFileProvider[manifest.ContentRoots.Length]; 29for (int i = 0; i < manifest.ContentRoots.Length; i++) 31_fileProviders[i] = fileProviderFactory(manifest.ContentRoots[i]);