| File: Metadata.cs | Web Access |
| Project: src\arcade\src\Microsoft.DotNet.Build.Tasks.Workloads\src\Microsoft.DotNet.Build.Tasks.Workloads.csproj (Microsoft.DotNet.Build.Tasks.Workloads) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.DotNet.Build.Tasks.Workloads { /// <summary> /// Metadata names for MSBuild ITaskItem. /// </summary> internal static class Metadata { public static readonly string AliasTo = nameof(AliasTo); public static readonly string Category = nameof(Category); public static readonly string Chip = nameof(Chip); public static readonly string Description = nameof(Description); public static readonly string Filename = nameof(Filename); public static readonly string FullPath = nameof(FullPath); public static readonly string IsPreview = nameof(IsPreview); public static readonly string JsonProperties = nameof(JsonProperties); /// <summary> /// Metadata describing the native machine architecture of an installation /// package for VS. /// </summary> public static readonly string MachineArch = nameof(MachineArch); public static readonly string MsiVersion = nameof(MsiVersion); /// <summary> /// Metadata describing the platform of the MSI itself. /// </summary> public static readonly string Platform = nameof(Platform); public static readonly string RelativeDir = nameof(RelativeDir); public static readonly string Replacement = nameof(Replacement); public static readonly string PackageProject = nameof(PackageProject); public static readonly string PackageType = nameof(PackageType); public static readonly string ProductArch = nameof(ProductArch); public static readonly string SdkFeatureBand = nameof(SdkFeatureBand); public static readonly string ShortName = nameof(ShortName); public static readonly string SourcePackage = nameof(SourcePackage); public static readonly string SourcePath = nameof(SourcePath); public static readonly string SwixPackageId = nameof(SwixPackageId); public static readonly string SwixProject = nameof(SwixProject); /// <summary> /// The file system path of the generated wixpack archive used for signing. /// </summary> public static readonly string WixPack = nameof(WixPack); /// <summary> /// Metadata describing whether the VS authoring supports the machineArch SWIX property. /// </summary> public static readonly string SupportsMachineArch = nameof(SupportsMachineArch); /// <summary> /// Boolean value indicating that a new component should be advertised in VS when performing /// an update. /// </summary> public static readonly string AdvertisePackage = nameof(AdvertisePackage); public static readonly string Title = nameof(Title); public static readonly string Version = nameof(Version); } }