├── .github └── ISSUE_TEMPLATE ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md └── README.md /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- 1 | This repository has been deprecated. 2 | 3 | Use https://github.com/aspnet/Configuration 4 | for issues with Microsoft.Extensions.Configuration.UserSecrets. 5 | 6 | Use https://github.com/aspnet/DotNetTools 7 | for issues with Microsoft.Extensions.SecretManager.Tools. 8 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project has adopted the code of conduct defined by the Contributor Covenant 4 | to clarify expected behavior in our community. 5 | 6 | For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ============ 3 | 4 | This repository is deprecated. See [README.md](README.md) for more information. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | User Secrets (deprecated repository) 2 | ==================================== 3 | 4 | Microsoft.Extensions.Configuration.UserSecrets has moved to https://github.com/aspnet/Configuration 5 | Microsoft.Extensions.SecretManager.Tools has moved to https://github.com/aspnet/DotNetTools 6 | --------------------------------------------------------------------------------