Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
Signed-off-by: Alessio Gogna <[email protected]>
  • Loading branch information
alecsg77 committed Jun 27, 2020
2 parents 4b2a8b5 + f9243d4 commit 5cffead
Show file tree
Hide file tree
Showing 112 changed files with 9,340 additions and 2,803 deletions.
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@
"${workspaceFolder}/ExpressionTreeToolkit.UnitTests/ExpressionTreeToolkit.UnitTests.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "DocBuild",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/docfx/ExpressionTreeToolkit.DocFX.proj",
"-t:DocBuild"
],
"group": "build",
"problemMatcher": []
},
{
"label": "DocServe",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/docfx/ExpressionTreeToolkit.DocFX.proj",
"-t:DocServe"
],
"dependsOn": [
"DocBuild"
],
"problemMatcher": []
}
]
}
34 changes: 27 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@
# ExpressionTreeToolkit
[![Build](https://img.shields.io/azure-devops/build/alecsg77/6874db54-d5ec-4a83-b731-15da00bcbcde/22/master?logo=azure%20pipelines)](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_build/latest?definitionId=22&branchName=master)
[![Nuget](https://img.shields.io/nuget/v/ExpressionTreeToolkit.Core?logo=nuget)](https://www.nuget.org/packages/ExpressionTreeToolkit.Core/)
[![MyGet](https://img.shields.io/myget/expressiontreetoolkit/vpre/ExpressionTreeToolkit.Core?label=ExpressionTreeToolkit.Core)](https://www.myget.org/gallery/expressiontreetoolkit)
[![GitHub deployments](https://img.shields.io/github/deployments/alecsg77/ExpressionTreeToolkit/github-pages?label=DocFX&logo=github)](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_build/latest?definitionId=22&branchName=develop)

## What is Expression Tree Toolkit

The Expression Tree Toolkit is a collection of helper functions, extension methods, and ready-to-use classes. It simplifies common developer tasks manipulating expression trees.

## Status
# Summary

- Expression Equality Comparer
- Expression Iterator

# Getting Started

| NuGet Package Name | Description |
| --- | --- |
| ExpressionTreeToolkit.Core | .NET NuGet package containing core code |

# See It In Action

ExpressionEqualityComparer example on [dotnetfiddle](https://dotnetfiddle.net/O2gVw7)

# Contribution Guidelines
Please use [GitHub Issues](https://github.com/alecsg77/ExpressionTreeToolkit/issues) for bug reports and feature requests.

| | |
|:-|:-:|
Build | [![Build Status](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_apis/build/status/ExpressionTreeToolkit?branchName=master&stageName=Build)](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_build/latest?definitionId=22&branchName=master)
MyGet | [![MyGet deployment](https://alecsg77.vsrm.visualstudio.com/_apis/public/Release/badge/6874db54-d5ec-4a83-b731-15da00bcbcde/1/1)](https://www.myget.org/gallery/expressiontreetoolkit)
NuGet | [![NuGet deployment](https://alecsg77.vsrm.visualstudio.com/_apis/public/Release/badge/6874db54-d5ec-4a83-b731-15da00bcbcde/1/2)](https://www.nuget.org/packages/ExpressionTreeToolkit.Core/)
Docs | [![Build Status](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_apis/build/status/ExpressionTreeToolkit?branchName=master&stageName=Release&jobName=GitHub%20Pages)](https://dev.azure.com/alecsg77/ExpressionTreeToolkit/_build/latest?definitionId=22&branchName=develop)
## Logo Credits
Font in use [Comfortaa-Bold](https://fonts.google.com/specimen/Comfortaa) designed by [Johan Aakerlund](https://aajohan.deviantart.com/) and licensed under [Open Font License](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web).
[Tree](http://thenounproject.com/term/tree/173/)” icon by Edward Boatman from [the Noun Project](http://thenounproject.com/).
Loading

0 comments on commit 5cffead

Please sign in to comment.