Skip to content

Commit cda2b82

Browse files
Merge pull request #35 from nullinside-development-group/feature/Update
Update dependencies
2 parents bd2863f + bd9a94f commit cda2b82

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

src/Nullinside.Api.Common.AspNetCore/Nullinside.Api.Common.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
<PrivateAssets>all</PrivateAssets>
2222
</PackageReference>
23-
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0"/>
24-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0"/>
23+
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.5" />
24+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/Nullinside.Api.Common/Docker/DockerProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public async Task<bool> TurnOnOffDockerCompose(string name, bool turnOn, Cancell
130130

131131
private async Task<(string output, string error)> ExecuteCommand(string command, CancellationToken token,
132132
string? dir = null) {
133-
using SshClient client = new(_server, _username, _password);
133+
using SshClient client = new(_server!, _username!, _password!);
134134
await client.ConnectAsync(token);
135135
using SshCommand? responseJson = client.RunCommand($"cd {dir}; echo {_password2} | sudo -S {command}");
136136
return (responseJson.Result, responseJson.Error);

src/Nullinside.Api.Common/Nullinside.Api.Common.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="log4net" Version="2.0.17"/>
19+
<PackageReference Include="log4net" Version="3.0.0" />
2020
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0"/>
2121
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
22-
<PackageReference Include="SSH.NET" Version="2024.0.0"/>
22+
<PackageReference Include="SSH.NET" Version="2024.1.0" />
2323
<PackageReference Include="TwitchLib.Api" Version="3.9.0"/>
2424
<PackageReference Include="TwitchLib.Client" Version="3.3.1"/>
2525
</ItemGroup>

src/Nullinside.Api.Model/Nullinside.Api.Model.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.3"/>
20-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
19+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
20+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
<PrivateAssets>all</PrivateAssets>
2323
</PackageReference>
24-
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0"/>
24+
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.5" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/Nullinside.Api/Nullinside.Api.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="Google.Apis.Oauth2.v2" Version="1.67.0.1869"/>
24+
<PackageReference Include="Google.Apis.Oauth2.v2" Version="1.68.0.1869" />
2525
<PackageReference Include="log4net.Ext.Json" Version="2.0.10.1"/>
26-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
26+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
<PrivateAssets>all</PrivateAssets>
2929
</PackageReference>
3030
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0"/>
31-
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0"/>
32-
<PackageReference Include="SSH.NET" Version="2024.0.0"/>
33-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0"/>
31+
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.5" />
32+
<PackageReference Include="SSH.NET" Version="2024.1.0" />
33+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3" />
3434
<PackageReference Include="TwitchLib.Api" Version="3.9.0"/>
3535
</ItemGroup>
3636

0 commit comments

Comments
 (0)