File tree Expand file tree Collapse file tree 5 files changed +13
-9
lines changed
ILCompiler.Reflection.ReadyToRun.Experimental
Microsoft.CrossOsDiag.Private.CoreCLR Expand file tree Collapse file tree 5 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 266266 <!-- Indicates this is not an officially supported release. Release branches should set this to false. -->
267267 <!-- Keep it in sync with PRERELEASE in eng/native/configureplatform.cmake -->
268268 <IsPrerelease >true</IsPrerelease >
269- <IsExperimentalAssembly >$(MSBuildProjectName.Contains('Experimental'))</IsExperimentalAssembly >
270269 <IsPrivateAssembly >$(MSBuildProjectName.Contains('Private'))</IsPrivateAssembly >
271- <!-- Experimental packages should not be stable -->
272- <SuppressFinalPackageVersion Condition =" '$(SuppressFinalPackageVersion)' == '' and ($(IsExperimentalAssembly) or $(IsPrivateAssembly))" >true</SuppressFinalPackageVersion >
273- <IsShippingAssembly Condition =" $(IsExperimentalAssembly)" >false</IsShippingAssembly >
270+ <!-- Private packages should not be stable -->
271+ <SuppressFinalPackageVersion Condition =" '$(SuppressFinalPackageVersion)' == '' and $(IsPrivateAssembly)" >true</SuppressFinalPackageVersion >
274272 <!-- We don't want Private packages to be shipped to NuGet.org -->
275- <IsShippingPackage Condition =" $(MSBuildProjectName.Contains('Private')) or $(IsExperimentalAssembly )" >false</IsShippingPackage >
273+ <IsShippingPackage Condition =" $(IsPrivateAssembly )" >false</IsShippingPackage >
276274 <PlaceholderFile >$(RepositoryEngineeringDir)_._</PlaceholderFile >
277275 </PropertyGroup >
278276
Original file line number Diff line number Diff line change 1616
1717 <!-- coreclr doesn't currently use the index so don't force it to be in sync -->
1818 <SkipIndexCheck >true</SkipIndexCheck >
19-
20- <!-- Central place to set the versions of all nuget packages produced in the repo -->
21- <PackageVersion Condition =" '$(PackageVersion)' == ''" >7.0.0</PackageVersion >
22- <StableVersion Condition =" '$(StabilizePackageVersion)' == 'true' and '$(StableVersion)' == ''" >$(PackageVersion)</StableVersion >
2319 </PropertyGroup >
2420
2521 <ItemGroup >
Original file line number Diff line number Diff line change 11<Project >
22 <Import Project =" ..\Directory.Build.targets" />
3+
4+ <PropertyGroup >
5+ <!-- Central place to set the versions of all nuget packages produced in the repo -->
6+ <PackageVersion Condition =" '$(PackageVersion)' == ''" >$(ProductVersion)</PackageVersion >
7+ <StableVersion Condition =" '$(StabilizePackageVersion)' == 'true' and '$(StableVersion)' == '' and '$(PreReleaseVersionLabel)' != 'servicing'" >$(PackageVersion)</StableVersion >
8+ <StableVersion Condition =" '$(IsShippingPackage)' != 'true' and '$(MSBuildProjectExtension)' == '.pkgproj'" ></StableVersion >
9+ </PropertyGroup >
10+
311 <Import Project =" $(NuGetPackageRoot)\microsoft.dotnet.build.tasks.packaging\$(MicrosoftDotNetBuildTasksPackagingVersion)\build\Microsoft.DotNet.Build.Tasks.Packaging.targets" />
412
513 <!--
Original file line number Diff line number Diff line change 22 <Import Project =" $([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
33
44 <PropertyGroup >
5+ <IsShipping >false</IsShipping >
56 <PackageDescription >This package provides a low-level ReadyToRun file format decoder. This package is experimental.</PackageDescription >
67 </PropertyGroup >
78
Original file line number Diff line number Diff line change 11<Project DefaultTargets =" Build" >
22 <Import Project =" $([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
33 <PropertyGroup >
4+ <IsShipping >false</IsShipping >
45 <CreatePackedPackage >false</CreatePackedPackage >
56 <PackageDescription >Private transport package for .NET Core cross OS diagnostic tooling.</PackageDescription >
67 </PropertyGroup >
You can’t perform that action at this time.
0 commit comments