-
Notifications
You must be signed in to change notification settings - Fork 2
Add net10.0, update packages #177
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ecfe7b7
Add dotnet 10 and fix warnings
michal12334 c18358b
Bump dependencies
michal12334 d66b5ae
Fix formatting
michal12334 5c9d47c
Remove dotnet 10 if it is not available in example projects
michal12334 5aae3a3
Reverse bumping msbuild and suppress nuget audit
michal12334 7ff3014
Update changelog
michal12334 8fcedb6
Add changelog links
michal12334 4d1c3ec
Adjust changelog to v4.0.0 release
michal12334 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,12 +11,18 @@ | |
| <ExtsVer>9.0.0</ExtsVer> | ||
| <LncdCaVer>8.1.2496</LncdCaVer> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(TargetFramework)' == 'net10.0'"> | ||
| <MsbVer>18.0.2</MsbVer> | ||
| <CscVer>5.0.0-2.final</CscVer> | ||
| <ExtsVer>10.0.0</ExtsVer> | ||
| <LncdCaVer>9.0.2703</LncdCaVer> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <PackageReference Update="Google.Protobuf" Version="3.31.0" /> | ||
| <PackageReference Update="Grpc.Tools" Version="2.72.0" /> | ||
| <PackageReference Update="Google.Protobuf" Version="3.33.0" /> | ||
| <PackageReference Update="Grpc.Tools" Version="2.76.0" /> | ||
| <PackageReference Update="CommandLineParser" Version="2.9.1" /> | ||
| <PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" /> | ||
| <PackageReference Update="Microsoft.Build.Locator" Version="1.9.1" /> | ||
| <PackageReference Update="Microsoft.Build.Locator" Version="1.10.12" /> | ||
| <PackageReference Update="Microsoft.Build" Version="$(MsbVer)" /> | ||
| <PackageReference Update="Microsoft.Build.Framework" Version="$(MsbVer)" /> | ||
| <PackageReference Update="Microsoft.Build.Tasks.Core" Version="$(MsbVer)" /> | ||
|
|
@@ -26,12 +32,12 @@ | |
| <PackageReference Update="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="$(CscVer)" /> | ||
| <PackageReference Update="Microsoft.Extensions.DependencyModel" Version="$(ExtsVer)" /> | ||
| <PackageReference Update="Microsoft.Extensions.FileSystemGlobbing" Version="$(ExtsVer)" /> | ||
| <PackageReference Update="System.Collections.Immutable" Version="9.0.0" /> | ||
| <PackageReference Update="System.Collections.Immutable" Version="10.0.0" /> | ||
| <PackageReference Update="System.Reflection.MetadataLoadContext" Version="$(ExtsVer)" /> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But this, I think, should be bumpable to |
||
| <PackageReference Include="LeanCode.CodeAnalysis" Version="$(LncdCaVer)" PrivateAssets="all" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.13.0" /> | ||
| <PackageReference Update="Microsoft.NET.Test.Sdk" Version="18.0.1" /> | ||
| <PackageReference Update="xunit" Version="2.9.3" /> | ||
| <PackageReference Update="xunit.analyzers" Version="1.21.0" /> | ||
| <PackageReference Update="xunit.runner.visualstudio" Version="3.1.0" /> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
| <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "sdk": { | ||
| "version": "9.0.100", | ||
| "version": "10.0.100", | ||
| "allowPrerelease": true, | ||
| "rollForward": "latestMajor" | ||
| } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/LeanCode.ContractsGenerator.Tests/LeanCode.ContractsGenerator.Tests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.