Skip to content

Commit

Permalink
Update NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1956 committed Mar 21, 2024
1 parent c91896f commit 0468450
Show file tree
Hide file tree
Showing 6 changed files with 458 additions and 1,772 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ dotnet_style_allow_statement_immediately_after_block_experimental = true:suggest
dotnet_code_quality_unused_parameters = all:suggestion
dotnet_style_qualification_for_method = true:warning
dotnet_diagnostic.CA1051.severity = suggestion
dotnet_style_prefer_collection_expression = true:suggestion
dotnet_style_prefer_collection_expression = when_types_exactly_match:suggestion

# C# files
[*.cs]
Expand Down
14 changes: 7 additions & 7 deletions src/CareLink/CareLink.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<Copyright>Copyright (c) .NET Foundation and Contributors</Copyright>
<RepositoryUrl>https://github.com/paul1956/CareLink</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>4.0.0.16</Version>
<AssemblyVersion>4.0.0.16</AssemblyVersion>
<FileVersion>4.0.0.16</FileVersion>
<Version>4.0.0.17</Version>
<AssemblyVersion>4.0.0.17</AssemblyVersion>
<FileVersion>4.0.0.17</FileVersion>
<PackageIcon>IconImage.png</PackageIcon>
<PackageIconUrl />
<PackageProjectUrl>https://github.com/paul1956/CareLink</PackageProjectUrl>
Expand Down Expand Up @@ -57,15 +57,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.102.2" />
<PackageReference Include="ClosedXML" Version="0.104.0-preview2" />
<PackageReference Include="DataGridViewDisableButtonColumnEx" Version="1.0.0.1" />
<PackageReference Include="FreeSpire.PDF" Version="8.6.0" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2365.46" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2415-prerelease" />
<PackageReference Include="Octokit" Version="10.0.0" />
<PackageReference Include="System.Speech" Version="8.0.0" />
<PackageReference Include="System.Speech" Version="9.0.0-preview.2.24128.5" />
<PackageReference Include="TableLayputPanelTop" Version="1.0.0.3" />
<PackageReference Include="ToolStripComboBoxEx" Version="1.0.0.2" />
<PackageReference Include="WebView2.DevTools.Dom" Version="3.0.1" />
<PackageReference Include="WebView2.DevTools.Dom" Version="4.0.1" />
<PackageReference Include="WinForms.DataVisualization" Version="1.9.2" />
</ItemGroup>

Expand Down
6 changes: 1 addition & 5 deletions src/CareLink/Extensions/MathExtensions.vb
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,7 @@ Friend Module MathExtensions
<Extension>
Public Function RoundTo025(originalValue As Single) As Single

If Single.IsNaN(originalValue) Then
Return Single.NaN
Else
Return CDbl(originalValue).RoundTo025
End If
Return If(Single.IsNaN(originalValue), Single.NaN, CDbl(originalValue).RoundTo025)

End Function

Expand Down
2 changes: 1 addition & 1 deletion src/CareLink/obj/CareLink.vbproj.nuget.g.props
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
</Content>
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Web_WebView2 Condition=" '$(PkgMicrosoft_Web_WebView2)' == '' ">C:\Users\PaulM\.nuget\packages\microsoft.web.webview2\1.0.2365.46</PkgMicrosoft_Web_WebView2>
<PkgMicrosoft_Web_WebView2 Condition=" '$(PkgMicrosoft_Web_WebView2)' == '' ">C:\Users\PaulM\.nuget\packages\microsoft.web.webview2\1.0.2415-prerelease</PkgMicrosoft_Web_WebView2>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/CareLink/obj/CareLink.vbproj.nuget.g.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.web.webview2\1.0.2365.46\build\Microsoft.Web.WebView2.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.web.webview2\1.0.2365.46\build\Microsoft.Web.WebView2.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.web.webview2\1.0.2415-prerelease\build\Microsoft.Web.WebView2.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.web.webview2\1.0.2415-prerelease\build\Microsoft.Web.WebView2.targets')" />
</ImportGroup>
</Project>
Loading

0 comments on commit 0468450

Please sign in to comment.