deps: Update package dependencies #2750
Merged
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.
This PR update package dependencies to latest versions.
How to confirms outdated packages
Run following command.
List of updated packages
FSharp.Core
4.6.0
9.0.300
Iced
1.17.0
1.21.0
JetBrains.Profiler.SelfApi
2.5.11
2.5.13
Microsoft.CodeAnalysis.CSharp
4.12.0
4.14.0
Microsoft.Diagnostics.Runtime
1.1.126102
3.1.512801
Microsoft.Diagnostics.Tracing.TraceEvent
3.1.8
3.1.21
Microsoft.NETCore.Platforms
6.0.0
7.0.4
Microsoft.NETFramework.ReferenceAssemblies
1.0.2
1.0.3
Microsoft.NET.Test.Sdk
17.7.2
[17.13.0]
Microsoft.VisualStudio.DiagnosticsHub.BenchmarkDotNetDiagnosers
17.13.35606.1
18.0.36127.1
Newtonsoft.Json
13.0.1
[13.0.1]
ScottPlot
5.0.54
5.0.55
System.Configuration.ConfigurationManager
4.5.0
9.0.5
System.Drawing.Common
4.7.2
9.0.5
System.Management
6.0.0
9.0.5
System.Memory
4.5.5
4.6.3
System.Runtime.CompilerServices.Unsafe
6.0.0
6.1.2
System.Threading.Tasks.Extensions
4.5.4
4.6.3
System.ValueType
4.5.0
4.6.1
Verify.Xunit
20.8.2
30.3.1
xunit
2.9.2
2.9.3
xunit.runner.visualstudio
2.4.1
[2.8.2]
Note
BenchmarkDotNet.IntegrationTests.ManualRunning.MultipleFrameworks
project contains legacy targets (.NET461
andnetcoreapp2.0
) So it need to usexunit.runner.visualstudio
v2.4.1 that compatible these frameworks.Microsoft.NET.Test.Sdk
14.0.0 or later depends on NewtonsoftJson13.0.3
. So it can't update versionsSystem.Numerics.Vectors
fornetstandard2.0
build need to reference4.5.0
version (that support net461).Other changes
1.
BenchmarkDotNet.Samples.csproj
IntroNativeMemory.cs
Add custom benchmark filter (
WindowsOnlyAttribute
) to exclude benchmarks that not works on non-Windows OS.(Because
System.Drawing.Common
is not supported .NET 6.0 or later)IntroNuGet.cs
Modify benchmarks to use Newtonsoft.Json
13.0.1
as baseline package.And add
WithCustomBuildConfiguration
settings. (It's required when targeting multiple NuGet versions)2.
BenchmarkDotNet.IntegrationTests.ManualRunning.MultipleFrameworks.csproj
NU1901
/NU1902
/NU1904
.3. Remove
[UsesVerify]
attributesThis attribute is removed on latest
xUnit.Verify
package.Additional manual tests
IntroNuGet
/IntroVisualStudioProfiler
benchmark behaviorsBenchmarkDotNet.IntegrationTests.ManualRunning
tests behaviors. (Blocked by Some of the tests defined in theBenchmarkDotNet.IntegrationTests.ManualRunning
project failed to run #2751)BenchmarkDotNet.IntegrationTests.ManualRunning.MultipleFrameworks
tests behaviors.