Skip to content

Commit 9723566

Browse files
Bump coverlet.collector and 11 others
Bumps coverlet.collector from 6.0.2 to 6.0.4 Bumps Microsoft.Bcl.Cryptography from 9.0.2 to 9.0.6 Bumps Microsoft.Extensions.Logging.Console from 8.0.0 to 9.0.6 Bumps Microsoft.NET.Test.Sdk from 17.10.0 to 17.14.1 Bumps Moq from 4.16.1 to 4.20.72 Bumps Serilog from 3.1.1 to 4.3.0 Bumps Serilog.Extensions.Logging from 7.0.0 to 9.0.2 Bumps Serilog.Sinks.Console from 5.0.1 to 6.0.0 Bumps System.Formats.Asn1 from 9.0.3 to 9.0.6 Bumps xunit from 2.8.1 to 2.9.3 Bumps xunit.runner.visualstudio from 2.8.1 to 3.1.1 Bumps Xunit.SkippableFact from 1.4.13 to 1.5.23 --- updated-dependencies: - dependency-name: coverlet.collector dependency-version: 6.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all_packages - dependency-name: Microsoft.Bcl.Cryptography dependency-version: 9.0.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all_packages - dependency-name: Microsoft.Extensions.Logging.Console dependency-version: 9.0.6 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 17.14.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all_packages - dependency-name: Moq dependency-version: 4.20.72 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all_packages - dependency-name: Serilog dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages - dependency-name: Serilog.Extensions.Logging dependency-version: 9.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages - dependency-name: Serilog.Sinks.Console dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages - dependency-name: System.Formats.Asn1 dependency-version: 9.0.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all_packages - dependency-name: xunit dependency-version: 2.9.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all_packages - dependency-name: xunit.runner.visualstudio dependency-version: 3.1.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages - dependency-name: Xunit.SkippableFact dependency-version: 1.5.23 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all_packages ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 475cb2c commit 9723566

File tree

3 files changed

+152
-152
lines changed

3 files changed

