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

11 lines
413 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 PackageConstants
2016-08-23 13:50:05 -07:00
{
public const string SdkPackageName = "Microsoft.NET.Sdk";
public const string WebSdkPackageName = "Microsoft.NET.Sdk.Web";
2016-08-23 13:50:05 -07:00
}
}