Skip to content
Merged
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
6 changes: 3 additions & 3 deletions eng/BranchInfo.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
<IsStableProject Condition="'$(StableProjects.IndexOf($(_NormalizedStableProjectName), StringComparison.OrdinalIgnoreCase))' != '-1'">true</IsStableProject>
</PropertyGroup>
<PropertyGroup Condition="'$(IsStableProject)' == 'true'">
<MajorVersion>4</MajorVersion>
<MajorVersion>5</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>
<!-- Set baseline version for stable packages to check for API Compat -->
<PackageValidationBaselineVersion>3.0.0</PackageValidationBaselineVersion>
<PackageValidationBaselineVersion>$([MSBuild]::Subtract($(MajorVersion), 1)).0.0</PackageValidationBaselineVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(IsStableProject)' != 'true'">
<MajorVersion>0</MajorVersion>
<MinorVersion>22</MinorVersion>
<MinorVersion>23</MinorVersion>
Copy link
Member

Choose a reason for hiding this comment

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

23

can this get generated from year number? just thought :-)

Copy link
Member Author

Choose a reason for hiding this comment

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

No, but I could calculate it from the stable product version. That would be more refactoring than I wanted to do.

<PatchVersion>0</PatchVersion>
</PropertyGroup>
</Project>
1 change: 0 additions & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
https://github.com/dotnet/arcade/blob/c788ffa83b088cafe9dbffc1cbc8155ba88b2553/Documentation/CorePackages/Versioning.md#output
-->
<DotNetUseShippingVersions>true</DotNetUseShippingVersions>
<VersionPrefix>4.0.0</VersionPrefix>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<!-- .NET Runtime product dependencies -->
Expand Down
3 changes: 1 addition & 2 deletions src/Microsoft.ML.Tokenizers/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@

<PropertyGroup>
<MajorVersion>$([MSBuild]::Subtract($(MajorVersion), 3))</MajorVersion>
<!-- Blank version for now for API compat -->
<PackageValidationBaselineVersion></PackageValidationBaselineVersion>
<PackageValidationBaselineVersion>$([MSBuild]::Subtract($(MajorVersion), 1)).0.0</PackageValidationBaselineVersion>
</PropertyGroup>

</Project>
12 changes: 0 additions & 12 deletions src/Microsoft.ML/CompatibilitySuppressions.xml

This file was deleted.

Loading