Skip to content

Commit 6b4ed8d

Browse files
Package updates
1 parent a753f07 commit 6b4ed8d

File tree

18 files changed

+191
-188
lines changed

18 files changed

+191
-188
lines changed

src/Certify.Aspire/Certify.Aspire.ServiceDefaults/Certify.Aspire.ServiceDefaults.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ItemGroup>
1212
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1313

14-
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.1.0" />
14+
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.2.0" />
1515
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" Version="9.0.0" />
1616
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.1" />
1717
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.11.1" />

src/Certify.CLI/Certify.CLI.csproj

Lines changed: 64 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,68 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFrameworks>net462;net9.0</TargetFrameworks>
4-
<Configurations>Debug;Release;Debug;Release</Configurations>
5-
<AssemblyName>Certify</AssemblyName>
6-
<OutputType>Exe</OutputType>
7-
<Platforms>AnyCPU</Platforms>
8-
</PropertyGroup>
9-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
10-
<PlatformTarget>AnyCPU</PlatformTarget>
11-
<Optimize>false</Optimize>
12-
<OutputPath>bin\Debug\</OutputPath>
13-
<DefineConstants>DEBUG;TRACE</DefineConstants>
14-
<ErrorReport>prompt</ErrorReport>
15-
<WarningLevel>4</WarningLevel>
16-
<CodeAnalysisRuleSet>..\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
17-
<Prefer32Bit>false</Prefer32Bit>
18-
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
20-
<PlatformTarget>AnyCPU</PlatformTarget>
21-
<Optimize>true</Optimize>
22-
<OutputPath>bin\Release\</OutputPath>
23-
<DefineConstants>TRACE</DefineConstants>
24-
<ErrorReport>prompt</ErrorReport>
25-
<WarningLevel>4</WarningLevel>
26-
<Prefer32Bit>false</Prefer32Bit>
27-
</PropertyGroup>
28-
<PropertyGroup>
29-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
30-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
31-
<ProjectGuid>{DA0CCD9F-8CBD-4471-93E0-53BCFB6CA25E}</ProjectGuid>
32-
<OutputType>Exe</OutputType>
33-
<RootNamespace>Certify.CLI</RootNamespace>
34-
<AssemblyName>Certify</AssemblyName>
35-
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
36-
<FileAlignment>512</FileAlignment>
37-
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
38-
<TargetFrameworkProfile />
39-
<NuGetPackageImportStamp />
40-
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
41-
<ApplicationManifest>app.manifest</ApplicationManifest>
42-
<StartupObject>Certify.CLI.Program</StartupObject>
43-
</PropertyGroup>
44-
<PropertyGroup>
45-
<LangVersion>default</LangVersion>
46-
<ApplicationIcon>icon_cli.ico</ApplicationIcon>
47-
</PropertyGroup>
48-
<ItemGroup>
49-
<Content Include="icon_cli.ico" />
50-
</ItemGroup>
51-
<ItemGroup>
52-
<ProjectReference Include="..\Certify.Client\Certify.Client.csproj" />
53-
<ProjectReference Include="..\Certify.Core\Certify.Core.csproj" />
54-
<ProjectReference Include="..\Certify.Locales\Certify.Locales.csproj" />
55-
<ProjectReference Include="..\Certify.Models\Certify.Models.csproj" />
56-
<ProjectReference Include="..\Certify.Shared\Certify.Shared.Core.csproj" />
57-
</ItemGroup>
2+
<PropertyGroup>
3+
<TargetFrameworks>net462;net9.0</TargetFrameworks>
4+
<Configurations>Debug;Release;Debug;Release</Configurations>
5+
<AssemblyName>Certify</AssemblyName>
6+
<OutputType>Exe</OutputType>
7+
<Platforms>AnyCPU</Platforms>
8+
<LangVersion>latest</LangVersion>
9+
</PropertyGroup>
10+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
11+
<PlatformTarget>AnyCPU</PlatformTarget>
12+
<Optimize>false</Optimize>
13+
<OutputPath>bin\Debug\</OutputPath>
14+
<DefineConstants>DEBUG;TRACE</DefineConstants>
15+
<ErrorReport>prompt</ErrorReport>
16+
<WarningLevel>4</WarningLevel>
17+
<CodeAnalysisRuleSet>..\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
18+
<Prefer32Bit>false</Prefer32Bit>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
21+
<PlatformTarget>AnyCPU</PlatformTarget>
22+
<Optimize>true</Optimize>
23+
<OutputPath>bin\Release\</OutputPath>
24+
<DefineConstants>TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
<Prefer32Bit>false</Prefer32Bit>
28+
</PropertyGroup>
29+
<PropertyGroup>
30+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
31+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
32+
<ProjectGuid>{DA0CCD9F-8CBD-4471-93E0-53BCFB6CA25E}</ProjectGuid>
33+
<OutputType>Exe</OutputType>
34+
<RootNamespace>Certify.CLI</RootNamespace>
35+
<AssemblyName>Certify</AssemblyName>
36+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
37+
<FileAlignment>512</FileAlignment>
38+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
39+
<TargetFrameworkProfile />
40+
<NuGetPackageImportStamp />
41+
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
42+
<ApplicationManifest>app.manifest</ApplicationManifest>
43+
<StartupObject>Certify.CLI.Program</StartupObject>
44+
</PropertyGroup>
45+
<PropertyGroup>
46+
<LangVersion>default</LangVersion>
47+
<ApplicationIcon>icon_cli.ico</ApplicationIcon>
48+
</PropertyGroup>
49+
<ItemGroup>
50+
<Content Include="icon_cli.ico" />
51+
</ItemGroup>
52+
<ItemGroup>
53+
<ProjectReference Include="..\Certify.Client\Certify.Client.csproj" />
54+
<ProjectReference Include="..\Certify.Core\Certify.Core.csproj" />
55+
<ProjectReference Include="..\Certify.Locales\Certify.Locales.csproj" />
56+
<ProjectReference Include="..\Certify.Models\Certify.Models.csproj" />
57+
<ProjectReference Include="..\Certify.Shared\Certify.Shared.Core.csproj" />
58+
</ItemGroup>
5859

