Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Dirkster99/TreeLib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2
Choose a base ref
...
head repository: Dirkster99/TreeLib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on Jul 5, 2019

  1. Copy the full SHA
    adb9145 View commit details
  2. Update README.md

    Dirkster99 authored Jul 5, 2019
    Copy the full SHA
    81b4083 View commit details
  3. Update README.md

    Dirkster99 authored Jul 5, 2019
    Copy the full SHA
    c285628 View commit details
  4. Update README.md

    Dirkster99 authored Jul 5, 2019
    Copy the full SHA
    562bfe7 View commit details
  5. Update README.md

    Dirkster99 authored Jul 5, 2019
    Copy the full SHA
    fd61f29 View commit details
Showing with 9 additions and 6 deletions.
  1. +5 −2 README.md
  2. +1 −1 source/TreeLib/TreeLib.csproj
  3. +2 −2 source/TreeLibNugetDemo/TreeLibNugetDemo.csproj
  4. +1 −1 source/TreeLibNugetDemo/packages.config
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -3,8 +3,11 @@
[![NuGet](https://img.shields.io/nuget/dt/Dirkster.TreeLib.svg)](http://nuget.org/packages/Dirkster.TreeLib)

# TreeLib
This project produces a <a href="https://docs.microsoft.com/en-us/dotnet/standard/net-standard">.Net Standard</a>
Library with Generic methods to traverse k-ary trees in different orders (Post, Pre, Level) of traversal.
This project provides a:
- <a href="https://docs.microsoft.com/en-us/dotnet/standard/net-standard">.Net Standard</a> Library (1.4, 1.6, 2.0) or a
- .Net framework 4.0 Library

with Generic methods to traverse k-ary trees in different orders (Post-Order, Pre-Order, Level-Order) of traversal. This implementation includes scalable algorithms that return `IEnumerable<T>` to make parsing large tree structures a piece of cake, as well, as [Generic Exception handling](https://github.com/Dirkster99/TreeLib/blob/adb9145b9c5baaf0ee8bd6f5fe5982354d962dc2/source/TreeLibNugetDemo/Demos/Directories/DirectorySize.cs#L85-#L86) to ensure that traversal algorithms complete despite unexpected errors on some nodes.

Review demo projects:
* in this solution,
2 changes: 1 addition & 1 deletion source/TreeLib/TreeLib.csproj
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

<TargetFramework>netstandard1.6</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Dirkster.TreeLib</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Authors>Dirk Bahle</Authors>
4 changes: 2 additions & 2 deletions source/TreeLibNugetDemo/TreeLibNugetDemo.csproj
Original file line number Diff line number Diff line change
@@ -40,8 +40,8 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="TreeLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dirkster.TreeLib.1.1.0\lib\net40\TreeLib.dll</HintPath>
<Reference Include="TreeLib, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dirkster.TreeLib.1.2.0\lib\net40\TreeLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
2 changes: 1 addition & 1 deletion source/TreeLibNugetDemo/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="Dirkster.TreeLib" version="1.1.0" targetFramework="net461" />
<package id="Dirkster.TreeLib" version="1.2.0" targetFramework="net452" />
</packages>