Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscode/VSCode-Profile-CSharp.code-profile

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"editorconfig.editorconfig",
"ms-dotnettools.csdevkit"
]
}
13 changes: 13 additions & 0 deletions .vscode/keybindings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[
{
"key": "ctrl+b",
"command": "workbench.action.tasks.runTask",
"args": "build-current-project",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+b",
"command": "workbench.action.tasks.runTask",
"args": "build-solution"
}
]
55 changes: 55 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Watch Demo Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "dotnet",
"args": [
"watch",
"run",
"--project",
"Examples/Demo/Server/FluentUI.Demo.Server.csproj",
"--framework",
"net9.0",
"--launch-profile",
"FluentUI.Demo.Server",
"-v:detailed"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"launchBrowser": {
"enabled": true
},
"stopAtEntry": false
},
{
"name": "Run Demo Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "dotnet",
"args": [
"run",
"--project",
"Examples/Demo/Server/FluentUI.Demo.Server.csproj",
"--framework",
"net9.0",
"--launch-profile",
"FluentUI.Demo.Server",
"-v:detailed"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"launchBrowser": {
"enabled": true
},
"stopAtEntry": false
}
]
}
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"dotnet.defaultSolution": "Microsoft.FluentUI.sln",
"azure-pipelines.1ESPipelineTemplatesSchemaFile": true
"dotnet.defaultSolution": "Microsoft.FluentUI.sln"
}
63 changes: 63 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"version": "2.0.0",
"tasks": [
// Ctrl+Shift+B → To run the default build task (build-solution)
{
"label": "build-solution",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"Microsoft.FluentUI.sln", // 👈 Update this line with your default solution file name
"--configuration",
"Debug"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"options": {
"cwd": "${workspaceFolder}"
}
},
// Ctrl+B → Build current project based on active file
{
"label": "build-current-project",
"type": "shell",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}/.vscode/scripts/build-current-project.ps1"
],
"group": "build",
"problemMatcher": "$msCompile",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"options": {
"cwd": "${workspaceFolder}",
"env": {
"VSCODE_ACTIVE_FILE": "${file}",
"WORKSPACE_FOLDER": "${workspaceFolder}"
}
}
}
]
}
Loading