dotnet-installer/src/Microsoft.DotNet.ProjectJsonMigration/ConstantPackageNames.cs

11 lines
419 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
2016-08-23 13:50:05 -07:00
namespace Microsoft.DotNet.ProjectJsonMigration
{
internal class ConstantPackageNames
2016-08-23 13:50:05 -07:00
{
public const string CSdkPackageName = "Microsoft.NET.Sdk";
public const string CWebSdkPackageName = "Microsoft.NET.Sdk.Web";
2016-08-23 13:50:05 -07:00
}
}