Open Issues Need Help
View All on GitHubAI Summary: This GitHub issue proposes adding support for `dotnet user-secrets` to manage sensitive application configuration locally during development. The goal is to prevent secrets like API keys and connection strings from being committed to source control, offering secure, per-developer storage. It suggests new tools, such as `dotnet_secrets_init`, to initialize user secrets by modifying project files and setting up local storage.
AI Summary: This GitHub issue proposes refactoring the `IsValidAdditionalOptions` security validation method. The current implementation iterates through a string, checking each character against a list of allowed types and special characters using multiple `if` conditions. The proposed improvement suggests using a `HashSet` for allowed special characters combined with LINQ's `All` method, aiming for better performance, readability, and maintainability.
AI Summary: This GitHub issue proposes adding support for managing HTTPS development certificates using the `dotnet dev-certs` command. This is essential for local ASP.NET Core development, enabling testing of HTTPS-only features and meeting modern browser security requirements. The proposal includes new tools like `dotnet_devcerts_https_trust` and `dotnet_devcerts_https_check` to automate the current manual process.