Since the release of version 3.0, it is now possible to write WPF applications in .net core, and this is really nice!
On the other hand, on .net core, the dependency system now relies on full framework and no more and multiple nuget dependencies. This is not a problem until you want to mix for instance WPF and ASP.net core in the same application (I have a case where I want a UI with a webserver handling websockets endpoints).
When …
我正在开发的 .net core 服务器代码将同时托管在云基础设施和本地。
有很多选项可以处理秘密管理(连接字符串等...):
但是如何在本地托管上安全地存储秘密?我怀疑将其设置为简单的变量环境是否被认为是安全的?