diff options
author | Gaurav Khanna <gkhanna@microsoft.com> | 2016-06-20 13:56:09 -0700 |
---|---|---|
committer | Gaurav Khanna <gkhanna@microsoft.com> | 2016-06-20 18:54:51 -0700 |
commit | af7598e06f0df2a2df4894bbdfb5eb36b9dabb0d (patch) | |
tree | d6e04a56646d3f0363ab04a7d6e14be00aa6c8f8 | |
parent | f5a854bd323e5e327ec1a011dc494d2abb1e7721 (diff) | |
download | coreclr-af7598e06f0df2a2df4894bbdfb5eb36b9dabb0d.tar.gz coreclr-af7598e06f0df2a2df4894bbdfb5eb36b9dabb0d.tar.bz2 coreclr-af7598e06f0df2a2df4894bbdfb5eb36b9dabb0d.zip |
Update Prerelease version to Beta and increment patch version.
4 files changed, 8 insertions, 14 deletions
@@ -138,7 +138,7 @@ <!-- Packaging properties --> <PropertyGroup> - <PreReleaseLabel>rc4</PreReleaseLabel> + <PreReleaseLabel>beta</PreReleaseLabel> <PackageDescriptionFile>$(SourceDir).nuget/descriptions.json</PackageDescriptionFile> <PackageLicenseFile>$(SourceDir).nuget/dotnet_library_license.txt</PackageLicenseFile> <PackageThirdPartyNoticesFile>$(SourceDir).nuget/ThirdPartyNotices.txt</PackageThirdPartyNoticesFile> @@ -151,8 +151,8 @@ <ProjectUrl>https://dot.net</ProjectUrl> - <!-- PreReleaseSuffix for TFS win8-arm CoreCLR package --> - <ExternalExpectedPrerelease>rc4-24220-00</ExternalExpectedPrerelease> + <!-- PreReleaseSuffix for packages published from closed build (e.g. CoreCLR for Arm32, APISet, etc) --> + <ExternalExpectedPrerelease>beta-24220-00</ExternalExpectedPrerelease> <!-- On Windows, MSbuild still runs against Desktop FX while it runs on .NET Core on non-Windows. this requires pulling in different packaging dependencies. diff --git a/src/.nuget/Microsoft.NETCore.ILAsm/Microsoft.NETCore.ILAsm.pkgproj b/src/.nuget/Microsoft.NETCore.ILAsm/Microsoft.NETCore.ILAsm.pkgproj index 8df90b1f05..8c8c301101 100644 --- a/src/.nuget/Microsoft.NETCore.ILAsm/Microsoft.NETCore.ILAsm.pkgproj +++ b/src/.nuget/Microsoft.NETCore.ILAsm/Microsoft.NETCore.ILAsm.pkgproj @@ -10,9 +10,7 @@ <IncludeRuntimeJson>true</IncludeRuntimeJson> </PropertyGroup> <ItemGroup> - <Dependency Include="Microsoft.NETCore.Runtime.CoreCLR"> - <Version>1.0.2$(VersionSuffix)</Version> - </Dependency> + <ProjectReference Include="..\Microsoft.NETCore.Runtime.CoreCLR\Microsoft.NETCore.Runtime.CoreCLR.pkgproj" /> <ProjectReference Include="win\Microsoft.NETCore.ILAsm.pkgproj"> <Platform>amd64</Platform> </ProjectReference> diff --git a/src/.nuget/Microsoft.NETCore.ILDAsm/Microsoft.NETCore.ILDAsm.pkgproj b/src/.nuget/Microsoft.NETCore.ILDAsm/Microsoft.NETCore.ILDAsm.pkgproj index d251a84e6d..58f1edf5fc 100644 --- a/src/.nuget/Microsoft.NETCore.ILDAsm/Microsoft.NETCore.ILDAsm.pkgproj +++ b/src/.nuget/Microsoft.NETCore.ILDAsm/Microsoft.NETCore.ILDAsm.pkgproj @@ -10,9 +10,7 @@ <IncludeRuntimeJson>true</IncludeRuntimeJson> </PropertyGroup> <ItemGroup> - <Dependency Include="Microsoft.NETCore.Runtime.CoreCLR"> - <Version>1.0.2$(VersionSuffix)</Version> - </Dependency> + <ProjectReference Include="..\Microsoft.NETCore.Runtime.CoreCLR\Microsoft.NETCore.Runtime.CoreCLR.pkgproj" /> <ProjectReference Include="win\Microsoft.NETCore.ILDAsm.pkgproj"> <Platform>amd64</Platform> </ProjectReference> diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/Microsoft.NETCore.Runtime.CoreCLR.pkgproj b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/Microsoft.NETCore.Runtime.CoreCLR.pkgproj index 00f824db31..53bfbba0ab 100644 --- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/Microsoft.NETCore.Runtime.CoreCLR.pkgproj +++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/Microsoft.NETCore.Runtime.CoreCLR.pkgproj @@ -13,16 +13,14 @@ <!-- Declare a runtime dependency on the win8-arm CoreCLR built using the TFS builds --> <RuntimeDependency Include="runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR"> <TargetRuntime>win8-arm</TargetRuntime> - <Version>1.0.2-$(ExternalExpectedPrerelease)</Version> + <Version>1.0.3-$(ExternalExpectedPrerelease)</Version> </RuntimeDependency> <!-- ApiSets are only applicable for Windows. Despite the unconditioned package dependency it is constrained by runtime IDs within it's own package --> <Dependency Include="Microsoft.NETCore.Windows.ApiSets"> - <Version>1.0.1-rc3-23915</Version> - </Dependency> - <Dependency Include="Microsoft.NETCore.Jit"> - <Version>1.0.2$(VersionSuffix)</Version> + <Version>1.0.2-$(ExternalExpectedPrerelease)</Version> </Dependency> + <ProjectReference Include="..\Microsoft.NETCore.Jit\Microsoft.NETCore.Jit.pkgproj" /> <ProjectReference Include="win\Microsoft.NETCore.Runtime.CoreCLR.pkgproj"> <Platform>amd64</Platform> </ProjectReference> |