Skip to content

Commit

Permalink
Merge pull request #1845 from dotnet/merges/release/2.1-to-master-201…
Browse files Browse the repository at this point in the history
…80108-080042

Merge release/2.1 to master
  • Loading branch information
VSadov authored Jan 8, 2018
2 parents cb4cf79 + e8d5423 commit 4fc6f5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<MicrosoftBuildFrameworkVersion>15.4.8</MicrosoftBuildFrameworkVersion>
<MicrosoftBuildUtilitiesCoreVersion>15.4.8</MicrosoftBuildUtilitiesCoreVersion>
<MicrosoftExtensionsDependencyModelVersion>2.0.0</MicrosoftExtensionsDependencyModelVersion>
<NETStandardLibraryNETFrameworkVersion>2.0.1-servicing-25908-02</NETStandardLibraryNETFrameworkVersion>
<NETStandardLibraryNETFrameworkVersion>2.0.1-servicing-26011-01</NETStandardLibraryNETFrameworkVersion>
<NewtonsoftJsonVersion>9.0.1</NewtonsoftJsonVersion>
<NuGetBuildTasksPackVersion>4.6.0-rtm-4782</NuGetBuildTasksPackVersion>
<NuGetPackagingVersion>$(NuGetBuildTasksPackVersion)</NuGetPackagingVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ public void It_builds_a_net471_app_referencing_netstandard20()
$"{testProject.Name}.pdb",
$"{netStandardProject.Name}.dll",
$"{netStandardProject.Name}.pdb",
$"{testProject.Name}.exe.config", // We have now added binding redirects so we should expect a config flag to be dropped to the output directory.
}.Concat(net471Shims));
}

Expand Down Expand Up @@ -213,6 +214,7 @@ public void It_includes_shims_when_net471_app_references_netstandard16()
$"{testProject.Name}.pdb",
$"{netStandardProject.Name}.dll",
$"{netStandardProject.Name}.pdb",
$"{testProject.Name}.exe.config", // We have now added binding redirects so we should expect a config flag to be dropped to the output directory.
"System.Diagnostics.DiagnosticSource.dll" // This is an implementation dependency of the System.Net.Http package, which won't get conflict resolved out
}.Concat(net471Shims));
}
Expand Down Expand Up @@ -309,6 +311,7 @@ public void It_contains_shims_if_override_property_is_set()
outputDirectory.Should().OnlyHaveFiles(new[] {
$"{testProject.Name}.exe",
$"{testProject.Name}.pdb",
$"{testProject.Name}.exe.config", // We have now added binding redirects so we should expect a config flag to be dropped to the output directory.
}.Concat(net471Shims));
}

Expand Down

0 comments on commit 4fc6f5c

Please sign in to comment.