Update README.md

This commit is contained in:
Nate McMaster 2016-12-12 16:24:15 -08:00
parent d4313dae3b
commit 67c540051b
3 changed files with 20 additions and 34 deletions

View File

@ -4,32 +4,14 @@ dotnet-watch
### How To Install
**project.json**
Add `Microsoft.DotNet.Watcher.Tools` to the `tools` section of your `project.json` file.
Use the version "1.0.0-preview2-final" if you are using .NET Core 1.0.0 and use "1.0.0-preview3-final" if you are using .NET Core 1.1.0.
```
{
...
"tools": {
"Microsoft.DotNet.Watcher.Tools": "1.0.0-preview2-final" //"1.0.0-preview3-final" for .NET Core 1.1.0
}
...
}
```
**MSBuild**
Install `Microsoft.DotNet.Watcher.Tools` as a `DotNetCliToolReference` to your project.
```xml
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild1-final" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild2-final" />
</ItemGroup>
```
### How To Use
The command must be executed in the directory that contains the project to be watched.

View File

@ -0,0 +1,18 @@
dotnet-sql-cache
================
`dotnet-sql-cache` is a command line tool that creates table and indexes in Microsoft SQL Server database to be used for distributed caching
### How To Install
Install `Microsoft.Extensions.Caching.SqlConfig.Tools` as a `DotNetCliToolReference` to your project.
```xml
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.Extensions.Caching.SqlConfig.Tools" Version="1.0.0-msbuild2-final" />
</ItemGroup>
```
### How To Use
Run `dotnet sql-cache --help` for more information about usage.

View File

@ -5,25 +5,11 @@ dotnet-user-secrets
### How To Install
**project.json**
Add `Microsoft.Extensions.SecretManager.Tools` to the `tools` section of your `project.json` file:
```js
{
..
"tools": {
"Microsoft.Extensions.SecretManager.Tools": "1.0.0-*"
}
...
}
```
**MSBuild**
Install `Microsoft.Extensions.SecretManager.Tools` as a `DotNetCliToolReference` to your project.
```xml
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.0-msbuild1-final" />
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.0-msbuild2-update1" />
</ItemGroup>
```