Skip to content

Commit

Permalink
[master] Update dependencies from dotnet/roslyn (#50376)
Browse files Browse the repository at this point in the history
[master] Update dependencies from dotnet/roslyn


 - Disable xUnit warning because there is a bug
  • Loading branch information
dotnet-maestro[bot] authored Jan 27, 2021
1 parent 4ffc02c commit 70b74e3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>620462dd065490620c03a80cea8e251004f6bf21</Sha>
</Dependency>
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="3.9.0-4.20631.6">
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="3.9.0-4.21076.10">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>c34bb049f1f74256f109794509cd9f0f1c23faea</Sha>
<Sha>38a96eef7208a443114b778b7f10a3369b4dc6d4</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="2.0.0-beta.21072.7">
<Uri>https://github.com/dotnet/arcade</Uri>
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</MajorVersion>
<MinorVersion>
</MinorVersion>
<MicrosoftNetCompilersToolsetVersion>3.9.0-4.20631.6</MicrosoftNetCompilersToolsetVersion>
<MicrosoftNetCompilersToolsetVersion>3.9.0-4.21076.10</MicrosoftNetCompilersToolsetVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Versions used by several individual references below -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.ChangeSignature
public partial class ChangeSignatureTests : AbstractChangeSignatureTests
{
[Theory, Trait(Traits.Feature, Traits.Features.ChangeSignature)]
#pragma warning disable xUnit1019
// There is a bug in xUnit analyzer might generate false alarm, temporary disable it
// https://github.com/xunit/xunit/issues/1968
[MemberData(nameof(AbstractChangeSignatureTests.GetAllSignatureSpecificationsForTheory), new[] { 1, 3, 2, 1 }, MemberType = typeof(AbstractChangeSignatureTests))]
#pragma warning restore xUnit1019
public async Task TestAllSignatureChanges_1This_3Regular_2Default_1Params(int totalParameters, int[] signature)
{
var markup = @"
Expand Down Expand Up @@ -71,7 +75,11 @@ await TestChangeSignatureViaCommandAsync(
}

[Theory, Trait(Traits.Feature, Traits.Features.ChangeSignature)]
#pragma warning disable xUnit1019
// There is a bug in xUnit analyzer might generate false alarm, temporary disable it
// https://github.com/xunit/xunit/issues/1968
[MemberData(nameof(AbstractChangeSignatureTests.GetAllSignatureSpecificationsForTheory), new[] { 0, 3, 0, 0 }, MemberType = typeof(AbstractChangeSignatureTests))]
#pragma warning restore xUnit1019
public async Task TestAllSignatureChanges_OnDelegate_3Regular(int totalParameters, int[] signature)
{
var markup = @"
Expand Down

0 comments on commit 70b74e3

Please sign in to comment.