-
Notifications
You must be signed in to change notification settings - Fork 60
Update dependencies #256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update dependencies #256
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
044ee90
Bump Microsoft.SourceLink.GitHub and System.Memory
dependabot[bot] 9723566
Bump coverlet.collector and 11 others
dependabot[bot] ecc66d2
Merge pull request #250 from Yubico/dependabot/nuget/Yubico.Core/src/…
DennisDyallo e78f9fd
Bump Microsoft.Extensions.Logging.Console and 4 others
dependabot[bot] 5db359b
Merge pull request #254 from Yubico/dependabot/nuget/Yubico.YubiKey/t…
DennisDyallo def92e5
Merge pull request #253 from Yubico/dependabot/nuget/Yubico.YubiKey/t…
DennisDyallo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,151 +1,151 @@ | ||
<!-- Copyright 2021 Yubico AB | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. --> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<!-- Assembly information--> | ||
<AssemblyName>Yubico.Core</AssemblyName> | ||
<RootNamespace></RootNamespace> | ||
|
||
<!-- Multi-target build --> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net47</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
|
||
<!-- Suppressed warnings--> | ||
<!-- NU5104 - We want to allow prerelease NuGet packages --> | ||
<NoWarn>@(NoWarn);NU5104</NoWarn> | ||
<Configurations>Debug;Release</Configurations> | ||
|
||
<!-- DocFX will throw a warning (which we set as an error) if it doesn't find a reference assembly. --> | ||
<ProduceReferenceAssembly>True</ProduceReferenceAssembly> | ||
|
||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
|
||
<!-- XML Documentation --> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
|
||
<!-- NuGet properties --> | ||
<Description> | ||
Yubico.Core is a support library used by other .NET Yubico libraries. You should likely never need to consume this package directly, as it will be included with other libraries. | ||
</Description> | ||
<PackageIcon>yubico-circle-y-mark.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes> | ||
|
||
<!-- StrongName signing --> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> | ||
|
||
<DefineConstants Condition="'$(Configuration)' == 'Debug'">$(DefineConstants);ENABLE_SENSITIVE_LOG</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Resource file definition"> | ||
|
||
<Compile Update="Resources\ExceptionMessages.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>ExceptionMessages.resx</DependentUpon> | ||
</Compile> | ||
|
||
<EmbeddedResource Update="Resources\ExceptionMessages.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>ExceptionMessages.Designer.cs</LastGenOutput> | ||
<CustomToolNamespace>Yubico.Core</CustomToolNamespace> | ||
</EmbeddedResource> | ||
|
||
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="" /> | ||
<None Include="..\..\yubico-circle-y-mark.png" Pack="true" PackagePath="" /> | ||
<None Include="..\..\Yubico.NET.SDK.snk"> | ||
<Link>Yubico.NET.SDK.snk</Link> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Grouping HID code partial classes"> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.ModHex.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_UK.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_US.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.de_DE.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.fr_FR.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.it_IT.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.es_US.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.sv_SE.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> | ||
<!-- Before updating PolySharp, we should do some due dilligence on the update --> | ||
<PackageReference Include="PolySharp" Version="1.15.0" AllowUpdates="false"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.Memory" Version="4.5.5" /> | ||
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" /> | ||
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" /> | ||
<!-- The wildcard version tag allows us to include the latest minor and pre-release versions --> | ||
<PackageReference Include="Yubico.NativeShims" Version="1.*-*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Expose internal test hooks to Unit Test projects"> | ||
|
||
<!-- Expose internal test hooks --> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Yubico.Core.UnitTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> | ||
</AssemblyAttribute> | ||
|
||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Yubico.YubiKey.IntegrationTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> | ||
</AssemblyAttribute> | ||
|
||
<!-- Enable use of the Moq framework--> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>DynamicProxyGenAssembly2,PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</_Parameter1> | ||
</AssemblyAttribute> | ||
|
||
</ItemGroup> | ||
</Project> | ||
<!-- Copyright 2021 Yubico AB | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. --> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<!-- Assembly information--> | ||
<AssemblyName>Yubico.Core</AssemblyName> | ||
<RootNamespace></RootNamespace> | ||
<!-- Multi-target build --> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net47</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<!-- Suppressed warnings--> | ||
<!-- NU5104 - We want to allow prerelease NuGet packages --> | ||
<NoWarn>@(NoWarn);NU5104</NoWarn> | ||
<Configurations>Debug;Release</Configurations> | ||
<!-- DocFX will throw a warning (which we set as an error) if it doesn't find a reference assembly. --> | ||
<ProduceReferenceAssembly>True</ProduceReferenceAssembly> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<!-- XML Documentation --> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<!-- NuGet properties --> | ||
<Description> | ||
Yubico.Core is a support library used by other .NET Yubico libraries. You should likely never need to consume this package directly, as it will be included with other libraries. | ||
</Description> | ||
<PackageIcon>yubico-circle-y-mark.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes> | ||
<!-- StrongName signing --> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> | ||
<DefineConstants Condition="'$(Configuration)' == 'Debug'">$(DefineConstants);ENABLE_SENSITIVE_LOG</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
<ItemGroup Label="Resource file definition"> | ||
<Compile Update="Resources\ExceptionMessages.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>ExceptionMessages.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="Resources\ExceptionMessages.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>ExceptionMessages.Designer.cs</LastGenOutput> | ||
<CustomToolNamespace>Yubico.Core</CustomToolNamespace> | ||
</EmbeddedResource> | ||
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="" /> | ||
<None Include="..\..\yubico-circle-y-mark.png" Pack="true" PackagePath="" /> | ||
<None Include="..\..\Yubico.NET.SDK.snk"> | ||
<Link>Yubico.NET.SDK.snk</Link> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup Label="Grouping HID code partial classes"> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.ModHex.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_UK.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_US.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.de_DE.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.fr_FR.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.it_IT.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.es_US.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.sv_SE.cs"> | ||
<DependentUpon>HidCodeTranslator.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<!-- Before updating PolySharp, we should do some due dilligence on the update --> | ||
<PackageReference Include="PolySharp" Version="1.15.0" AllowUpdates="false"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.Memory" Version="4.6.3" /> | ||
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" /> | ||
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" /> | ||
<!-- The wildcard version tag allows us to include the latest minor and pre-release versions --> | ||
<PackageReference Include="Yubico.NativeShims" Version="1.*-*" /> | ||
</ItemGroup> | ||
<ItemGroup Label="Expose internal test hooks to Unit Test projects"> | ||
<!-- Expose internal test hooks --> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Yubico.Core.UnitTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Yubico.YubiKey.IntegrationTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> | ||
</AssemblyAttribute> | ||
<!-- Enable use of the Moq framework--> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>DynamicProxyGenAssembly2,PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are multiple version bumps across various csproj files; consider centralizing dependency versions in a Directory.Packages.props file to simplify management and prevent version drift.
Copilot uses AI. Check for mistakes.