Skip to content

Commit f7e403b

Browse files
committed
Latest dependencies
1 parent f0e20fa commit f7e403b

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

src/Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@
7575
</ItemGroup>
7676

7777
<ItemGroup>
78-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeFix.Testing" Version="1.1.3-beta1.25560.1" />
78+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeFix.Testing" Version="1.1.3-beta1.25564.1" />
7979
<PackageReference Include="NSubstitute" Version="5.3.0" />
8080
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
81-
<PackageReference Include="xunit.v3.assert.source" Version="3.2.1-pre.5" />
82-
<PackageReference Include="xunit.v3.core" Version="3.2.1-pre.5" />
81+
<PackageReference Include="xunit.v3.assert.source" Version="[3.2.1-pre.14, 3.99.0)" />
82+
<PackageReference Include="xunit.v3.core" Version="[3.2.1-pre.14, 3.99.0)" />
8383
</ItemGroup>
8484

8585
</When>

src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ static CodeAnalyzerHelper()
6161
new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"),
6262
new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"),
6363
new PackageIdentity("System.Text.Json", "8.0.0"),
64-
new PackageIdentity("xunit.v3.assert", "3.2.1-pre.5"),
65-
new PackageIdentity("xunit.v3.common", "3.2.1-pre.5"),
66-
new PackageIdentity("xunit.v3.extensibility.core", "3.2.1-pre.5"),
67-
new PackageIdentity("xunit.v3.runner.common", "3.2.1-pre.5")
64+
new PackageIdentity("xunit.v3.assert", "3.2.1-pre.14"),
65+
new PackageIdentity("xunit.v3.common", "3.2.1-pre.14"),
66+
new PackageIdentity("xunit.v3.extensibility.core", "3.2.1-pre.14"),
67+
new PackageIdentity("xunit.v3.runner.common", "3.2.1-pre.14")
6868
)
6969
);
7070

@@ -74,8 +74,8 @@ static CodeAnalyzerHelper()
7474
new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"),
7575
new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"),
7676
new PackageIdentity("System.Text.Json", "8.0.0"),
77-
new PackageIdentity("xunit.v3.common", "3.2.1-pre.5"),
78-
new PackageIdentity("xunit.v3.runner.utility", "3.2.1-pre.5")
77+
new PackageIdentity("xunit.v3.common", "3.2.1-pre.14"),
78+
new PackageIdentity("xunit.v3.runner.utility", "3.2.1-pre.14")
7979
)
8080
);
8181
}

src/xunit.analyzers.tests/xunit.analyzers.tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<PackageDownload Include="xunit.extensibility.execution" Version="[2.9.3-pre.4]" />
2424
<PackageDownload Include="xunit.runner.utility" Version="[2.9.3-pre.4]" />
2525

26-
<PackageDownload Include="xunit.v3.assert" Version="[3.2.1-pre.5]" />
27-
<PackageDownload Include="xunit.v3.common" Version="[3.2.1-pre.5]" />
28-
<PackageDownload Include="xunit.v3.extensibility.core" Version="[3.2.1-pre.5]" />
29-
<PackageDownload Include="xunit.v3.runner.common" Version="[3.2.1-pre.5]" />
30-
<PackageDownload Include="xunit.v3.runner.utility" Version="[3.2.1-pre.5]" />
26+
<PackageDownload Include="xunit.v3.assert" Version="[3.2.1-pre.14]" />
27+
<PackageDownload Include="xunit.v3.common" Version="[3.2.1-pre.14]" />
28+
<PackageDownload Include="xunit.v3.extensibility.core" Version="[3.2.1-pre.14]" />
29+
<PackageDownload Include="xunit.v3.runner.common" Version="[3.2.1-pre.14]" />
30+
<PackageDownload Include="xunit.v3.runner.utility" Version="[3.2.1-pre.14]" />
3131

3232
<!-- Download packages referenced by CodeAnalysisNetAnalyzers -->
3333
<PackageDownload Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="[10.0.100]" />

tools/builder/build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageDownload Include="xunit.v3.runner.console" Version="[3.2.1-pre.5]" />
20+
<PackageDownload Include="xunit.v3.runner.console" Version="[3.2.1-pre.14]" />
2121
</ItemGroup>
2222

2323
</Project>

tools/builder/models/BuildContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public partial IReadOnlyList<string> GetSkippedAnalysisFolders() =>
1616

1717
partial void Initialize()
1818
{
19-
consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "3.2.1-pre.5", "tools", "net472", "xunit.v3.runner.console.exe");
19+
consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "3.2.1-pre.14", "tools", "net472", "xunit.v3.runner.console.exe");
2020
if (!File.Exists(consoleRunner))
2121
throw new InvalidOperationException($"Cannot find console runner at '{consoleRunner}'");
2222
}

0 commit comments

Comments
 (0)