2016-09-01 11:08:34 -05:00
|
|
|
// 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
|
|
|
|
{
|
2016-10-27 18:46:43 -07:00
|
|
|
internal class ConstantPackageNames
|
2016-08-23 13:50:05 -07:00
|
|
|
{
|
2016-10-10 14:04:30 -05:00
|
|
|
public const string CSdkPackageName = "Microsoft.NET.Sdk";
|
2016-10-28 13:39:07 -07:00
|
|
|
public const string CWebSdkPackageName = "Microsoft.NET.Sdk.Web";
|
2016-08-23 13:50:05 -07:00
|
|
|
}
|
|
|
|
}
|