How are versions updated/managed in runtine/src/libraries? #94461
Unanswered
kikaragyozov
asked this question in
Q&A
Replies: 1 comment 2 replies
-
See also https://github.com/dotnet/runtime/blob/main/docs/project/library-servicing.md |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to learn how exactly versions are being released for
Microsoft.DependencyInjection
andMicrosoft.DependencyInjection.Abstractions
. Both nuget packages, like any other nuget package, is in its own solution and folder, referencing other projects outside their own solution, if required.Initially, I thought that the versions for both of these packages are always the same, i.e you bump up
Microsoft.DependencyInjection.Abstractions
if the need to bump upMicrosoft.DependencyInjection
arises, but then I noticed thatMicrosoft.DependencyInjection
has a version6.0.1
, which is not found inMicrosoft.DependencyInjection.Abstractions
. Okay, that means that's not what's happening here.How exactly are versions managed, as I'd like to create repo for managing the versions of 2 such NuGet packages - one for abstractions, and another for abstractions + concrete implementations, all in 1 solution? (Or 2, if 1 will do more harm than good.)
Beta Was this translation helpful? Give feedback.
All reactions