Skip to content

Commit

Permalink
Fix typo in search nodes sort for createdAt
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasZirngibl committed May 19, 2021
1 parent 4f81e8e commit 9b8cd2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions DracoonSdk/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0-beta6")]
[assembly: AssemblyVersion("2.0.1.0")]
[assembly: AssemblyFileVersion("2.0.1.0")]
[assembly: AssemblyInformationalVersion("2.0.1-beta6")]
[assembly: InternalsVisibleTo("Dracoon.Sdk.Test")]
[assembly: InternalsVisibleTo(assemblyName: "Dracoon.Sdk.UnitTest")]
2 changes: 1 addition & 1 deletion DracoonSdk/SdkPublic/Sort/SpecificSort/SearchNodesSort.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static SortField<SearchNodesSort> Size {
/// <include file = "SpecificSort.xml" path='docs/members[@name="searchNodesSort"]/CreatedAt/*'/>
public static SortField<SearchNodesSort> CreatedAt {
get {
return new SortField<SearchNodesSort>(new SearchNodesSort(), "createdAd");
return new SortField<SearchNodesSort>(new SearchNodesSort(), "createdAt");
}
}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ In nuget, you can find the DRACOON SDK [here](https://www.nuget.org/packages/Dra

If you are using NuGet with package management "Packages.config", then edit your project's "packages.config" and add this to the packages section:
```xml
<package id="Dracoon.Sdk" version="2.0.0-beta6" />
<package id="Dracoon.Sdk" version="2.0.1-beta6" />
```
If you are using Visual Studio 2017 (or higher) and you are using NuGet with package management "PackageReference" then edit your .csproj file and add this to the package dependency group:
```xml
<PackageReference Include="Dracoon.Sdk" Version="2.0.0-beta6" />
<PackageReference Include="Dracoon.Sdk" Version="2.0.1-beta6" />
```

Note that you also need to include the following dependencies:
Expand Down

0 comments on commit 9b8cd2e

Please sign in to comment.