-
Notifications
You must be signed in to change notification settings - Fork 695
/
ProjectStyle.cs
43 lines (36 loc) · 1.1 KB
/
ProjectStyle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// 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 NuGet.ProjectModel
{
public enum ProjectStyle : ushort
{
/// <summary>
/// Unknown
/// </summary>
Unknown = 0,
/// <summary>
/// UAP style, project.lock.json is generated next to project.json
/// </summary>
ProjectJson = 1,
/// <summary>
/// MSBuild style, project.assets.json is generated in the RestoreOutputPath folder
/// </summary>
PackageReference = 2,
/// <summary>
/// DotnetCliToolReference "project"
/// </summary>
DotnetCliTool = 3,
/// <summary>
/// Non-MSBuild project with no project dependencies.
/// </summary>
Standalone = 4,
/// <summary>
/// Packages.config project
/// </summary>
PackagesConfig = 5,
/// <summary>
/// DotnetToolReference project
/// </summary>
DotnetToolReference = 6
}
}