Skip to content

Commit

Permalink
Merge pull request #1170 from HicServices/dependabot/nuget/develop/NL…
Browse files Browse the repository at this point in the history
…og-5.0.0
  • Loading branch information
dependabot[bot] authored May 17, 2022
2 parents 05acc3e + 6e3c099 commit 02d2c76
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Documentation/CodeTutorials/Packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
| CsvHelper | [GitHub](https://github.com/JoshClose/CsvHelper) | [27.2.1](https://www.nuget.org/packages/CsvHelper/27.2.1) | MS-PL / Apache 2.0 | Enables reading/writing CSV files |
| NPOI | [GitHub](https://github.com/tonyqus/npoi) | [2.5.5](https://www.nuget.org/packages/NPOI/2.5.5) | Apache 2.0 | Enables reading/writing Microsoft Excel files |
| ExcelNumberFormat | [GitHub](https://github.com/andersnm/ExcelNumberFormat) | [1.1.0](https://www.nuget.org/packages/ExcelNumberFormat/1.1.0) |[MIT](https://opensource.org/licenses/MIT) | Handles translating number formats from Excel formats into usable values | |
| [NLog](https://nlog-project.org/) | [GitHub](https://github.com/NLog/NLog) | [4.7.15](https://www.nuget.org/packages/NLog/4.7.15) | [BSD 3-Clause](https://github.com/NLog/NLog/blob/dev/LICENSE.txt) | Flexible user configurable logging | |
| [NLog](https://nlog-project.org/) | [GitHub](https://github.com/NLog/NLog) | [5.0.0](https://www.nuget.org/packages/NLog/5.0.0) | [BSD 3-Clause](https://github.com/NLog/NLog/blob/dev/LICENSE.txt) | Flexible user configurable logging | |
| HIC.FAnsiSql |[GitHub](https://github.com/HicServices/FAnsiSql) | [2.0.4](https://www.nuget.org/packages/HIC.FansiSql/2.0.4) | [GPL 3.0](https://www.gnu.org/licenses/gpl-3.0.html) | [DBMS] abstraction layer |
| HIC.BadMedicine | [GitHub](https://github.com/HicServices/BadMedicine) | [1.0.1](https://www.nuget.org/packages/HIC.BadMedicine/1.0.1) | [GPL 3.0](https://www.gnu.org/licenses/gpl-3.0.html) | Generate Test Datasets for tests/exericses |
| SSH.NET | [GitHub](https://github.com/sshnet/SSH.NET) | [2020.0.1](https://www.nuget.org/packages/SSH.NET/2020.0.1) | [MIT](https://github.com/sshnet/SSH.NET/blob/develop/LICENSE) | Enables fetching files from SFTP servers |
Expand Down
2 changes: 1 addition & 1 deletion Plugins/Plugin.Test/Plugin.Test.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency id="SSH.NET" version="2020.0.1" />
<dependency id="NUnit" version="3.13.3" />
<dependency id="Moq" version="4.18.1" />
<dependency id="NLog" version="4.7.15" />
<dependency id="NLog" version="5.0.0" />
<dependency id="YamlDotNet" version="11.2.1" />
<dependency id="Microsoft.NET.Test.Sdk" version="17.2.0" />
<dependency id="ExcelNumberFormat" version="1.1.0" />
Expand Down
2 changes: 1 addition & 1 deletion Plugins/Plugin.UI/Plugin.UI.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency id="ObjectListView.Official" version="2.9.1" />
<dependency id="CommandLineParser" version="2.8.0" />
<dependency id="SSH.NET" version="2020.0.1" />
<dependency id="NLog" version="4.7.15" />
<dependency id="NLog" version="5.0.0" />
<dependency id="ExcelNumberFormat" version="1.1.0" />
<dependency id="NPOI" version="2.5.5" />
<dependency id="System.Runtime.Loader" version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion Plugins/Plugin/Plugin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency id="CommandLineParser" version="2.8.0" />
<dependency id="SSH.NET" version="2020.0.1" />
<dependency id="HIC.FAnsiSql" version="2.0.4" />
<dependency id="NLog" version="4.7.15" />
<dependency id="NLog" version="5.0.0" />
<dependency id="HIC.BadMedicine" version="1.0.1" />
<dependency id="ExcelNumberFormat" version="1.1.0" />
<dependency id="NPOI" version="2.5.5" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<ProjectReference Include="..\ReusableLibraryCode\ReusableLibraryCode.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="4.7.15" />
<PackageReference Include="NLog" Version="5.0.0" />
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions Tools/rdmp/CommandLine/Gui/ConsoleGuiRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public int Run(IRDMPPlatformRepositoryServiceLocator repositoryLocator, IDataLoa
_activator = new ConsoleGuiActivator(repositoryLocator,checkNotifier);
ConsoleMainWindow.StaticActivator = _activator;

LogManager.DisableLogging();
LogManager.SuspendLogging();

if (options.UseSystemConsole)
{
Expand All @@ -55,7 +55,7 @@ public int Run(IRDMPPlatformRepositoryServiceLocator repositoryLocator, IDataLoa
}
catch (Exception e)
{
LogManager.EnableLogging();
LogManager.ResumeLogging();
LogManager.GetCurrentClassLogger().Error(e, "Application Crashed");
top.Running = false;
return -1;
Expand Down

0 comments on commit 02d2c76

Please sign in to comment.