Skip to content

Commit 3ea17d1

Browse files
authored
fix: Microsoft.Bcl.AsyncInterfaces version conflicts (#3671)
1 parent 8ce34fc commit 3ea17d1

4 files changed

Lines changed: 16 additions & 5 deletions

File tree

.config/dotnet-tools.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@
1414
"commands": [
1515
"dotnet-verify"
1616
],
17-
"rollForward": false
17+
"rollForward": true
18+
},
19+
"dotnet-trace": {
20+
"version": "9.0.652701",
21+
"commands": [
22+
"dotnet-trace"
23+
],
24+
"rollForward": true
1825
}
1926
}
20-
}
27+
}

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.10" />
2020
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.10" />
2121
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="9.0.10" />
22-
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
22+
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.10" />
2323
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.14.28" />
2424
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
2525
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="4.7.0" />

TUnit.Assertions.SourceGenerator/TUnit.Assertions.SourceGenerator.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
<IsPackable>false</IsPackable>
1515
</PropertyGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
17+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces">
18+
<PrivateAssets>all</PrivateAssets>
19+
</PackageReference>
1820
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers">
1921
<PrivateAssets>all</PrivateAssets>
2022
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

TUnit.Core.SourceGenerator/TUnit.Core.SourceGenerator.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
<IsPackable>false</IsPackable>
1515
</PropertyGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
17+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces">
18+
<PrivateAssets>all</PrivateAssets>
19+
</PackageReference>
1820
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers">
1921
<PrivateAssets>all</PrivateAssets>
2022
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)