| File: LibraryIncludeFlag.cs | Web Access |
| Project: src\src\nuget-client\src\NuGet.Core\NuGet.LibraryModel\NuGet.LibraryModel.csproj (NuGet.LibraryModel) |
// 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. using System; namespace NuGet.LibraryModel { [Flags] public enum LibraryIncludeFlags : ushort { None = 0, Runtime = 1 << 0, Compile = 1 << 1, Build = 1 << 2, Native = 1 << 3, ContentFiles = 1 << 4, Analyzers = 1 << 5, BuildTransitive = 1 << 6, All = Analyzers | Build | Compile | ContentFiles | Native | Runtime | BuildTransitive } } |