Skip to content
Open

V11 #558

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eng/Publishing.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<!-- This avoids creating VS.*.symbols.nupkg packages that are identical to the original package. -->
<AutoGenerateSymbolPackages>false</AutoGenerateSymbolPackages>
<ProducesDotNetReleaseShippingAssets>true</ProducesDotNetReleaseShippingAssets>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will affect all packages being produced. Is it possible to fine-tune the list of what gets published to nuget.org?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we just turn off "shipping" for the rest or do we want shipping packages that don't go to nuget.

</PropertyGroup>

<!-- Update all Artifacts with Kind=Package to have additional metadata item Category="ToolingPackage".
Expand Down
9 changes: 5 additions & 4 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
<Import Project="Version.Details.props" />

<PropertyGroup>
<MajorVersion>10</MajorVersion>
<MajorVersion>11</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionIteration>3</PreReleaseVersionIteration>
<!-- Allowed values: '', 'prerelease', 'release'. Set to 'release' when stabilizing. -->
<DotNetFinalVersionKind></DotNetFinalVersionKind>
<PreReleaseVersionIteration>5</PreReleaseVersionIteration>
<!-- Enable to remove prerelease label. -->
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@
<TargetFrameworks>$(NetCurrent);netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>

<MajorVersion>2</MajorVersion>
<MinorVersion>0</MinorVersion>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>

<!-- Always produce this package in the .NET unified product build so that it may flow to downstream consumers. -->
<IsPackable>true</IsPackable>
<IsShipping>true</IsShipping>
<IsShippingPackage>true</IsShippingPackage>
<PackageId>Microsoft.Deployment.DotNet.Releases</PackageId>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnableXlfLocalization>true</EnableXlfLocalization>
Expand Down