29 writes to RelativePath
Microsoft.AspNetCore.Identity.UI (2)
IdentityBuilderUIExtensions.cs (2)
129descriptor.RelativePath = descriptor.RelativePath.Replace("V4/", ""); 141descriptor.RelativePath = descriptor.RelativePath.Replace("V5/", "");
Microsoft.AspNetCore.Mvc.Razor (3)
Compilation\CompiledViewDescriptor.cs (2)
30RelativePath = ViewPath.NormalizePath(item.Identifier); 65RelativePath = ViewPath.NormalizePath(item?.Identifier ?? attribute.Path);
Compilation\DefaultViewCompiler.cs (1)
113RelativePath = normalizedPath,
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (2)
RuntimeViewCompiler.cs (2)
230RelativePath = precompiledView.RelativePath, 258RelativePath = normalizedPath,
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.Test (13)
RuntimeViewCompilerTest.cs (13)
195RelativePath = path, 221RelativePath = path, 241RelativePath = path, 263RelativePath = path, 301RelativePath = path, 336RelativePath = path, 370RelativePath = path, 398RelativePath = path, 428RelativePath = path, 465RelativePath = path, 501RelativePath = path, 541RelativePath = path, 876RelativePath = path,
Microsoft.AspNetCore.Mvc.Razor.Test (9)
Compilation\DefaultRazorPageFactoryProviderTest.cs (3)
24RelativePath = path, 54RelativePath = relativePath, 80RelativePath = relativePath,
Compilation\DefaultViewCompilerTest.cs (5)
33RelativePath = path, 57RelativePath = path, 75RelativePath = path, 93RelativePath = path, 108var hotReloaded = new CompiledViewDescriptor { RelativePath = path };
RazorViewEngineTest.cs (1)
2046RelativePath = path,
15 references to RelativePath
Microsoft.AspNetCore.Identity.UI (3)
IdentityBuilderUIExtensions.cs (3)
129descriptor.RelativePath = descriptor.RelativePath.Replace("V4/", ""); 141descriptor.RelativePath = descriptor.RelativePath.Replace("V5/", ""); 156private static bool IsIdentityUIView(CompiledViewDescriptor desc) => desc.RelativePath.StartsWith("/Areas/Identity", StringComparison.OrdinalIgnoreCase) &&
Microsoft.AspNetCore.Mvc.Razor (5)
Compilation\DefaultRazorPageFactoryProvider.cs (1)
49var propertyBindExpression = Expression.Bind(pathProperty, Expression.Constant(viewDescriptor.RelativePath));
Compilation\DefaultViewCompiler.cs (3)
58Log.ViewCompilerLocatedCompiledView(logger, compiledView.RelativePath); 60if (!compiledViews.ContainsKey(compiledView.RelativePath)) 64compiledViews.TryAdd(compiledView.RelativePath, Task.FromResult(compiledView));
RazorViewEngine.cs (1)
414GetViewStartPages(viewDescriptor!.RelativePath, expirationTokens) :
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (4)
RuntimeViewCompiler.cs (4)
69Log.ViewCompilerLocatedCompiledView(_logger, precompiledView.RelativePath); 71if (!_precompiledViews.ContainsKey(precompiledView.RelativePath)) 75_precompiledViews.Add(precompiledView.RelativePath, precompiledView); 230RelativePath = precompiledView.RelativePath,
Microsoft.AspNetCore.Mvc.RazorPages (3)
ApplicationModels\CompiledPageRouteModelProvider.cs (2)
57if (!visited.Add(viewDescriptor.RelativePath)) 98var relativePath = viewDescriptor.RelativePath;
Infrastructure\CompiledPageActionDescriptorProvider.cs (1)
63lookup.TryAdd(ViewPath.NormalizePath(viewDescriptor.RelativePath), viewDescriptor);