// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Razor.Language { /// /// Options for code generation in the . /// public sealed class RazorTemplateEngineOptions { /// /// Gets or sets the file name of the imports file (e.g. _ViewImports.cshtml). /// public string ImportsFileName { get; set; } /// /// Gets or sets the default set of imports. /// public RazorSourceDocument DefaultImports { get; set; } } }