We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
设置
通过将 SettingsModel 解析,来做到 可视化 设置 页面,当然也可以选择编辑源文件字符串(现在的方式),就像 vscode 一样,即可可视化设置,也可以编辑设置文件
SettingsModel
vscode
The text was updated successfully, but these errors were encountered:
例如:
{ "GitHubOAuth": { "AppName": "HelloWorldPlugin", "HomePageUrl": "/api/GitHub/Index", "ClientId": "ea71f9ab3f05e7837e7a", "ClientSecret": "0f979a8fe468582748f069bc19a1e7c3083d2c4a", "RedirectUrl": "/api/GitHub/Callback", "Scopes": [ "user", "notifications", "repo" ] } }
就可以对 HomePageUrl 展示一个对应的文本输入框
HomePageUrl
,当然可在 SettingsModel 的属性上添加特性 [DisplayLabel("主页URL")] 来提供对应文本框的提示
[DisplayLabel("主页URL")]
Sorry, something went wrong.
No branches or pull requests
通过将
SettingsModel
解析,来做到 可视化设置
页面,当然也可以选择编辑源文件字符串(现在的方式),就像vscode
一样,即可可视化设置,也可以编辑设置文件The text was updated successfully, but these errors were encountered: