Skip to content

Commit

Permalink
Latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Nov 13, 2024
1 parent 3c727df commit 5c60a82
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="xunit.v3.assert.source" Version="0.6.0-pre.1" />
<PackageReference Include="xunit.v3.core" Version="0.6.0-pre.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0-pre.48" />
<PackageReference Include="xunit.v3.assert.source" Version="0.6.0-pre.9" />
<PackageReference Include="xunit.v3.core" Version="0.6.0-pre.9" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0-pre.49" />
</ItemGroup>

</When>
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", "0.6.0-pre.1"),
new PackageIdentity("xunit.v3.common", "0.6.0-pre.1"),
new PackageIdentity("xunit.v3.extensibility.core", "0.6.0-pre.1"),
new PackageIdentity("xunit.v3.runner.common", "0.6.0-pre.1")
new PackageIdentity("xunit.v3.assert", "0.6.0-pre.9"),
new PackageIdentity("xunit.v3.common", "0.6.0-pre.9"),
new PackageIdentity("xunit.v3.extensibility.core", "0.6.0-pre.9"),
new PackageIdentity("xunit.v3.runner.common", "0.6.0-pre.9")
)
);

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", "0.6.0-pre.1"),
new PackageIdentity("xunit.v3.runner.utility", "0.6.0-pre.1")
new PackageIdentity("xunit.v3.common", "0.6.0-pre.9"),
new PackageIdentity("xunit.v3.runner.utility", "0.6.0-pre.9")
)
);
}
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="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.common" Version="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.extensibility.core" Version="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.runner.common" Version="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.runner.utility" Version="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.assert" Version="[0.6.0-pre.9]" />
<PackageDownload Include="xunit.v3.common" Version="[0.6.0-pre.9]" />
<PackageDownload Include="xunit.v3.extensibility.core" Version="[0.6.0-pre.9]" />
<PackageDownload Include="xunit.v3.runner.common" Version="[0.6.0-pre.9]" />
<PackageDownload Include="xunit.v3.runner.utility" Version="[0.6.0-pre.9]" />

<!-- 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="[0.6.0-pre.1]" />
<PackageDownload Include="xunit.v3.runner.console" Version="[0.6.0-pre.9]" />
</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", "0.6.0-pre.1", "tools", "net472", "xunit.v3.runner.console.exe");
consoleRunner = Path.Combine(NuGetPackageCachePath, "xunit.v3.runner.console", "0.6.0-pre.9", "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 5c60a82

Please sign in to comment.