We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ebc3f commit d990046Copy full SHA for d990046
README.md
@@ -21,10 +21,26 @@ Contact: <manage@trackingmore.org>
21
22
## Installation
23
24
+Downloading the NuGet package using the dotnet CLI
25
+
26
```
27
$ dotnet add package trackingmore
28
29
30
+Downloading NuGet Packages with the NuGet Command Line Tool
31
32
+```
33
+$ nuget install trackingmore
34
35
36
+The difference with dotnet cli is that you need to manually modify the .csproj file and add the following code
37
38
+```text
39
+<ItemGroup>
40
+ <PackageReference Include="TrackingMore" Version="X.Y.Z" />
41
+</ItemGroup>
42
43
44
## Quick Start
45
46
```c#
0 commit comments