-
Notifications
You must be signed in to change notification settings - Fork 388
use .NET 8.0 target framework for coverlet.core and remove Newtonsoft.Json #1733
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
Open
Bertk
wants to merge
15
commits into
coverlet-coverage:master
Choose a base branch
from
Bertk:sdk-8.0.x-requirement
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8ce0538
use .NET 8.0 assembies for coverlet.core and remove Newtonsoft.Json
Bertk cef7021
update .NET SDK 8.0.408
Bertk b67be9c
update package and framework versions
Bertk ed1a24c
Update Directory.Packages.props
Bertk 8632f77
incorporate review comments
Bertk 26cdf12
Update global.json
Bertk 9934cff
apply copilot comments
Bertk 68bd6e8
Update dotnet-tools.json
Bertk 1cc039f
Update project for .NET 8.0 and improve documentation
Bertk 009b7ac
Merge branch 'sdk-8.0.x-requirement' of https://github.com/Bertk/cove…
Bertk 9dc2408
define nuget package versions only in Directory.Packages.props
Bertk 72f4a71
update version of System.Security.AccessControl
Bertk 9a478f5
Disable Parallelization for Deterministic Build
Bertk 6ef6111
update _CoverletSdkMinVersionWithDependencyTarget and fix coverlet.in…
Bertk 8a5689e
fix CreateDeterministicTestPropsFile and use first PropertyGroup
Bertk 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.407" | ||
"version": "8.0.409" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,25 +1,31 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);IDE0057</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" VersionOverride="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyModel" VersionOverride="6.0.2" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" VersionOverride="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" VersionOverride="6.0.2" /> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyModel" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" /> | ||
<PackageReference Include="Mono.Cecil" /> | ||
<PackageReference Include="NuGet.Versioning" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="System.Text.Json" VersionOverride="6.0.11" /> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.0'"> | ||
<PackageReference Include="System.Reflection.Metadata" /> | ||
<PackageReference Include="System.Collections.Immutable" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Reflection.Metadata" VersionOverride="$(SystemReflectionMetadataVersion)" /> | ||
<PackageReference Include="System.Collections.Immutable" VersionOverride="$(SystemCollectionsImmutableVersion)" /> | ||
<PackageReference Include="System.Buffers" /> | ||
<PackageReference Include="System.Memory" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" /> | ||
</ItemGroup> | ||
|
||
</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
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.