aspnetcore/src/Microsoft.Extensions.Secret...
Nate McMaster 5de082e687 Upgrade Microsoft.DotNet.Cli.Utils from preview2 to preview3 2016-11-04 10:18:46 -07:00
..
Internal
Properties
CommandOutputLogger.cs
CommandOutputProvider.cs
FindUserSecretsProperty.targets
Microsoft.Extensions.SecretManager.Tools.nuspec
Microsoft.Extensions.SecretManager.Tools.xproj
Program.cs
README.md Change version to msbuild1 2016-11-03 12:09:19 -07:00
Resources.resx
project.json Upgrade Microsoft.DotNet.Cli.Utils from preview2 to preview3 2016-11-04 10:18:46 -07:00

README.md

dotnet-user-secrets

dotnet-user-secrets is a command line tool for managing the secrets in a user secret store.

How To Install

project.json Add Microsoft.Extensions.SecretManager.Tools to the tools section of your project.json file:

{
    ..
    "tools": {
        "Microsoft.Extensions.SecretManager.Tools": "1.0.0-*"
    }
    ...
}

MSBuild Install Microsoft.Extensions.SecretManager.Tools as a DotNetCliToolReference to your project.

  <ItemGroup>
    <DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.0-msbuild1-final" />
  </ItemGroup>

How To Use

Run dotnet user-secrets --help for more information about usage.