-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NuGet v1.3.1, remove BTree (.NET Core 2.0 compatibility and licensing)
- Loading branch information
Showing
66 changed files
with
146 additions
and
711 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": 1, | ||
"dgSpecHash": "EVfEqodzcZBG99IYD4XYMbQ1dpcZwmkGxAhXfW/Zp5gROQ4rNyoswkhzXsvU0M/TrPsg0rdjDUA0Hk9CsGRlyg==", | ||
"dgSpecHash": "t47nC91SI7qgPMu8dL4/ifM3lYXF63SkLX1yRIyXBhb9ZrWab7LfmuZ2HB2215s+lNbQG0vrQ4GT94U2rd0Edw==", | ||
"success": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>Caching.dll</id> | ||
<version>1.3.0</version> | ||
<authors>Joel Christner</authors> | ||
<owners>Joel Christner</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://github.com/jchristn/Caching/blob/master/LICENSE.txt</licenseUrl> | ||
<projectUrl>https://github.com/jchristn/caching</projectUrl> | ||
<description>Simple C# caching library including a FIFO and LRU cache</description> | ||
<releaseNotes>Retarget to .NET Core 2.0 and .NET Framework 4.5.2, remove CSharpTest.Net.Collections (BTree support) due to licensing and compatibility with .NET Core 2.0</releaseNotes> | ||
<copyright>(c)2019 Joel Christner</copyright> | ||
<repository type="Github" url="https://github.com/jchristn/caching" /> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5.2"> | ||
<dependency id="Microsoft.CSharp" version="4.5.0" exclude="Build,Analyzers" /> | ||
</group> | ||
<group targetFramework=".NETStandard2.0"> | ||
<dependency id="Microsoft.CSharp" version="4.5.0" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="C:\code\misc\Caching\Caching\bin\Release\net452\Caching.dll" target="lib\net452\Caching.dll" /> | ||
<file src="C:\code\misc\Caching\Caching\bin\Release\netstandard2.0\Caching.dll" target="lib\netstandard2.0\Caching.dll" /> | ||
</files> | ||
</package> |
Oops, something went wrong.