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);
751
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified <see cref="
NewProjectFileOptions
"/>.
754
public static ProjectRootElement Create(
NewProjectFileOptions
projectFileOptions)
769
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified <see cref="ProjectCollection"/> and <see cref="
NewProjectFileOptions
"/>.
771
public static ProjectRootElement Create(ProjectCollection projectCollection,
NewProjectFileOptions
projectFileOptions)
788
/// Initialize an in-memory, empty ProjectRootElement instance that can be saved later using the specified path and <see cref="
NewProjectFileOptions
"/>.
791
public static ProjectRootElement Create(string path,
NewProjectFileOptions
newProjectFileOptions)
809
public static ProjectRootElement Create(string path, ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)
1747
internal static ProjectRootElement Create(ProjectRootElementCacheBase projectRootElementCache,
NewProjectFileOptions
projectFileOptions)
Definition\Project.cs (6)
75
internal const
NewProjectFileOptions
DefaultNewProjectTemplateOptions =
NewProjectFileOptions
.IncludeAllOptions;
127
public Project(
NewProjectFileOptions
newProjectFileOptions)
147
public Project(ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)
173
/// <param name="newProjectFileOptions">The <see cref="
NewProjectFileOptions
"/> to use for the new project.</param>
174
public Project(IDictionary<string, string> globalProperties, string toolsVersion, ProjectCollection projectCollection,
NewProjectFileOptions
newProjectFileOptions)