Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Tabbit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
arrives as another syntax tree. Pinned to the version this SDK's own compiler is, so
a rule file accepts exactly the C# the rest of the repository does.
-->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.6.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.9.0" />
<!--
Scriban rather than Handlebars or Fluid: no dependencies of its own, and its `{{ }}`
syntax does not collide with anything in the languages being generated - which
Expand Down Expand Up @@ -471,10 +471,10 @@
<ItemGroup>
<!-- Database export targets. MySqlConnector rather than MySql.Data: it is fully
async and MIT licensed. -->
<PackageReference Include="MySqlConnector" Version="2.6.1" />
<PackageReference Include="MySqlConnector" Version="2.6.2" />
<PackageReference Include="Npgsql" Version="10.0.3" />
<PackageReference Include="MongoDB.Driver" Version="3.10.0" />
<PackageReference Include="StackExchange.Redis" Version="3.0.17" />
<PackageReference Include="MongoDB.Driver" Version="3.11.0" />
<PackageReference Include="StackExchange.Redis" Version="3.1.31" />
</ItemGroup>

<!--
Expand Down
12 changes: 6 additions & 6 deletions test/Tabbit.Tests/Tabbit.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
<ItemGroup>
<!-- The database tests query the servers directly to confirm what the exporters
actually wrote, rather than trusting the exporters' own reports. -->
<PackageReference Include="MySqlConnector" Version="2.6.1" />
<PackageReference Include="MySqlConnector" Version="2.6.2" />
<PackageReference Include="Npgsql" Version="10.0.3" />
<PackageReference Include="MongoDB.Driver" Version="3.10.0" />
<PackageReference Include="StackExchange.Redis" Version="3.0.17" />
<PackageReference Include="MongoDB.Driver" Version="3.11.0" />
<PackageReference Include="StackExchange.Redis" Version="3.1.31" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>

Expand All @@ -81,7 +81,7 @@
a build nobody reads the warnings of is a build that hides the next real one - the
warning noise had already pushed a test into slicing JSON out of stdout by hand.
-->
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.10" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.11" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion test/fixtures/tools/FixtureGen/FixtureGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!-- Same transitive pull-up as src/Tabbit.csproj: NPOI brings in
System.Security.Cryptography.Xml 8.0.2, which has known high-severity
advisories. Both NPOI consumers need the pin until NPOI ships a fixed one. -->
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.10" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.11" />
</ItemGroup>

</Project>
Loading