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

10 lines
345 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";
2016-08-23 13:50:05 -07:00
}
}