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
Notes from the VS team:
Here is some info on how to show up in the Performance Profiler (Alt+F2) UI.
Grab our SDK package (Package Details - Azure Artifacts (visualstudio.com)) then export an ITargetProvider.
This package will need to be added as a build dependency in our packages.config. Adam will handle this in a previous task.
ITargetProvider: Anything that implements this interface shows up in that “select target” dropdown.
ProcessTargetProvider.cs - Repos (visualstudio.com) This is the one for our attach to process selection DockerTargetProvider.cs - Repos (visualstudio.com) RunningWindowsStoreAppTargetProvider.cs - Repos (visualstudio.com) WindowsStoreAppTargetProvider.cs - Repos (visualstudio.com) The main method where the action happens is GetTargetsAsync which returns the ITarget that the profiler uses.
The text was updated successfully, but these errors were encountered:
StellaHuang95
No branches or pull requests
Notes from the VS team:
Here is some info on how to show up in the Performance Profiler (Alt+F2) UI.
Grab our SDK package (Package Details - Azure Artifacts (visualstudio.com)) then export an ITargetProvider.
This package will need to be added as a build dependency in our packages.config. Adam will handle this in a previous task.
ITargetProvider: Anything that implements this interface shows up in that “select target” dropdown.
ProcessTargetProvider.cs - Repos (visualstudio.com) This is the one for our attach to process selection
DockerTargetProvider.cs - Repos (visualstudio.com)
RunningWindowsStoreAppTargetProvider.cs - Repos (visualstudio.com)
WindowsStoreAppTargetProvider.cs - Repos (visualstudio.com)
The main method where the action happens is GetTargetsAsync which returns the ITarget that the profiler uses.
The text was updated successfully, but these errors were encountered: