Skip to content
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

Remove dependency on Nuget.Frameworks #4693

Merged
merged 15 commits into from Sep 26, 2023

Conversation

nohwnd
Copy link
Member

@nohwnd nohwnd commented Sep 22, 2023

Remove dependency on Nuget.Frameworks by copying the relevant code into the repository and changing namespace. The Nuget.Frameworks types were not exposed in our public API directly, but we are relying on the functionality, to parse things like net5.0, net472, or any of similar framework shorthands. We also rely on all the frameworks not being explicitly stated, e.g. net11.0 or any such verison of .NET that does not exist yet.

Replace #2544

Fix #3154

The risk here is that someone is relying on us shipping Nuget.Frameworks into the bin, and not providing it themselves.

The newly added public api should not cause issues for the existing loggers because they ship together with vstest.console.

Version = "4.7.1.0",
ShortName = "net471",
},
[".NETFramework,Version=v4.7.2"] = new Framework
Copy link
Member Author

@nohwnd nohwnd Sep 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

4.8? 4.8.1, 4.8.2?

@nohwnd nohwnd marked this pull request as draft September 22, 2023 13:36
@@ -16,13 +16,13 @@ function Verify-Nuget-Packages {
$expectedNumOfFiles = @{
"Microsoft.CodeCoverage" = 59;
"Microsoft.NET.Test.Sdk" = 16;
"Microsoft.TestPlatform" = 607;
"Microsoft.TestPlatform" = 605;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$path = "S:\p\vstest3\artifacts\packages\Debug\Shipping"; (ls $path -re -fo | where { $_.FullName -notlike "*Symbols*" -and $_.Name -eq "Nuget.Frameworks.dll" }  | % fullName) -replace [regex]::escape($path)

\Microsoft.TestPlatform.17.8.0-dev\tools\net462\Common7\IDE\Extensions\TestPlatform\NuGet.Frameworks.dll
\Microsoft.TestPlatform.17.8.0-dev\tools\net462\Common7\IDE\Extensions\TestPlatform\TestHostNet\NuGet.Frameworks.dll

\Microsoft.TestPlatform.CLI.17.8.0-dev\contentFiles\any\netcoreapp3.1\NuGet.Frameworks.dll
\Microsoft.TestPlatform.CLI.17.8.0-dev\contentFiles\any\netcoreapp3.1\TestHostNetFramework\NuGet.Frameworks.dll

\Microsoft.TestPlatform.Portable.17.8.0-dev\tools\net462\NuGet.Frameworks.dll
\Microsoft.TestPlatform.Portable.17.8.0-dev\tools\netcoreapp3.1\NuGet.Frameworks.dll
\Microsoft.TestPlatform.Portable.17.8.0-dev\tools\netcoreapp3.1\TestHostNetFramework\NuGet.Frameworks.dll

which is count reduction by 2, 2 and 3 just like here.

@nohwnd nohwnd changed the title remove nuget frameworks Remove dependency on Nuget.Frameworks Sep 25, 2023
@@ -968,3 +968,6 @@ virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.ProtectedSetP
~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.SourceIncompatible.get -> string
Microsoft.VisualStudio.TestPlatform.ObjectModel.DirectoryBasedTestDiscovererAttribute
Microsoft.VisualStudio.TestPlatform.ObjectModel.DirectoryBasedTestDiscovererAttribute.DirectoryBasedTestDiscovererAttribute() -> void
Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.FrameworkName.get -> string!
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New public api.

@@ -224,7 +222,7 @@ public void Initialize(TestLoggerEvents events, Dictionary<string, string?> para
}

parameters.TryGetValue(DefaultLoggerParameterNames.TargetFramework, out _targetFramework);
_targetFramework = !_targetFramework.IsNullOrEmpty() ? NuGetFramework.Parse(_targetFramework).GetShortFolderName() : _targetFramework;
_targetFramework = Framework.FromString(_targetFramework)?.ShortName ?? _targetFramework;
Copy link
Member Author

@nohwnd nohwnd Sep 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This returns null when it gets null or whitespace. The original check was unnecessary.

@nohwnd nohwnd marked this pull request as ready for review September 25, 2023 18:37
{
// .NETPortable4.5 for example, is not a valid framework
// and this will throw.
shortName = nugetFramework.GetShortFolderName();
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This throws in some cases when the framework is invalid, parsing will return it as Unsupported, but for example if we construct Portable 4.5 and don't specify Profile, it will construct it as supported, but throw when we ask for short name. We use short name as folder for logs, which we figure out when we have a "valid" runtime identifier, so keeping this null should be okay, we check for it in all the places where we use it, and supply the original value.

@nohwnd nohwnd merged commit ec9a138 into microsoft:main Sep 26, 2023
6 checks passed
@nohwnd nohwnd deleted the remove-nuget.frameworks-try-2 branch September 26, 2023 07:44
ThorstenSauter pushed a commit to ThorstenSauter/NoPlan that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Microsoft.Identity.Web](https://togithub.com/AzureAD/microsoft-identity-web)
| `2.16.1` -> `2.17.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.Identity.Web/2.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.Identity.Web/2.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.Identity.Web/2.16.1/2.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.Identity.Web/2.16.1/2.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>AzureAD/microsoft-identity-web
(Microsoft.Identity.Web)</summary>

###
[`v2.17.0`](https://togithub.com/AzureAD/microsoft-identity-web/blob/HEAD/changelog.md#2170)

[Compare
Source](https://togithub.com/AzureAD/microsoft-identity-web/compare/2.16.1...2.17.0)

\=========

-   Updated to Microsoft.IdentityModel.\* 7.3.1 and MSAL.NET 4.59.0

##### New features

- Added support for Microsoft.NET.Sdk.Worker. See [Worker calling
APIs](https://togithub.com/AzureAD/microsoft-identity-web/wiki/worker%E2%80%90app%E2%80%90calling%E2%80%90downstream%E2%80%90apis)
- Added support for Managed identity when calling a downstream API on
behalf of the app. See [Calling APIs with Managed
Identity](https://togithub.com/AzureAD/microsoft-identity-web/wiki/calling-apis-with-managed-identity)
and [PR
2650](https://togithub.com/AzureAD/microsoft-identity-web/pull/2650).
For details see [PR
#&#8203;2645](https://togithub.com/AzureAD/microsoft-identity-web/issues/2645)

##### Bug fixes

- In OWIN applications, GetTokenForUserAsync now respects the
ClaimsPrincipal. See issue
[#&#8203;2629](https://togithub.com/AzureAD/microsoft-identity-web/issues/2629)
for details.
- After setting `AddTokenAcquisition(useSingleton:true)` to use token
acquisition as a singleton, if you use `.AddMicrosoftGraph` and/or
`.AddDownstreamApi` after this call,
the GraphServiceClient and IDownstreamApis are now registered as a
singleton service. For details see [PR
#&#8203;2645](https://togithub.com/AzureAD/microsoft-identity-web/issues/2645)
- Added check Against Injection Attacks. For details see [PR
2619](https://togithub.com/AzureAD/microsoft-identity-web/issues/2619)

##### Engineering excellence

- Added a benchmark running on PR merges, available from
<https://azuread.github.io/microsoft-identity-web/benchmarks> on GitHub
pages

</details>

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ThorstenSauter/NoPlan).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Testably/Testably.Abstractions that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Testably/Testably.Abstractions).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to apollographql/subgraph-csharp-hotchocolate-annotation that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/apollographql/subgraph-csharp-hotchocolate-annotation).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Testably/Testably.Architecture.Rules that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Testably/Testably.Architecture.Rules).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Testably/Testably.Abstractions.FluentAssertions that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Testably/Testably.Abstractions.FluentAssertions).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to bruxisma/atmosphere that referenced this pull request Feb 6, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/bruxisma/atmosphere).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to orso-co/Orso.Arpa.Api that referenced this pull request Feb 9, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,every
weekend,before 5am every weekday" in timezone Europe/Berlin, Automerge -
At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/orso-co/Orso.Arpa.Api).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
oguzhand95 pushed a commit to cerbos/cerbos-sdk-net that referenced this pull request Feb 12, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/cerbos/cerbos-sdk-net).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Oğuzhan Durgun <oguzhandurgun95@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
glennawatson pushed a commit to reactiveui/ReactiveUI that referenced this pull request Feb 16, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/reactiveui/ReactiveUI).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to smartive/cas-fee-adv-mumble-api that referenced this pull request Apr 23, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [Microsoft.NET.Test.Sdk](https://togithub.com/microsoft/vstest) |
`17.8.0` -> `17.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Microsoft.NET.Test.Sdk/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Microsoft.NET.Test.Sdk/17.8.0/17.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>microsoft/vstest (Microsoft.NET.Test.Sdk)</summary>

###
[`v17.9.0`](https://togithub.com/microsoft/vstest/releases/tag/v17.9.0)

##### What's Changed

- Remove dependency on Nuget.Frameworks by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4693
- Add platform guard by
[@&#8203;dotMorten](https://togithub.com/dotMorten) in
[microsoft/vstest#4737
- Remove javascript in `HtmlLogger` by
[@&#8203;daveMueller](https://togithub.com/daveMueller) in
[microsoft/vstest#4744
- Fix CPU is consumed by polling frequently when there is no subscriber
by [@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4735
- Create a proper MSBuild ToolTask based VSTestTask by
[@&#8203;mcartoixa](https://togithub.com/mcartoixa) in
[microsoft/vstest#2702
- Update SDK, copy logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4755
- Fix staircase in logger by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4756
- Update dump client to latest by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4724
- \[rel/17.9] Disable testhost prestart by
[@&#8203;nohwnd](https://togithub.com/nohwnd) in
[microsoft/vstest#4836

##### New Contributors

- [@&#8203;jithu7432](https://togithub.com/jithu7432) made their first
contribution in
[microsoft/vstest#4698
- [@&#8203;mcartoixa](https://togithub.com/mcartoixa) made their first
contribution in
[microsoft/vstest#2702

**Full Changelog**:
microsoft/vstest@v17.8.0...v17.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone
Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/smartive/cas-fee-adv-mumble-api).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

NuGet.Frameworks dependency is causing weird test failures when trying to load MSBuild
2 participants