Skip to content

Commit

Permalink
Merge pull request #96 from franklupo/master
Browse files Browse the repository at this point in the history
Fix #93
  • Loading branch information
franklupo authored Dec 19, 2024
2 parents 9e9e8ba + dd81333 commit 2538952
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Corsinvest.ProxmoxVE.AutoSnap.Api/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public async Task<ResultSnap> SnapAsync(string vmIdsOrNames,
key,
storage.PluginType,
valid? "Ok": "Ko",
Math.Round(storage.DiskUsagePercentage * 100,1),
Math.Round(storage.DiskUsagePercentage * 100, 1),
FormatHelper.FromBytes(storage.DiskSize),
FormatHelper.FromBytes(storage.DiskUsage),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>

<Version>1.8.17</Version>
<Version>1.9.0</Version>

<Company>Corsinvest Srl</Company>
<Authors>Corsinvest Srl</Authors>
Expand Down Expand Up @@ -37,6 +37,6 @@
<!-- <ProjectReference
Include="..\..\..\cv4pve-api-dotnet\src\Corsinvest.ProxmoxVE.Api.Extension\Corsinvest.ProxmoxVE.Api.Extension.csproj"
/> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Extension" Version="8.2.5" />
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Extension" Version="8.3.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>1.14.11</Version>
<Version>1.15.0</Version>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>cv4pve-autosnap</AssemblyName>
<Company>Corsinvest Srl</Company>
Expand All @@ -19,7 +19,7 @@
<!-- <ProjectReference
Include="..\..\..\cv4pve-api-dotnet\src\Corsinvest.ProxmoxVE.Api.Shell\Corsinvest.ProxmoxVE.Api.Shell.csproj"
/> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Shell" Version="8.2.5" />
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Shell" Version="8.3.0" />

<ProjectReference
Include="..\Corsinvest.ProxmoxVE.AutoSnap.Api\Corsinvest.ProxmoxVE.AutoSnap.Api.csproj" />
Expand Down

0 comments on commit 2538952

Please sign in to comment.