Skip to content

Commit e3c2927

Browse files
committed
Add README to NuGet package
1 parent a8ba728 commit e3c2927

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ _Note: The `Parse` method won't simplify expression automatically, it will retur
5151

5252
**Solve:**
5353

54-
This method will parse string expression (like `Parse` method) and then calculate it (returns object which implements `IResult` interface).
54+
This method parses string expression (like `Parse` method) and then calculates it (returns object which implements `IResult` interface).
5555

5656
There is two overloads of this method (common and generic). The common returns just `IResult` (you can access result by `Result` property). The generic allows to return specific implementation of `IResult` (eg. `NumberResult`).
5757

@@ -74,7 +74,7 @@ processor.Solve("x := 10");
7474
processor.Parameters.Variables.Add("x", 10);
7575
```
7676

77-
_Note: The `Solve` method automatically simplify expression, to control this behavior you can use `simplify` argument. It's useful for differentiation, because it will eliminate unnecessary expression nodes._
77+
_Note: The `Solve` method automatically simplifies expression, to control this behavior you can use `simplify` argument. It's useful for differentiation, because it will eliminate unnecessary expression nodes._
7878

7979
**Simplify:**
8080

@@ -139,7 +139,3 @@ xFunc is released under [Apache 2.0 License](http://www.apache.org/licenses/LICE
139139
[ReportGenerator](https://github.com/danielpalme/ReportGenerator)
140140
[xUnit](https://github.com/xunit/xunit)
141141
[Moq](https://github.com/moq/moq4)
142-
143-
## More:
144-
145-
* [NuGet](https://nuget.org/packages?q=xFunc)

xFunc.Maths/xFunc.Maths.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@ https://github.com/sys27/xFunc/wiki/Breaking-Changes</PackageReleaseNotes>
3434
<EnableNETAnalyzers>true</EnableNETAnalyzers>
3535
<AnalysisLevel>latest</AnalysisLevel>
3636
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
37+
<PackageReadmeFile>README.md</PackageReadmeFile>
3738
</PropertyGroup>
3839

3940
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
4041
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
4142
</PropertyGroup>
42-
43+
4344
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
4445
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
4546
<EmbedUntrackedSources>true</EmbedUntrackedSources>
@@ -53,6 +54,7 @@ https://github.com/sys27/xFunc/wiki/Breaking-Changes</PackageReleaseNotes>
5354
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5455
</None>
5556
<None Include="..\xFunc.png" Pack="true" PackagePath="" />
57+
<None Include="..\README.md" Pack="true" PackagePath="" />
5658
</ItemGroup>
5759

5860
<ItemGroup>

0 commit comments

Comments
 (0)