15 lines
560 B
C#
15 lines
560 B
C#
using Microsoft.DotNet.Cli.Build.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class HostArtifactNames
|
|
{
|
|
public static string DotnetHostBaseName => $"dotnet{Constants.ExeSuffix}";
|
|
public static string DotnetHostFxrBaseName => $"{Constants.DynamicLibPrefix}hostfxr{Constants.DynamicLibSuffix}";
|
|
public static string HostPolicyBaseName => $"{Constants.DynamicLibPrefix}hostpolicy{Constants.DynamicLibSuffix}";
|
|
}
|
|
}
|