diff --git a/build/BuildDefaults.props b/build/BuildDefaults.props index 32ae1dfac..64eddcfd4 100644 --- a/build/BuildDefaults.props +++ b/build/BuildDefaults.props @@ -4,8 +4,7 @@ Debug true false - true - true + true true true diff --git a/build/BundledRuntimes.props b/build/BundledRuntimes.props index 9179f91da..56e0a9c11 100644 --- a/build/BundledRuntimes.props +++ b/build/BundledRuntimes.props @@ -1,23 +1,23 @@ - -portable - -portable + $(Rid) + $(ProductMonikerRid) - dotnet-host-$(ProductMonikerRid).$(SharedHostVersion)$(InstallerPortableSuffix)$(InstallerExtension) + dotnet-host-$(CoreSetupRid).$(SharedHostVersion)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedSharedHostInstallerFileName) - dotnet-hostfxr-$(ProductMonikerRid).$(HostFxrVersion)$(InstallerPortableSuffix)$(InstallerExtension) + dotnet-hostfxr-$(CoreSetupRid).$(HostFxrVersion)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedHostFxrInstallerFileName) - dotnet-sharedframework-$(ProductMonikerRid).$(SharedFrameworkVersion)$(InstallerPortableSuffix)$(InstallerExtension) + dotnet-sharedframework-$(CoreSetupRid).$(SharedFrameworkVersion)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedSharedFrameworkInstallerFileName) - $(ProductMonikerRid) + $(CoreSetupRid) linux-x64 - dotnet-$(SharedFrameworkRid).$(SharedFrameworkVersion)$(ArchivePortableSuffix)$(ArchiveExtension) + dotnet-$(SharedFrameworkRid).$(SharedFrameworkVersion)$(ArchiveExtension) diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props index dea32f77e..893cf307b 100644 --- a/build/DependencyVersions.props +++ b/build/DependencyVersions.props @@ -1,7 +1,7 @@ - 2.0.0-preview2-002093-00 + 2.0.0-preview2-25309-07 15.3.0-preview-000117-01 2.0.0-rc4-61325-08 2.0.0-preview2-20170506-1 @@ -14,8 +14,8 @@ 1.0.0-beta2-20170503-217 1.0.0-beta2-20170505-222 1.0.0-beta2-20170505-222 - 2.0.0-preview2-002093 - 2.0.0-preview2-002093 + 2.0.0-preview2-25309-07 + 2.0.0-preview2-25309-07 0.1.0-alpha-142 1.2.1-alpha-002130 2.0.0-preview1-92 diff --git a/test/dotnet-new.Tests/GivenThatIWantANewApp.cs b/test/dotnet-new.Tests/GivenThatIWantANewApp.cs index 5c120645e..31f271f50 100644 --- a/test/dotnet-new.Tests/GivenThatIWantANewApp.cs +++ b/test/dotnet-new.Tests/GivenThatIWantANewApp.cs @@ -118,7 +118,7 @@ namespace Microsoft.DotNet.New.Tests var context = reader.Read(stream); var dependency = context .RuntimeLibraries - .Single(library => library.Name == packageName); + .Single(library => string.Equals(library.Name, packageName, StringComparison.OrdinalIgnoreCase)); return dependency.Version; }