19 references to NewProjectFileOptions
Microsoft.Build (19)
Construction\ProjectRootElement.cs (13)
189
private ProjectRootElement(ProjectRootElementCacheBase projectRootElementCache,
NewProjectFileOptions
projectFileOptions, bool isEphemeral)
199
private ProjectRootElement(ProjectRootElementCacheBase projectRootElementCache,
NewProjectFileOptions
projectFileOptions)
211
(projectFileOptions &
NewProjectFileOptions
.IncludeXmlDeclaration) != 0 ? EmptyProjectFileXmlDeclaration : string.Empty,
212
(projectFileOptions &
NewProjectFileOptions
.IncludeToolsVersion) != 0 ? EmptyProjectFileToolsVersion : string.Empty,
213
(projectFileOptions &
NewProjectFileOptions
.IncludeXmlNamespace) != 0 ? EmptyProjectFileXmlNamespace : string.Empty);
749
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified <see cref="
NewProjectFileOptions
"/>.
752
public static ProjectRootElement Create(
NewProjectFileOptions
projectFileOptions)
767
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified <see cref="ProjectCollection"/> and <see cref="
NewProjectFileOptions
"/>.
769
public static ProjectRootElement Create(ProjectCollection projectCollection,
NewProjectFileOptions
projectFileOptions)
786
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified path and <see cref="
NewProjectFileOptions
"/>.
789
public static ProjectRootElement Create(string path,
NewProjectFileOptions
newProjectFileOptions)
807
public static ProjectRootElement Create(string path, ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)
1745
internal static ProjectRootElement Create(ProjectRootElementCacheBase projectRootElementCache,
NewProjectFileOptions
projectFileOptions)
Definition\Project.cs (6)
87
internal const
NewProjectFileOptions
DefaultNewProjectTemplateOptions =
NewProjectFileOptions
.IncludeAllOptions;
139
public Project(
NewProjectFileOptions
newProjectFileOptions)
159
public Project(ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)
185
/// <param name="newProjectFileOptions">The <see cref="
NewProjectFileOptions
"/> to use for the new project.</param>
186
public Project(IDictionary<string, string> globalProperties, string toolsVersion, ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)