aspnetcore/test/WebSites/PrecompilationWebSite/Views/ViewsConsumingCompilationOp.../Index.cshtml

10 lines
258 B
Plaintext

@{
string message =
#if ASPNET50
"Value set inside ASPNET50 " + GetType().Assembly.FullName;
#elif ASPNETCORE50
"Value set inside ASPNETCORE50 " + System.Reflection.IntrospectionExtensions.GetTypeInfo(GetType()).Assembly.FullName;
#endif
}
@message