59-
<ItemGroup>
60-
<None Include="App.config" />
61-
<None Include="app.manifest" />
62-
</ItemGroup>
60+
<ItemGroup>
61+
<None Include="App.config" />
62+
<None Include="app.manifest" />
63+
</ItemGroup>
6364

64-
<ItemGroup>
65-
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
66-
</ItemGroup>
65+
<ItemGroup>
66+
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
67+
</ItemGroup>
6768
</Project>

src/Certify.Client/Certify.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
<ItemGroup>
1818
<PackageReference Include="Microsoft.AspNet.SignalR.Client" Version="2.4.3" />
19-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.1" />
20-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.1" />
21-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
19+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.2" />
20+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.2" />
21+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.4.0" />
2222
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2323
<PackageReference Include="Polly" Version="8.5.2" />
2424
<PackageReference Include="System.Net.Http" Version="4.3.4" />

src/Certify.Models/Certify.Models.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2323
</PackageReference>
24-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.1" />
25-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
24+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.2" />
25+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.4.0" />
2626
<PackageReference Include="Microsoft.Net.Compilers.Toolset" Version="4.12.0">
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -31,7 +31,7 @@
3131
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
3232
<PrivateAssets>all</PrivateAssets>
3333
</PackageReference>
34-
<PackageReference Include="System.Text.Json" Version="9.0.1" />
34+
<PackageReference Include="System.Text.Json" Version="9.0.2" />
3535
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
3636
</ItemGroup>
3737

src/Certify.Providers/DNS/AWSRoute53/Plugin.DNS.AWSRoute53.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="AWSSDK.Route53" Version="3.7.405.10" />
10+
<PackageReference Include="AWSSDK.Route53" Version="3.7.405.14" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Certify.Providers/DNS/Azure/Plugin.DNS.Azure.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Azure.Core" Version="1.44.1" />
10+
<PackageReference Include="Azure.Core" Version="1.45.0" />
1111
<PackageReference Include="Azure.Identity" Version="1.13.2" />
1212
<PackageReference Include="Azure.ResourceManager.Dns" Version="1.1.1" />
13-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.1" />
13+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

src/Certify.Server/Certify.Server.Core/Certify.Server.Core/Certify.Server.Core.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
</PropertyGroup>
1010
<ItemGroup>
1111
<PackageReference Include="Microsoft.AspNet.SignalR.Client" Version="2.4.3" />
12-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.1" />
12+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
1313
<PackageReference Include="Polly" Version="8.5.2" />
14-
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="9.0.1" />
15-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="9.0.2" />
15+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.1" />
1616
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
17-
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="9.0.1" />
18-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.1" />
19-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.1" />
20-
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.1" />
21-
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.1" />
17+
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="9.0.2" />
18+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.2" />
19+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.2" />
20+
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.2" />
21+
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.2" />
2222
</ItemGroup>
2323
<ItemGroup>
2424
<ProjectReference Include="..\..\..\..\..\certify\src\Certify.Core\Certify.Core.csproj" />

src/Certify.Server/Certify.Server.Hub.Api/Certify.Server.Hub.Api.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.1" />
22-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
23-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
21+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.2" />
22+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
23+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.1" />
2424
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
2525
</ItemGroup>
2626
<ItemGroup>

src/Certify.Server/Certify.Server.HubService/Certify.Server.HubService.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
16+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
1717
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
1818

1919
<!-- included to prevent conflict with older versions in plugins-->
20-
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.1" />
20+
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.2" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/Certify.Service/Certify.Service.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<PackageReference Include="Microsoft.AspNet.WebApi.Cors" Version="5.3.0" />
3838
<PackageReference Include="Microsoft.AspNet.WebApi.Owin" Version="5.3.0" />
3939
<PackageReference Include="Microsoft.AspNet.WebApi.OwinSelfHost" Version="5.3.0" />
40-
<PackageReference Include="Microsoft.Identity.Client" Version="4.67.2" />
41-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.1" />
40+
<PackageReference Include="Microsoft.Identity.Client" Version="4.68.0" />
41+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
4242
<PackageReference Include="Microsoft.Owin" Version="4.2.2" />
4343
<PackageReference Include="Microsoft.Owin.Cors" Version="4.2.2" />
4444
<PackageReference Include="Microsoft.Owin.Diagnostics" Version="4.2.2" />
@@ -49,13 +49,13 @@
4949
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
5050
<PackageReference Include="Owin" Version="1.0.0" />
5151
<PackageReference Include="Swashbuckle.Core" Version="5.6.0" />
52-
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.1" />
53-
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.1" />
54-
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.1" />
52+
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.2" />
53+
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.2" />
54+
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" />
5555
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
5656
<PackageReference Include="Topshelf" Version="4.3.0" />
5757
<PackageReference Include="Topshelf.Serilog" Version="4.3.0" />
58-
<PackageReference Include="System.Security.Permissions" Version="9.0.1" />
58+
<PackageReference Include="System.Security.Permissions" Version="9.0.2" />
5959

6060
</ItemGroup>
6161
<ItemGroup>

0 commit comments

Comments
 (0)