Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmind authored Nov 18, 2024
2 parents 2e18aa0 + a8902c9 commit 91ef711
Show file tree
Hide file tree
Showing 29 changed files with 219 additions and 192 deletions.
2 changes: 1 addition & 1 deletion #scripts/roslyn-branches/arm/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"serverFarmId": "[variables('serverfarms_main_id')]",
"clientAffinityEnabled": false,
"siteConfig": {
"netFrameworkVersion": "v8.0",
"netFrameworkVersion": "v9.0",
"publishingUsername": "[concat('$', parameters('sites_name'))]",
"use32BitWorkerProcess": true,
"webSocketsEnabled": true,
Expand Down
5 changes: 3 additions & 2 deletions #scripts/roslyn-branches/flow/update/updateBranch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ async function buildSharpLab(roslynPackagesRoot: string) {
// sigh: dotnet.exe should do this, but of course it does not
const projectPath = projectPathUntyped as string;
const projectName = path.basename(projectPath);
if (/mirrorsharp[^/\\]*[/\\]Internal\.Roslyn/i.test(projectPath)) {
if (/mirrorsharp[^/\\]*[/\\]Internal\.Roslyn|Mobius\.ILasm\.Tests\.SourceGenerator/i.test(projectPath)) {
console.log(` ${projectName}`);
console.log(' Skipping');
continue;
Expand Down Expand Up @@ -222,6 +222,7 @@ async function buildSharpLab(roslynPackagesRoot: string) {
'--source', 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json',
'--source', 'https://ci.appveyor.com/nuget/vanara-prerelease',
'--source', roslynPackagesRoot,
'-p:NuGetAudit=false',
'--verbosity', 'minimal'
], {
stdout: 'inherit',
Expand All @@ -242,7 +243,7 @@ async function buildSharpLab(roslynPackagesRoot: string) {
});

return {
publishRoot: `${branchSourceRoot}/Server/bin/Release/net8.0/publish`
publishRoot: `${branchSourceRoot}/Server/bin/Release/net9.0/publish`
};
}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/container-host-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ on:

jobs:
build:
name: 'Build (.NET 8)'
name: 'Build (.NET 9)'
# https://github.community/t/duplicate-checks-on-push-and-pull-request-simultaneous-event/18012/5
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: windows-latest
env:
NUGET_PACKAGES: ${{github.workspace}}/.nuget/packages
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- uses: microsoft/setup-msbuild@v1.1

# https://github.com/actions/setup-dotnet/issues/155
Expand All @@ -47,7 +47,7 @@ jobs:
- run: dotnet build source/Tests --configuration Release
- run: dotnet test source/Tests --no-build --configuration Release
- run: dotnet publish source/Container.Manager --no-build --configuration Release
- run: Compress-Archive -Path 'source/Container.Manager/bin/Release/net8.0/publish/*' -DestinationPath 'Container.Manager.zip'
- run: Compress-Archive -Path 'source/Container.Manager/bin/Release/net9.0/publish/*' -DestinationPath 'Container.Manager.zip'
shell: pwsh

- uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/roslyn-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '20.14.0'
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- run: npm ci
- run: npm run update-branch -- ${{matrix.branch}}
env:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/server-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ on:

jobs:
build-core:
name: 'Build (.NET 8)'
name: 'Build (.NET 9)'
# https://github.community/t/duplicate-checks-on-push-and-pull-request-simultaneous-event/18012/5
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: windows-latest
env:
NUGET_PACKAGES: ${{github.workspace}}/.nuget/packages
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- uses: microsoft/setup-msbuild@v1.1

# https://github.com/actions/setup-dotnet/issues/155
Expand All @@ -52,9 +52,9 @@ jobs:
- run: dotnet test source/Tests --no-build --configuration Release
- run: dotnet publish source/Server --no-build --configuration Release
- run: dotnet publish source/WebApp.Server --no-build --configuration Release /p:ErrorOnDuplicatePublishOutputFiles=false
- run: Compress-Archive -Path 'source/Server/bin/Release/net8.0/publish/*' -DestinationPath 'Server.zip'
- run: Compress-Archive -Path 'source/Server/bin/Release/net9.0/publish/*' -DestinationPath 'Server.zip'
shell: pwsh
- run: Compress-Archive -Path 'source/WebApp.Server/bin/Release/net8.0/publish/*' -DestinationPath 'WebApp.Server.zip'
- run: Compress-Archive -Path 'source/WebApp.Server/bin/Release/net9.0/publish/*' -DestinationPath 'WebApp.Server.zip'
shell: pwsh

- uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -109,12 +109,12 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

# https://github.com/actions/setup-dotnet/issues/155
- run: dotnet nuget locals all --clear
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- deploy-netfx
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: 'git show ${{ github.sha }} --format="version_number=%cd" --date=format:%Y-%m-%d-%H%M --no-patch >> $GITHUB_OUTPUT'
id: version
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.100",
"rollForward": "latestFeature"
}
}
2 changes: 1 addition & 1 deletion source/#external/Mobius.ILasm
2 changes: 1 addition & 1 deletion source/#external/mirrorsharp-codemirror-6-preview
Submodule mirrorsharp-codemirror-6-preview updated 75 files
+2 −0 AspNetCore.Demo.Net6/AspNetCore.Demo.Net6.csproj
+1,125 −1,123 AspNetCore/packages.lock.json
+49 −47 Benchmarks/packages.lock.json
+14 −0 Common/CHANGELOG.md
+3 −0 Common/Common.csproj
+3 −1 Common/Internal/Roslyn/RoslynInternals.cs
+2,041 −1,618 Common/packages.lock.json
+3 −0 FSharp/CHANGELOG.md
+1 −1 FSharp/FSharp.csproj
+519 −113 FSharp/packages.lock.json
+3 −1 Internal.Roslyn41/Internal.Roslyn41.csproj
+594 −591 Internal.Roslyn41/packages.lock.json
+5 −3 Internal.Roslyn410/Internal.Roslyn410.csproj
+2 −1 Internal.Roslyn410/MirrorSharpDiagnosticAnalyzerService.cs
+57 −55 Internal.Roslyn410/packages.lock.json
+16 −16 Internal.Roslyn411/CodeActionInternals.cs
+5 −11 Internal.Roslyn411/Internal.Roslyn411.csproj
+13 −14 Internal.Roslyn411/MirrorSharpDiagnosticAnalyzerService.cs
+50 −50 Internal.Roslyn411/SignatureHelpProviderWrapper.cs
+17 −17 Internal.Roslyn411/SignatureHelpProviderWrapperResolver.cs
+11 −11 Internal.Roslyn411/WorkspaceAnalyzerOptionsInternals.cs
+57 −55 Internal.Roslyn411/packages.lock.json
+25 −0 Internal.Roslyn412/CodeActionInternals.cs
+25 −0 Internal.Roslyn412/Internal.Roslyn412.csproj
+26 −0 Internal.Roslyn412/MirrorSharpDiagnosticAnalyzerService.cs
+1 −0 Internal.Roslyn412/PublicAPI.Shipped.txt
+0 −0 Internal.Roslyn412/PublicAPI.Unshipped.txt
+61 −0 Internal.Roslyn412/SignatureHelpProviderWrapper.cs
+31 −0 Internal.Roslyn412/SignatureHelpProviderWrapperResolver.cs
+16 −0 Internal.Roslyn412/WorkspaceAnalyzerOptionsInternals.cs
+439 −0 Internal.Roslyn412/packages.lock.json
+2 −0 Internal.Roslyn42/Internal.Roslyn42.csproj
+399 −398 Internal.Roslyn42/packages.lock.json
+2 −0 Internal.Roslyn43/Internal.Roslyn43.csproj
+397 −396 Internal.Roslyn43/packages.lock.json
+2 −0 Internal.Roslyn44/Internal.Roslyn44.csproj
+25 −24 Internal.Roslyn44/packages.lock.json
+2 −0 Internal.Roslyn45/Internal.Roslyn45.csproj
+25 −24 Internal.Roslyn45/packages.lock.json
+2 −0 Internal.Roslyn46/Internal.Roslyn46.csproj
+23 −22 Internal.Roslyn46/packages.lock.json
+2 −0 Internal.Roslyn47/Internal.Roslyn47.csproj
+23 −22 Internal.Roslyn47/packages.lock.json
+2 −0 Internal.Roslyn48/Internal.Roslyn48.csproj
+23 −22 Internal.Roslyn48/packages.lock.json
+2 −0 Internal.Roslyn49/Internal.Roslyn49.csproj
+21 −19 Internal.Roslyn49/packages.lock.json
+14 −0 MirrorSharp.sln
+87 −35 Owin.Demo/packages.lock.json
+43 −1 Owin/packages.lock.json
+39 −39 Php/Advanced/RoslynTypesExtensions.cs
+5 −0 Php/CHANGELOG.md
+10 −0 Php/Php.csproj
+1,302 −1,430 Php/packages.lock.json
+431 −10 Testing/packages.lock.json
+6 −4 Tests.Roslyn410/Tests.Roslyn410.csproj
+158 −174 Tests.Roslyn410/packages.lock.json
+51 −0 Tests.Roslyn411/Tests.Roslyn411.csproj
+1,791 −0 Tests.Roslyn411/packages.lock.json
+2 −0 Tests.Roslyn44/Tests.Roslyn44.csproj
+123 −140 Tests.Roslyn44/packages.lock.json
+2 −0 Tests.Roslyn45/Tests.Roslyn45.csproj
+125 −147 Tests.Roslyn45/packages.lock.json
+2 −0 Tests.Roslyn46/Tests.Roslyn46.csproj
+113 −148 Tests.Roslyn46/packages.lock.json
+3 −1 Tests.Roslyn47/Tests.Roslyn47.csproj
+128 −158 Tests.Roslyn47/packages.lock.json
+3 −1 Tests.Roslyn48/Tests.Roslyn48.csproj
+128 −158 Tests.Roslyn48/packages.lock.json
+3 −1 Tests.Roslyn49/Tests.Roslyn49.csproj
+129 −154 Tests.Roslyn49/packages.lock.json
+6 −4 Tests.RoslynLatest/Tests.RoslynLatest.csproj
+250 −203 Tests.RoslynLatest/packages.lock.json
+192 −196 Tests/packages.lock.json
+962 −541 VisualBasic/packages.lock.json
4 changes: 3 additions & 1 deletion source/Container.Manager/Container.Manager.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>SharpLab.Container.Manager</AssemblyName>
<RootNamespace>SharpLab.Container.Manager</RootNamespace>
</PropertyGroup>
Expand All @@ -13,6 +13,8 @@
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.17.0" />
<PackageReference Include="protobuf-net" Version="3.0.101" />
<PackageReference Include="System.Runtime.Caching" Version="5.0.0" />
<!-- Avoids vulnerability in version referenced by other dependencies -->
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/Container.Warmup/Container.Warmup.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>SharpLab.Container.Warmup</AssemblyName>
<RootNamespace>SharpLab.Container.Warmup</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/Container/Container.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>SharpLab.Container</AssemblyName>
<RootNamespace>SharpLab.Container</RootNamespace>
<OutputType>Exe</OutputType>
Expand Down
3 changes: 2 additions & 1 deletion source/NetFramework/Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Autofac" Version="4.9.2" />
<PackageReference Include="Autofac.Extras.FileSystemRegistration" Version="1.0.0-pre-03" />
<PackageReference Include="Autofac.Owin" Version="4.2.0" />
<PackageReference Include="Azure.Identity" Version="1.11.0" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.1.0" />
<PackageReference Include="ICSharpCode.Decompiler" Version="7.1.0.6543" />
<PackageReference Include="JetBrains.Annotations" Version="10.4.0" />
Expand All @@ -41,6 +41,7 @@
<PackageReference Include="SharpYaml" Version="1.6.2" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
<PackageReference Include="Unbreakable" Version="0.22.0-unproven" />
<PackageReference Include="Unbreakable.Policy" Version="20.0.0" />
Expand Down
28 changes: 23 additions & 5 deletions source/NetFramework/Server/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.Immutable" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand All @@ -102,6 +102,12 @@
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.ProtectedData" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
Expand All @@ -111,7 +117,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand Down Expand Up @@ -165,7 +171,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Json" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.3" newVersion="7.0.0.3" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand All @@ -177,13 +183,13 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encodings.Web" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Azure.Core" culture="neutral" publicKeyToken="92742159e12e44c8" />
<bindingRedirect oldVersion="0.0.0.0-1.38.0.0" newVersion="1.38.0.0" />
<bindingRedirect oldVersion="0.0.0.0-1.44.1.0" newVersion="1.44.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand All @@ -192,5 +198,17 @@
<bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Memory.Data" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.AccessControl" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
21 changes: 15 additions & 6 deletions source/Server/Server.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<AssemblyName>SharpLab.Server</AssemblyName>
<RootNamespace>SharpLab.Server</RootNamespace>
Expand Down Expand Up @@ -31,26 +31,35 @@
<PackageReference Include="Autofac" Version="4.9.2" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="5.0.0" />
<PackageReference Include="Autofac.Extras.FileSystemRegistration" Version="1.0.0-pre-03" />
<PackageReference Include="Azure.Identity" Version="1.11.0" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.1.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
<PackageReference Include="ICSharpCode.Decompiler" Version="7.1.0.6543" />
<PackageReference Include="JetBrains.Annotations" Version="10.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.17.0" />
<PackageReference Include="Microsoft.Azure.Cosmos.Table" Version="1.0.8" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0-3.final" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.12.0-3.final" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="4.12.0-3.final" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.12.0-3.final" />
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="3.1.512801" />
<PackageReference Include="Microsoft.ILVerification" Version="7.0.0-preview.4.22229.4" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.2.0" />
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<!--
Avoids vulnerability in version referenced by other dependencies
TOOD: Try removing after upgrading Microsoft.Azure.Cosmos.Table.
-->
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Octokit" Version="0.32.0" />
<PackageReference Include="Iced" Version="1.6.0" />
<PackageReference Include="SharpYaml" Version="1.6.2" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
<PackageReference Include="System.Formats.Nrbf" Version="9.0.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<!-- Avoids vulnerability in version referenced by other dependencies -->
<PackageReference Include="System.Text.Json" Version="9.0.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>

Expand Down
Loading

0 comments on commit 91ef711

Please sign in to comment.