Skip to content

Commit

Permalink
Update log4net library to 2.0.13 See Issue #840, Issue #824
Browse files Browse the repository at this point in the history
  • Loading branch information
jimradford committed Nov 23, 2021
1 parent 6a5613d commit 0762d04
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SuperPutty/Log4netDebugLogForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Log4netLogViewer()
// start pulling log messages
this.timerLogPull.Start();

Log.Info("Viewer Ready (" + log4net.AssemblyInfo.Version + ")");
Log.Info("Viewer Ready");
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions SuperPutty/SuperPutty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
<Reference Include="log4net, Version=2.0.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="Renci.SshNet, Version=2020.0.1.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
Expand Down
2 changes: 1 addition & 1 deletion SuperPutty/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="DockPanelSuite" version="3.0.6" targetFramework="net45" />
<package id="log4net" version="2.0.10" targetFramework="net45" />
<package id="log4net" version="2.0.13" targetFramework="net45" />
<package id="Microsoft.VisualBasic" version="10.3.0" targetFramework="net45" />
<package id="SSH.NET" version="2020.0.1" targetFramework="net45" />
</packages>
5 changes: 3 additions & 2 deletions SuperPuttyUnitTests/SuperPuttyUnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
<StartupObject>SuperPuttyUnitTests.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
<Reference Include="log4net, Version=2.0.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="nunit-console-runner">
<HintPath>NUnit\nunit-console-runner.dll</HintPath>
Expand All @@ -72,6 +72,7 @@
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
Expand Down
2 changes: 1 addition & 1 deletion SuperPuttyUnitTests/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="DockPanelSuite" version="3.0.6" targetFramework="net45" />
<package id="log4net" version="2.0.10" targetFramework="net45" />
<package id="log4net" version="2.0.13" targetFramework="net45" />
</packages>

0 comments on commit 0762d04

Please sign in to comment.