Skip to content

Commit e78f9fd

Browse files
Bump Microsoft.Extensions.Logging.Console and 4 others
Bumps Microsoft.Extensions.Logging.Console from 8.0.0 to 9.0.6 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.Configuration.ConfigurationManager from 7.0.0 to 9.0.6 --- updated-dependencies: - 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: 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.Configuration.ConfigurationManager dependency-version: 9.0.6 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all_packages ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ecc66d2 commit e78f9fd

File tree

1 file changed

+53
-53
lines changed

1 file changed

+53
-53
lines changed
Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
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-
19-
<AssemblyName>YubiKeyTestApp</AssemblyName>
20-
<RootNamespace>Yubico.YubiKey.TestApp</RootNamespace>
21-
<TargetFramework>net8.0</TargetFramework>
22-
<OutputType>Exe</OutputType>
23-
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
24-
25-
<!-- StrongName signing -->
26-
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
27-
be strong named, since it uses InternalsVisibleTo. -->
28-
<SignAssembly>true</SignAssembly>
29-
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
30-
<StartupObject>Yubico.YubiKey.TestApp.Program</StartupObject>
31-
</PropertyGroup>
32-
33-
<ItemGroup>
34-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
35-
<PackageReference Include="Serilog" Version="3.1.1" />
36-
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
37-
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
38-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
39-
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" />
40-
</ItemGroup>
41-
42-
<ItemGroup>
43-
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
44-
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
45-
</ItemGroup>
46-
47-
<ItemGroup>
48-
<None Update="appsettings.json">
49-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
50-
</None>
51-
</ItemGroup>
52-
53-
</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+
19+
<AssemblyName>YubiKeyTestApp</AssemblyName>
20+
<RootNamespace>Yubico.YubiKey.TestApp</RootNamespace>
21+
<TargetFramework>net8.0</TargetFramework>
22+
<OutputType>Exe</OutputType>
23+
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
24+
25+
<!-- StrongName signing -->
26+
<!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must
27+
be strong named, since it uses InternalsVisibleTo. -->
28+
<SignAssembly>true</SignAssembly>
29+
<AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
30+
<StartupObject>Yubico.YubiKey.TestApp.Program</StartupObject>
31+
</PropertyGroup>
32+
33+
<ItemGroup>
34+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.6" />
35+
<PackageReference Include="Serilog" Version="4.3.0" />
36+
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
37+
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
38+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.6" />
39+
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" />
40+
</ItemGroup>
41+
42+
<ItemGroup>
43+
<ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" />
44+
<ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" />
45+
</ItemGroup>
46+
47+
<ItemGroup>
48+
<None Update="appsettings.json">
49+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
50+
</None>
51+
</ItemGroup>
52+
53+
</Project>

0 commit comments

Comments
 (0)