Change version to msbuild1

This commit is contained in:
Nate McMaster 2016-11-03 12:09:19 -07:00
parent 90f92fabe3
commit ca70ef0b34
No known key found for this signature in database
GPG Key ID: BD729980AA6A21BD
3 changed files with 15 additions and 5 deletions

View File

@ -6,7 +6,7 @@ default BUILD_DIR_LOCAL='${Path.Combine(BASE_DIR_LOCAL, "artifacts", "build")}'
var VERSION='0.1' var VERSION='0.1'
var FULL_VERSION='0.1' var FULL_VERSION='0.1'
var AUTHORS='Microsoft Open Technologies, Inc.' var AUTHORS='Microsoft Open Technologies, Inc.'
-BuildQuality = "preview4"; -BuildQuality = "msbuild1";
use-standard-lifecycle use-standard-lifecycle
k-standard-goals k-standard-goals

View File

@ -21,20 +21,20 @@ Use the version "1.0.0-preview2-final" if you are using .NET Core 1.0.0 and use
``` ```
**MSBuild** **MSBuild**
Install `Microsoft.DotNet.Watcher.Tools` as a `DotNetCliReference` to your project. Install `Microsoft.DotNet.Watcher.Tools` as a `DotNetCliToolReference` to your project.
```xml ```xml
<ItemGroup> <ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-rc1-final" /> <DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild1-final" />
</ItemGroup> </ItemGroup>
``` ```
### How To Use ### How To Use
dotnet watch [-?|-h|--help] The command must be executed in the directory that contains the project to be watched.
dotnet watch [options] [[--] <args>...] Usage: dotnet watch [options] [[--] <args>...]
Options: Options:
-?|-h|--help Show help information -?|-h|--help Show help information

View File

@ -5,6 +5,7 @@ dotnet-user-secrets
### How To Install ### How To Install
**project.json**
Add `Microsoft.Extensions.SecretManager.Tools` to the `tools` section of your `project.json` file: Add `Microsoft.Extensions.SecretManager.Tools` to the `tools` section of your `project.json` file:
```js ```js
@ -17,6 +18,15 @@ Add `Microsoft.Extensions.SecretManager.Tools` to the `tools` section of your `p
} }
``` ```
**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" />
</ItemGroup>
```
### How To Use ### How To Use
Run `dotnet user-secrets --help` for more information about usage. Run `dotnet user-secrets --help` for more information about usage.