parent
b90e52f934
commit
0548c27141
2 changed files with 25 additions and 0 deletions
@ -1,5 +1,29 @@ |
||||
## NuGet |
||||
|
||||
The easiest and recommended way to install the Lightweight IOC Container is by using [NuGet](https://www.nuget.org/packages/LightweightIocContainer/). |
||||
There are two possibilities that are described subsequently. |
||||
|
||||
### PackageManager |
||||
|
||||
You can use the `PackageManager` in VisualStudio to install the Lightweight IOC Container in your library: |
||||
|
||||
```PM |
||||
PM> Install-Package LightweightIocContainer -Version x.x.x |
||||
``` |
||||
|
||||
`-Version` is followed by the version of the Lightweight IOC Container you want to install. |
||||
|
||||
### .Net CLI |
||||
|
||||
Another option is to use the `.NET CLI` to install the Lightweight IOC Container in your library: |
||||
|
||||
```.net |
||||
> dotnet add package LightweightIocContainer --version x.x.x |
||||
``` |
||||
|
||||
`--version` is followed by the version of the Lightweight IOC Container you want to install. |
||||
|
||||
## Using source code |
||||
|
||||
There is also the possibility to use the source code and add it as a new project to your VisualStudio solution. |
||||
To do so, you can clone this repository to your workspace. Then add it as a new project to your already existing solution. |
||||
|
||||
Loading…
Reference in new issue