-
Notifications
You must be signed in to change notification settings - Fork 391
Add deployment method to bug report template #5871
New issue
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
base: main
Are you sure you want to change the base?
Add deployment method to bug report template #5871
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a deployment model selection field to the GitHub bug report template to help categorize issues based on whether the reported app uses self-contained or framework-dependent deployment.
- Adds a new dropdown field for deployment model selection in the bug report template
- Provides clear descriptions for self-contained vs framework-dependent deployment options
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
description: Please specify the deployment model you're using. | ||
options: | ||
- label: "Self-contained app (`<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>` is in the project file)" | ||
- label: "Framework-dependent app (`<WindowsAppSDKSelfContained>` is not in the project file or it is set to false)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the project is referencing a Component package "Microsoft.WindowsAppSDK.AI" the default is then self-contained without the <selfcontained>
being added. Might need to change your descriptions
The description field is the auto-generated template. Please provide an actual description for the PR |
This PR updates the bug report template to include a question about the user's app deployment model. With the app deployment model, it will be easier to reproduce issues and track down root causes.