diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props
index 96bacec45..5e10f41d5 100644
--- a/build/DependencyVersions.props
+++ b/build/DependencyVersions.props
@@ -26,7 +26,7 @@
$(MicrosoftCodeAnalysisCSharpPackageVersion)
$(MicrosoftCodeAnalysisCSharpPackageVersion)
$(MicrosoftCodeAnalysisCSharpPackageVersion)
- 2.2.100-preview1-63215-01
+ 2.2.100-preview3-63322-01
$(MicrosoftNETSdkPackageVersion)
2.1.1
2.2.100-preview3-20180918-2041430
diff --git a/build/MSBuildExtensions.targets b/build/MSBuildExtensions.targets
index 1ab68623a..54bd45bfa 100644
--- a/build/MSBuildExtensions.targets
+++ b/build/MSBuildExtensions.targets
@@ -158,7 +158,7 @@
+ LatestVersion="2.1.5" />
+ LatestVersion="2.1.5"/>
+ LatestVersion="2.1.5"/>
-
@@ -122,15 +122,15 @@
Inputs="@(GenerateMSBuildExtensionsMsiInputs)"
Outputs="$(MSBuildExtensionsInstallerFile)">
-
@@ -144,21 +144,21 @@
$(SdkGenerateBundlePowershellScript)"
Outputs="$(CombinedFrameworkSdkHostInstallerFile)">
-
@@ -170,10 +170,10 @@
$(SdkGenerateNupkgPowershellScript)"
Outputs="$(SdkInstallerNupkgFile)">
-
@@ -185,10 +185,10 @@
$(SdkGenerateNupkgPowershellScript)"
Outputs="$(SdkMSBuildExtensionsNupkgFile);$(SdkMSBuildExtensionsSwrFile)">
-
-
$"netcoreapp{v[0]}")
- .Should().Contain(targetFramework, $"the {nameof(SupportedAspNetCoreAppVersions)} property should include the default version " +
- "of Microsoft.AspNetCore.App used by the templates created by \"dotnet new web\"");
-
- }
- }
-
- private NuGetVersion GetAspNetCoreAppVersion(LockFile lockFile, bool portable = false)
- {
- return lockFile?.Targets?.SingleOrDefault(t => portable || t.RuntimeIdentifier != null)
- ?.Libraries?.SingleOrDefault(l =>
- string.Compare(l.Name, "Microsoft.AspNetCore.App", StringComparison.CurrentCultureIgnoreCase) == 0)
- ?.Version;
- }
-
- public static string LatestSupportedAspNetCoreAppVersion = "2.2";
-
- public static IEnumerable