+152
-152
lines changed
Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
1-
<!-- Copyright 2021 Yubico AB
2-
3-
Licensed under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License.
5-
You may obtain a copy of the License at
6-
7-
http://www.apache.org/licenses/LICENSE-2.0
8-
9-
Unless required by applicable law or agreed to in writing, software
10-
distributed under the License is distributed on an "AS IS" BASIS,
11-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
See the License for the specific language governing permissions and
13-
limitations under the License. -->
14-
15-
<Project Sdk="Microsoft.NET.Sdk">
16-
17-
<PropertyGroup>
18-
<AssemblyName>Yubico.YubiKey.IntegrationTests</AssemblyName>
19-
<RootNamespace></RootNamespace>
20-
<PackageId>Yubico.YubiKey.IntegrationTests</PackageId>
21-
22-
<TargetFramework>net8.0</TargetFramework>
23-
24-
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
25-
26-
<!-- StrongName signing -->
27-
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
28-
be strong named, since it uses InternalsVisibleTo. -->
29-
<SignAssembly>true</SignAssembly>
30-
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
31-
</PropertyGroup>
32-
33-
<ItemGroup>
34-
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
35-
<PackageReference Include="System.Formats.Asn1" Version="9.0.3" />
36-
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
37-
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
38-
<ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" />
39-
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
40-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
41-
<PackageReference Include="Serilog" Version="3.1.1" />
42-
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
43-
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
44-
<PackageReference Include="coverlet.collector" Version="6.0.2" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
45-
<PackageReference Include="xunit" Version="2.8.1" />
46-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
47-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
48-
<PackageReference Include="Moq" Version="4.16.1" />
49-
50-
<None Update="xunit.runner.json">
51-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
52-
</None>
53-
54-
<None Update="appsettings.json">
55-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
56-
</None>
57-
</ItemGroup>
58-
</Project>
1+
<!-- Copyright 2021 Yubico AB
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. -->
14+
15+
<Project Sdk="Microsoft.NET.Sdk">
16+
17+
<PropertyGroup>
18+
<AssemblyName>Yubico.YubiKey.IntegrationTests</AssemblyName>
19+
<RootNamespace></RootNamespace>
20+
<PackageId>Yubico.YubiKey.IntegrationTests</PackageId>
21+
22+
<TargetFramework>net8.0</TargetFramework>
23+
24+
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
25+
26+
<!-- StrongName signing -->
27+
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
28+
be strong named, since it uses InternalsVisibleTo. -->
29+
<SignAssembly>true</SignAssembly>
30+
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
31+
</PropertyGroup>
32+
33+
<ItemGroup>
34+
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
35+
<PackageReference Include="System.Formats.Asn1" Version="9.0.6" />
36+
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
37+
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
38+
<ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" />
39+
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
40+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.6" />
41+
<PackageReference Include="Serilog" Version="4.3.0" />
42+
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
43+
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
44+
<PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
45+
<PackageReference Include="xunit" Version="2.9.3" />
46+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
47+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
48+
<PackageReference Include="Moq" Version="4.20.72" />
49+
50+
<None Update="xunit.runner.json">
51+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
52+
</None>
53+
54+
<None Update="appsettings.json">
55+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
56+
</None>
57+
</ItemGroup>
58+
</Project>
Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
1-
<!-- Copyright 2021 Yubico AB
2-
3-
Licensed under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License.
5-
You may obtain a copy of the License at
6-
7-
http://www.apache.org/licenses/LICENSE-2.0
8-
9-
Unless required by applicable law or agreed to in writing, software
10-
distributed under the License is distributed on an "AS IS" BASIS,
11-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
See the License for the specific language governing permissions and
13-
limitations under the License. -->
14-
15-
<Project Sdk="Microsoft.NET.Sdk">
16-
17-
<PropertyGroup>
18-
<AssemblyName>Yubico.YubiKey.UnitTests</AssemblyName>
19-
<PackageId>Yubico.YubiKey.UnitTests</PackageId>
20-
<RootNamespace></RootNamespace>
21-
22-
<TargetFramework>net8.0</TargetFramework>
23-
24-
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
25-
26-
<!-- StrongName signing -->
27-
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
28-
be strong named, since it uses InternalsVisibleTo. -->
29-
<SignAssembly>true</SignAssembly>
30-
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
31-
</PropertyGroup>
32-
33-
<ItemGroup>
34-
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
35-
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
36-
<PackageReference Include="coverlet.collector" Version="6.0.2" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
37-
<PackageReference Include="xunit" Version="2.8.1" />
38-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
39-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
40-
<PackageReference Include="Moq" Version="4.16.1" />
41-
</ItemGroup>
42-
43-
<ItemGroup>
44-
<None Update="appsettings.json">
45-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
46-
</None>
47-
</ItemGroup>
48-
</Project>
1+
<!-- Copyright 2021 Yubico AB
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. -->
14+
15+
<Project Sdk="Microsoft.NET.Sdk">
16+
17+
<PropertyGroup>
18+
<AssemblyName>Yubico.YubiKey.UnitTests</AssemblyName>
19+
<PackageId>Yubico.YubiKey.UnitTests</PackageId>
20+
<RootNamespace></RootNamespace>
21+
22+
<TargetFramework>net8.0</TargetFramework>
23+
24+
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
25+
26+
<!-- StrongName signing -->
27+
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
28+
be strong named, since it uses InternalsVisibleTo. -->
29+
<SignAssembly>true</SignAssembly>
30+
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
31+
</PropertyGroup>
32+
33+
<ItemGroup>
34+
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
35+
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
36+
<PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
37+
<PackageReference Include="xunit" Version="2.9.3" />
38+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
39+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
40+
<PackageReference Include="Moq" Version="4.20.72" />
41+
</ItemGroup>
42+
43+
<ItemGroup>
44+
<None Update="appsettings.json">
45+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
46+
</None>
47+
</ItemGroup>
48+
</Project>
Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
<!-- Copyright 2021 Yubico AB
2-
3-
Licensed under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License.
5-
You may obtain a copy of the License at
6-
7-
http://www.apache.org/licenses/LICENSE-2.0
8-
9-
Unless required by applicable law or agreed to in writing, software
10-
distributed under the License is distributed on an "AS IS" BASIS,
11-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
See the License for the specific language governing permissions and
13-
limitations under the License. -->
14-
15-
<Project Sdk="Microsoft.NET.Sdk">
16-
17-
<PropertyGroup>
18-
<AssemblyName>Yubico.YubiKey.TestUtilities</AssemblyName>
19-
<RootNamespace></RootNamespace>
20-
<TargetFramework>net8.0</TargetFramework>
21-
<AnalysisMode>Minimum</AnalysisMode>
22-
23-
<!-- StrongName signing -->
24-
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
25-
be strong named, since it uses InternalsVisibleTo. -->
26-
<SignAssembly>true</SignAssembly>
27-
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
28-
</PropertyGroup>
29-
30-
<ItemGroup>
31-
<PackageReference Include="Microsoft.Bcl.Cryptography" Version="9.0.2" />
32-
<PackageReference Include="Moq" Version="4.16.1" />
33-
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
34-
</ItemGroup>
35-
36-
<ItemGroup>
37-
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
38-
</ItemGroup>
39-
40-
<ItemGroup>
41-
<Content Include="TestData\**\*.*">
42-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
43-
</Content>
44-
</ItemGroup>
45-
46-
</Project>
1+
<!-- Copyright 2021 Yubico AB
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. -->
14+
15+
<Project Sdk="Microsoft.NET.Sdk">
16+
17+
<PropertyGroup>
18+
<AssemblyName>Yubico.YubiKey.TestUtilities</AssemblyName>
19+
<RootNamespace></RootNamespace>
20+
<TargetFramework>net8.0</TargetFramework>
21+
<AnalysisMode>Minimum</AnalysisMode>
22+
23+
<!-- StrongName signing -->
24+
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
25+
be strong named, since it uses InternalsVisibleTo. -->
26+
<SignAssembly>true</SignAssembly>
27+
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
28+
</PropertyGroup>
29+
30+
<ItemGroup>
31+
<PackageReference Include="Microsoft.Bcl.Cryptography" Version="9.0.6" />
32+
<PackageReference Include="Moq" Version="4.20.72" />
33+
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
34+
</ItemGroup>
35+
36+
<ItemGroup>
37+
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
38+
</ItemGroup>
39+
40+
<ItemGroup>
41+
<Content Include="TestData\**\*.*">
42+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
43+
</Content>
44+
</ItemGroup>
45+
46+
</Project>

0 commit comments

Comments
 (0)