Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[msbuild] Use exact version of XVS' packages. #20043

Merged
merged 2 commits into from
Feb 7, 2024
Merged
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
15 changes: 13 additions & 2 deletions msbuild/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MessagingVersion>1.13.8</MessagingVersion>
<HotRestartVersion>1.1.7</HotRestartVersion>
<!--

Some feeds have testing versions of the Messaging and HotRestart
packages with versions 99.*. This means that we'll want the exact
version of the packages below, not the specified version or any
other later version, because if the requested version doesn't
exist, we'll get the testing version and things break in
interesting ways. So in order to get the exact version, they're
enclosed in brackets.

-->
<MessagingVersion>[1.13.8]</MessagingVersion>
<HotRestartVersion>[1.1.7]</HotRestartVersion>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)../Directory.Build.props" />
</Project>
Loading