Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change log4net dependency to [2.0,3.0) #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions LoggingExtensions.log4net/LoggingExtensions.log4net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
<AssemblyOriginatorKeyFile>..\LoggingExtensions.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
<Private>True</Private>
<HintPath>..\packages\log4net.1.2.10\lib\2.0\log4net.dll</HintPath>
<Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Public key is the issue here. :/

<HintPath>..\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion LoggingExtensions.log4net/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="log4net" version="1.2.10" targetFramework="net40" allowedVersions="[1.2.10]" />
<package id="log4net" version="2.0.3" targetFramework="net40" />
</packages>
14 changes: 7 additions & 7 deletions LoggingExtensions.log4net/this.log-log4net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>this.Log-log4net - this.Log logging extension using log4net</summary>
<description>this.Log-log4net is the log4net plugin to this.Log logging extension.</description>
<releaseNotes>
== v0.0.3 ==
Strong named the assembly - https://github.com/ferventcoder/this.Log/pull/6
Report the correct logger - https://github.com/ferventcoder/this.Log/pull/2 | https://github.com/ferventcoder/this.Log/issues/1
Error and Fatal can now have Exceptions passed to them (only the Func&lt;string&gt; versions though) - https://github.com/ferventcoder/this.Log/commit/4a468d2836312184597981e5e91a98909e23f1f8
<releaseNotes>
== v0.0.3 ==
Strong named the assembly - https://github.com/ferventcoder/this.Log/pull/6
Report the correct logger - https://github.com/ferventcoder/this.Log/pull/2 | https://github.com/ferventcoder/this.Log/issues/1
Error and Fatal can now have Exceptions passed to them (only the Func&lt;string&gt; versions though) - https://github.com/ferventcoder/this.Log/commit/4a468d2836312184597981e5e91a98909e23f1f8
</releaseNotes>
<copyright>Copyright 2012</copyright>
<tags>logging log this.Log log4net</tags>
<dependencies>
<dependency id="this.Log" version="0.0.3.0" />
<dependency id="log4net" version="[1.2.10]" />
<dependency id="this.Log" version="0.0.4.0" />
<dependency id="log4net" version="[2.0,3.0)" />
</dependencies>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions SharedAssembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]

[assembly: AssemblyVersion("0.0.3.0")]
[assembly: AssemblyFileVersion("0.0.3.0")]
[assembly: AssemblyVersion("0.0.4.0")]
[assembly: AssemblyFileVersion("0.0.4.0")]