dotnet-installer/src/Microsoft.DotNet.ProjectModel/ErrorCodes.DotNet.cs
Eric Erhardt 652d0541ef dotnet test and publish failing badly when the project isn't restored.
Fixing this by checking for diagnostic errors before continuing.

Fix #2692
Fix #2942
2016-05-11 10:43:58 -05:00

29 lines
1.1 KiB
C#

// 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.
namespace Microsoft.DotNet.ProjectModel
{
public static partial class ErrorCodes
{
// Target framework not installed
public static readonly string DOTNET1011 = nameof(DOTNET1011);
// Reference assemblies location not specified
public static readonly string DOTNET1012 = nameof(DOTNET1012);
// Multiple libraries marked as "platform"
public static readonly string DOTNET1013 = nameof(DOTNET1013);
// Failed to read lock file
public static readonly string DOTNET1014 = nameof(DOTNET1014);
// 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);
// Project file does not exist '{0}'.
public static readonly string DOTNET1017 = nameof(DOTNET1017);
}
}