2015-11-16 11:21:57 -08: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.
|
2015-10-28 02:21:00 -07:00
|
|
|
|
2015-11-27 16:19:54 -08:00
|
|
|
namespace Microsoft.DotNet.ProjectModel
|
2015-10-28 02:21:00 -07:00
|
|
|
{
|
|
|
|
public static partial class ErrorCodes
|
|
|
|
{
|
|
|
|
// Target framework not installed
|
|
|
|
public static readonly string DOTNET1011 = nameof(DOTNET1011);
|
2015-11-07 23:53:05 -08:00
|
|
|
|
|
|
|
// Reference assemblies location not specified
|
|
|
|
public static readonly string DOTNET1012 = nameof(DOTNET1012);
|
2016-03-17 11:56:57 -07:00
|
|
|
|
|
|
|
// Multiple libraries marked as "platform"
|
|
|
|
public static readonly string DOTNET1013 = nameof(DOTNET1013);
|
2016-03-30 14:51:43 -07:00
|
|
|
|
|
|
|
// Failed to read lock file
|
|
|
|
public static readonly string DOTNET1014 = nameof(DOTNET1014);
|
2016-04-11 19:25:28 -07:00
|
|
|
|
|
|
|
// The '{0}' option is deprecated. Use '{1}' instead.
|
|
|
|
public static readonly string DOTNET1015 = nameof(DOTNET1015);
|
|
|
|
|
|
|
|
// The '{0}' option in the root is deprecated. Use it in '{1}' instead.
|
|
|
|
public static readonly string DOTNET1016 = nameof(DOTNET1016);
|
2016-04-29 15:46:16 -05:00
|
|
|
|
|
|
|
// Project file does not exist '{0}'.
|
|
|
|
public static readonly string DOTNET1017 = nameof(DOTNET1017);
|
2015-10-28 02:21:00 -07:00
|
|
|
}
|
|
|
|
}
|