Table of Contents

Class VsProjectItemTypes

Namespace
SunamoDevCode.MsBuild.Values
Assembly
SunamoDevCode.dll

Constants for MSBuild project item types used in csproj files.

public class VsProjectItemTypes
Inheritance
VsProjectItemTypes
Inherited Members
Extension Methods

Fields

Compile

Compile item type - source code files to compile.

public const string Compile = "Compile"

Field Value

string

Content

Content item type - files included as content in the output.

public const string Content = "Content"

Field Value

string

None

None item type - files included in the project but not compiled or copied.

public const string None = "None"

Field Value

string

PackageReference

PackageReference item type - NuGet package references.

public const string PackageReference = "PackageReference"

Field Value

string

ProjectReference

ProjectReference item type - project-to-project references.

public const string ProjectReference = "ProjectReference"

Field Value

string

Reference

Reference item type - assembly references.

public const string Reference = "Reference"

Field Value

string