Skip to content

Commit

Permalink
Update deps file mismatch error text
Browse files Browse the repository at this point in the history
  • Loading branch information
dsplaisted committed Apr 8, 2019
1 parent e9552e4 commit 98f314d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Tasks/Microsoft.NET.Build.Tasks/GenerateDepsFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ protected override void ExecuteCore()
if (oldJson != newJson)
{
string message = "Internal error: new deps file generation logic did not produce the same result as the old logic." + Environment.NewLine +
" Please file an issue for this at https://github.com/dotnet/sdk" + Environment.NewLine +
" You can work around this by setting the DepsFileGenerationMode MSBuild property to 'old'" + Environment.NewLine +
" Please file an issue for this at https://github.com/dotnet/sdk and include the following two files: " + Environment.NewLine +
" Deps file from old logic: " + DepsFilePath + Environment.NewLine +
" Deps file from new logic: " + newDepsFilePath + Environment.NewLine;
" Deps file from new logic: " + newDepsFilePath + Environment.NewLine +
" You can work around this by setting the DepsFileGenerationMode MSBuild property to 'old'";

// This is a temporary error message that we won't localize or assign an SDK
// error code to. So use the Task classes Log property instead of our wrapper
Expand Down

0 comments on commit 98f314d

Please sign in to comment.