Skip to content

Commit

Permalink
Latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Dec 22, 2024
1 parent abfeef7 commit 330849a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="xunit.v3.assert.source" Version="1.0.1-pre.6" />
<PackageReference Include="xunit.v3.core" Version="1.0.1-pre.6" />
<PackageReference Include="xunit.v3.assert.source" Version="1.0.1-pre.8" />
<PackageReference Include="xunit.v3.core" Version="1.0.1-pre.8" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1-pre.4" />
</ItemGroup>

Expand Down
12 changes: 6 additions & 6 deletions src/xunit.analyzers.tests/Utility/CodeAnalyzerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ static CodeAnalyzerHelper()
new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"),
new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"),
new PackageIdentity("System.Text.Json", "8.0.0"),
new PackageIdentity("xunit.v3.assert", "1.0.1-pre.6"),
new PackageIdentity("xunit.v3.common", "1.0.1-pre.6"),
new PackageIdentity("xunit.v3.extensibility.core", "1.0.1-pre.6"),
new PackageIdentity("xunit.v3.runner.common", "1.0.1-pre.6")
new PackageIdentity("xunit.v3.assert", "1.0.1-pre.8"),
new PackageIdentity("xunit.v3.common", "1.0.1-pre.8"),
new PackageIdentity("xunit.v3.extensibility.core", "1.0.1-pre.8"),
new PackageIdentity("xunit.v3.runner.common", "1.0.1-pre.8")
)
);

Expand All @@ -74,8 +74,8 @@ static CodeAnalyzerHelper()
new PackageIdentity("Microsoft.Extensions.Primitives", "8.0.0"),
new PackageIdentity("System.Threading.Tasks.Extensions", "4.5.4"),
new PackageIdentity("System.Text.Json", "8.0.0"),
new PackageIdentity("xunit.v3.common", "1.0.1-pre.6"),
new PackageIdentity("xunit.v3.runner.utility", "1.0.1-pre.6")
new PackageIdentity("xunit.v3.common", "1.0.1-pre.8"),
new PackageIdentity("xunit.v3.runner.utility", "1.0.1-pre.8")
)
);
}
Expand Down
10 changes: 5 additions & 5 deletions src/xunit.analyzers.tests/xunit.analyzers.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
<PackageDownload Include="xunit.extensibility.execution" Version="[2.9.3-pre.4]" />
<PackageDownload Include="xunit.runner.utility" Version="[2.9.3-pre.4]" />

<PackageDownload Include="xunit.v3.assert" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.common" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.extensibility.core" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.runner.common" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.runner.utility" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.assert" Version="[1.0.1-pre.8]" />
<PackageDownload Include="xunit.v3.common" Version="[1.0.1-pre.8]" />
<PackageDownload Include="xunit.v3.extensibility.core" Version="[1.0.1-pre.8]" />
<PackageDownload Include="xunit.v3.runner.common" Version="[1.0.1-pre.8]" />
<PackageDownload Include="xunit.v3.runner.utility" Version="[1.0.1-pre.8]" />

<!-- Download packages referenced by CodeAnalysisNetAnalyzers -->
<PackageDownload Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="[9.0.0-preview.24454.1]" />
Expand Down
2 changes: 1 addition & 1 deletion tools/builder/build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageDownload Include="xunit.v3.runner.console" Version="[1.0.1-pre.6]" />
<PackageDownload Include="xunit.v3.runner.console" Version="[1.0.1-pre.8]" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion tools/builder/models/BuildContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public partial IReadOnlyList<string> GetSkippedAnalysisFolders() =>

partial void Initialize()
{
consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "1.0.1-pre.6", "tools", "net472", "xunit.v3.runner.console.exe");
consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "1.0.1-pre.8", "tools", "net472", "xunit.v3.runner.console.exe");
if (!File.Exists(consoleRunner))
throw new InvalidOperationException($"Cannot find console runner at '{consoleRunner}'");
}
Expand Down

0 comments on commit 330849a

Please sign in to comment.