You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I want to limit to a specific major version, I'd like a way to prevent out of range updates. For example, say I am not ready for v4 of the AWSSDK but I still want the v3 updates as both are supported right now.
If I specify <PackageReference Include="AWSSDK.S3" Version="[3.0.17.3,4)" /> then I would want the latest to show the latest 3.x.
Similarly, I'd expect <PackageReference Include="AWSSDK.S3" Version="3.*" /> to do the same.
If I want to limit to a specific major version, I'd like a way to prevent out of range updates. For example, say I am not ready for v4 of the AWSSDK but I still want the v3 updates as both are supported right now.
If I specify
<PackageReference Include="AWSSDK.S3" Version="[3.0.17.3,4)" />then I would want the latest to show the latest 3.x.Similarly, I'd expect
<PackageReference Include="AWSSDK.S3" Version="3.*" />to do the same.