-
Notifications
You must be signed in to change notification settings - Fork 56
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
feat: Migrate to .Net Core 3.1 #328
feat: Migrate to .Net Core 3.1 #328
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Christian-Oleson
could you please adjust your commit messages and follow the contribution guide https://github.com/camunda-cloud/zeebe/blob/develop/CONTRIBUTING.md#commit-message-guidelines
@@ -13,7 +13,7 @@ | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="3.1.19" /> | |||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" /> | |||
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" /> | |||
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.19" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm why this was dropped to a lower version ? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There were two completely different versions of Microsoft.Extensions.Logging here. I also found a lower version in Client.IntegrationTests.csproj. We should avoid multiple versions, so this consolidates Client.IntegrationTests.csproj from 3.1.14 to 3.1.19 while consolidating the 5.x version to 3.1.19. I would suggest moving both projects to 5.x when you move to 5.x (or really .NET 6)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Christian-Oleson
could you please adjust your commit messages and follow the contribution guide https://github.com/camunda-cloud/zeebe/blob/develop/CONTRIBUTING.md#commit-message-guidelines
I think I fixed the commit message? Let me know if I'm misunderstanding anything.
feat: Migrate to .Net Core 3.1 from .NET Core 2.1
a37c632
to
660c328
Compare
…ate_To_Net_Core_3_1
Thanks @Christian-Oleson still the title of the commit (or subject however you want to call it) is wrong, but should be fine for now. just for the next time :)
|
closes #277