Skip to content

Commit

Permalink
Merge pull request #122 from bijington/add-nuget-readme
Browse files Browse the repository at this point in the history
Include ReadMe file for NuGet
  • Loading branch information
bijington authored Jan 17, 2022
2 parents ac96838 + 60d98ec commit 81b2b93
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Documentation/NuGet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Expressive

Expressive is a cross-platform expression parsing and evaluation framework. The cross-platform nature is achieved through compiling for `.NET Standard` so it will run on practically any platform.

Documentation on how to use the framework can be found [here](https://github.com/bijington/expressive/wiki).

## Usage Example

```csharp
var expression = new Expression("1+2");
var result = expression.Evaluate();
```

For further detail of usage please see the ([Usage wiki page](https://github.com/bijington/expressive/wiki/Usage))
2 changes: 2 additions & 0 deletions Source/Expressive/Expressive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Configurations>Release;Debug</Configurations>
<PackageReadmeFile>NuGet.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -38,6 +39,7 @@
<PackagePath></PackagePath>
</None>
<None Include="..\ExpressiveStrongName.snk" Link="ExpressiveStrongName.snk" />
<None Include="..\..\Documentation\NuGet.md" Pack="true" PackagePath="NuGet.md"/>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 81b2b93

Please sign in to comment.