Skip to content

Commit

Permalink
Fix #8
Browse files Browse the repository at this point in the history
  • Loading branch information
franklupo committed Jun 14, 2022
1 parent 9d9b146 commit 326f434
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Corsinvest.ProxmoxVE.Diagnostic.Api/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ private static void CheckThreshold(List<DiagnosticResult> result,
string MakeDescription(string PrefixDescription, double usage, double size)
{
var txt = $"{PrefixDescription} usage {GetValue(usage, size)}%";
if (formatByte) { txt += $" {ByteSize.FromBytes(usage)} of {ByteSize.FromBytes(size)}"; }
if (formatByte) { txt += $" - {ByteSize.FromBytes(usage)} of {ByteSize.FromBytes(size)}"; }
return txt;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>1.5.3</Version>
<Version>1.5.4</Version>
<Company>Corsinvest Srl</Company>
<Authors>Daniele Corsini</Authors>
<Copyright>Corsinvest Srl</Copyright>
Expand Down Expand Up @@ -31,6 +31,6 @@

<ItemGroup>
<!-- <ProjectReference Include="..\..\..\cv4pve-api-dotnet\src\Corsinvest.ProxmoxVE.Api.Extension\Corsinvest.ProxmoxVE.Api.Extension.csproj" /> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Extension" Version="7.3.4" />
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Extension" Version="7.3.5" />
</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.4.2</Version>
<Version>1.4.3</Version>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>cv4pve-diag</AssemblyName>
<Company>Corsinvest Srl</Company>
Expand All @@ -19,10 +19,10 @@

<ItemGroup>
<!-- <ProjectReference Include="..\..\..\cv4pve-api-dotnet\src\Corsinvest.ProxmoxVE.Api.Shell\Corsinvest.ProxmoxVE.Api.Shell.csproj" /> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Shell" Version="7.3.4" />
<PackageReference Include="Corsinvest.ProxmoxVE.Api.Shell" Version="7.3.5" />

<!-- <ProjectReference Include="..\Corsinvest.ProxmoxVE.Diagnostic.Api\Corsinvest.ProxmoxVE.Diagnostic.Api.csproj" /> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Diagnostic.Api" Version="1.5.3" />
<!--<ProjectReference Include="..\Corsinvest.ProxmoxVE.Diagnostic.Api\Corsinvest.ProxmoxVE.Diagnostic.Api.csproj" /> -->
<PackageReference Include="Corsinvest.ProxmoxVE.Diagnostic.Api" Version="1.5.4" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 326f434

Please sign in to comment.