Initial commit
This commit is contained in:
18
plugins/windows-development/commands/analyze-performance.md
Normal file
18
plugins/windows-development/commands/analyze-performance.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
description: Analyze application performance using profiling tools
|
||||
---
|
||||
|
||||
# Analyze Performance Command
|
||||
|
||||
Profile the application to find performance bottlenecks.
|
||||
|
||||
## Tools
|
||||
- Intel VTune Profiler
|
||||
- Visual Studio Profiler
|
||||
- Windows Performance Analyzer
|
||||
|
||||
## Steps
|
||||
1. Attach profiler to running process
|
||||
2. Capture performance data
|
||||
3. Analyze hotspots and bottlenecks
|
||||
4. Generate optimization recommendations
|
||||
22
plugins/windows-development/commands/build-project.md
Normal file
22
plugins/windows-development/commands/build-project.md
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
description: Build the C++ project with specified configuration
|
||||
---
|
||||
|
||||
# Build Project Command
|
||||
|
||||
Build the project using CMake and Visual Studio.
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
cmake -B build -G "Visual Studio 17 2022" -A x64
|
||||
cmake --build build --config Release -j
|
||||
```
|
||||
|
||||
## Parameters
|
||||
- Configuration: Debug/Release
|
||||
- Platform: x86/x64
|
||||
- Clean: Whether to clean before build
|
||||
|
||||
## Output
|
||||
- Build artifacts in build/bin/
|
||||
- Build log and errors
|
||||
Reference in New Issue
Block a user