We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b1412 commit b15c3c2Copy full SHA for b15c3c2
docs/concepts/Package-Versioning.md
@@ -132,6 +132,9 @@ Avoid specifying an upper bound to version ranges to packages you don't own unle
132
Will resolve to the highest acceptable stable version.-->
133
<PackageReference Include="ExamplePackage" Version="6.*" />
134
135
+<!-- Accepts only version 6.1.0. -->
136
+<PackageReference Include="ExamplePackage" Version="[6.1.0]" />
137
+
138
<!-- Accepts any version above, but not including 4.1.3. Could be
139
used to guarantee a dependency with a specific bug fix.
140
Will resolve to the smallest acceptable stable version.-->
0 commit comments