-
Notifications
You must be signed in to change notification settings - Fork 341
Update framework version used for testing, and test matrix #4970
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
Changes from all commits
78f747a
f58fc5b
443a9f6
3d8fad7
828e724
7946687
82c90f7
77ef16c
f006239
332fdad
da97447
cbbc671
4192ce3
f1c77b5
1f3b26a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,38 +63,38 @@ | |
<FluentAssertionsVersion>6.11.0</FluentAssertionsVersion> | ||
<MoqVersion>4.16.1</MoqVersion> | ||
<!-- For coverage use our own package on latest stable --> | ||
<MicrosoftCodeCoverageVersion>17.4.1</MicrosoftCodeCoverageVersion> | ||
<MicrosoftCodeCoverageVersion>17.9.0</MicrosoftCodeCoverageVersion> | ||
<!-- These versions are used for running unit tests, and running acceptance tests. They are also used as the default version for projects | ||
in TestAssets.sln to allow running and debugging tests in that solution directly in VS without having to run them via AcceptanceTests. --> | ||
<MSTestTestFrameworkVersion>2.3.0-preview-20220711-02</MSTestTestFrameworkVersion> | ||
<MSTestTestAdapterVersion>2.3.0-preview-20220711-02</MSTestTestAdapterVersion> | ||
<MSTestTestFrameworkVersion>3.3.1</MSTestTestFrameworkVersion> | ||
<MSTestTestAdapterVersion>3.3.1</MSTestTestAdapterVersion> | ||
<MSTestAssertExtensionVersion>1.0.3-preview</MSTestAssertExtensionVersion> | ||
<XUnitFrameworkVersion>2.3.1</XUnitFrameworkVersion> | ||
<XUnitAdapterVersion>2.3.1</XUnitAdapterVersion> | ||
<XUnitConsoleRunnerVersion>2.3.1</XUnitConsoleRunnerVersion> | ||
<NUnit3FrameworkVersion>3.10.1</NUnit3FrameworkVersion> | ||
<NUnit3AdapterVersion>3.11.0</NUnit3AdapterVersion> | ||
<NUnitConsoleRunnerVersion>3.8.0</NUnitConsoleRunnerVersion> | ||
<XUnitFrameworkVersion>2.4.2</XUnitFrameworkVersion> | ||
<XUnitAdapterVersion>2.4.5</XUnitAdapterVersion> | ||
<XUnitConsoleRunnerVersion>2.4.2</XUnitConsoleRunnerVersion> | ||
<NUnit3FrameworkVersion>3.14.0</NUnit3FrameworkVersion> | ||
<NUnit3AdapterVersion>3.17.0</NUnit3AdapterVersion> | ||
<NUnitConsoleRunnerVersion>3.16.3</NUnitConsoleRunnerVersion> | ||
<!-- | ||
Versions that are used when building projects from TestAssets.sln for compatibility tests. See Invoke-TestAssetsBuild in scripts/build.ps1. | ||
Exact versions are used to avoid Nuget substituting them by closest match, if we make a typo. | ||
These versions need to be "statically" readable because we read this file as xml in our build and tests. | ||
--> | ||
<!-- <MSTestFrameworkLatestVersion></MSTestFrameworkLatestVersion> is not here, because we don't build MSTest locally, so we don't have access to the latest version. --> | ||
<MSTestFrameworkLatestPreviewVersion>[2.3.0-preview-20220613-02]</MSTestFrameworkLatestPreviewVersion> | ||
<MSTestFrameworkLatestStableVersion>[2.2.10]</MSTestFrameworkLatestStableVersion> | ||
<MSTestFrameworkRecentStableVersion>[2.2.9]</MSTestFrameworkRecentStableVersion> | ||
<MSTestFrameworkMostDownloadedVersion>[2.1.0]</MSTestFrameworkMostDownloadedVersion> | ||
<MSTestFrameworkPreviousStableVersion>[2.1.0]</MSTestFrameworkPreviousStableVersion> | ||
<MSTestFrameworkLatestPreviewVersion>[3.3.1]</MSTestFrameworkLatestPreviewVersion> | ||
<MSTestFrameworkLatestStableVersion>[3.3.1]</MSTestFrameworkLatestStableVersion> | ||
<MSTestFrameworkRecentStableVersion>[3.2.2]</MSTestFrameworkRecentStableVersion> | ||
<MSTestFrameworkMostDownloadedVersion>[2.2.10]</MSTestFrameworkMostDownloadedVersion> | ||
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. To be correct semantically this should be 1.3.2 according to nuget.org ;) 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. True. 🙂 I was also looking at this version. I chose 2.2.10 because it has more downloads over shorter period of time. |
||
<MSTestFrameworkPreviousStableVersion>[2.2.10]</MSTestFrameworkPreviousStableVersion> | ||
<MSTestFrameworkLegacyStableVersion>[1.4.0]</MSTestFrameworkLegacyStableVersion> | ||
<!-- Versions that are used to restore previous versions of console, translation layer, and test.sdk for compatibility tests. | ||
See Invoke-TestAssetsBuild in scripts/build.ps1. Exact versions are used to avoid Nuget substituting them by closest match, if we make a typo. | ||
These versions need to be "statically" readable because we read this file as xml in our build and tests. --> | ||
<!-- <VSTestConsoleLatestVersion></VSTestConsoleLatestVersion> is not here, NETTestSdkVersion is used instead, because that is the version of the locally built latest package. --> | ||
<VSTestConsoleLatestPreviewVersion>[17.2.0-preview-20220401-08]</VSTestConsoleLatestPreviewVersion> | ||
<VSTestConsoleLatestStableVersion>[17.2.0]</VSTestConsoleLatestStableVersion> | ||
<VSTestConsoleRecentStableVersion>[17.1.0]</VSTestConsoleRecentStableVersion> | ||
<VSTestConsoleMostDownloadedVersion>[16.6.1]</VSTestConsoleMostDownloadedVersion> | ||
<VSTestConsoleLatestPreviewVersion>[17.10.0-release-24177-07]</VSTestConsoleLatestPreviewVersion> | ||
<VSTestConsoleLatestStableVersion>[17.9.0]</VSTestConsoleLatestStableVersion> | ||
<VSTestConsoleRecentStableVersion>[17.8.0]</VSTestConsoleRecentStableVersion> | ||
<VSTestConsoleMostDownloadedVersion>[17.6.2]</VSTestConsoleMostDownloadedVersion> | ||
<VSTestConsolePreviousStableVersion>[16.11.0]</VSTestConsolePreviousStableVersion> | ||
<VSTestConsoleLegacyStableVersion>[15.9.2]</VSTestConsoleLegacyStableVersion> | ||
<ILAsmPackageVersion>5.0.0</ILAsmPackageVersion> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// This file is used by Code Analysis to maintain SuppressMessage | ||
// attributes that are applied to this project. | ||
// Project-level suppressions either have no target or are given | ||
// a specific target and scoped to a namespace, type, member, etc. | ||
|
||
using System.Diagnostics.CodeAnalysis; | ||
|
||
[assembly: SuppressMessage("Reliability", "CA2022:Avoid inexact read with 'Stream.Read'", Justification = "<Pending>", Scope = "member", Target = "~M:Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Helpers.DotnetHostHelper.GetMuxerArchitectureByMachoOnMac(System.String)~System.Nullable{Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformArchitecture}")] |
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.
Probably needs to be some 3.4.0 preview version, right?