File: PackageCreation\Authoring\ManifestContentFiles.cs
Web Access
Project: src\src\nuget-client\src\NuGet.Core\NuGet.Packaging\NuGet.Packaging.csproj (NuGet.Packaging)
// 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.Packaging
{
    public class ManifestContentFiles
    {
        public required string Include { get; set; }

        public string? Exclude { get; set; }

        public string? BuildAction { get; set; }

        public string? CopyToOutput { get; set; }

        public string? Flatten { get; set; }
    }
}