forked from dotnet/yarp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVersions.props
19 lines (19 loc) · 1022 Bytes
/
Versions.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>2.2.0</VersionPrefix>
<!--
For sorting purposes, it is very important there be a '.' between the word 'preview' and the preview number.
That ensures that if we get up to preview 10, it doesn't sort as between preview 1 and preview 2!
See https://semver.org/spec/v2.0.0.html for details.
-->
<PreReleaseVersionLabel>preview.1</PreReleaseVersionLabel>
<DotNetFinalVersionKind Condition="'$(PreReleaseVersionLabel)' == 'rtw'">release</DotNetFinalVersionKind>
</PropertyGroup>
<!--Package versions-->
<PropertyGroup>
<SystemCollectionsImmutableVersion>8.0.0</SystemCollectionsImmutableVersion>
<MicrosoftBclTimeProviderVersion>8.0.0</MicrosoftBclTimeProviderVersion>
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.24151.5</MicrosoftDotNetXUnitExtensionsPackageVersion>
</PropertyGroup>
</Project>