-
Notifications
You must be signed in to change notification settings - Fork 564
[GitHub] Keep GH issue templates up to date. #8942
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,20 +12,21 @@ body: | |
| - type: dropdown | ||
| id: android-type | ||
| attributes: | ||
| label: Android application type | ||
| description: In what type(s) of Android application(s) do you see this issue? | ||
| label: Android framework version | ||
| description: In what target framework(s) of Android application(s) do you see this issue? | ||
| multiple: true | ||
| options: | ||
| - Classic Xamarin.Android (MonoAndroid13.0, etc.) | ||
| - .NET Android (net7.0-android, net8.0-android, etc.) | ||
| - net8.0-android | ||
| - net9.0-android | ||
| - Other | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: platform-versions | ||
| attributes: | ||
| label: Affected platform version | ||
| description: Please provide the version number of the platform you see this issue on. | ||
| placeholder: E.g. VS 2022 17.8.0, VSMac 17.6.7, .NET 8.0.100, etc. | ||
| placeholder: E.g. VS 2022 17.9.0, .NET 8.0.100, etc. | ||
|
Comment on lines
-28
to
+29
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we ask for the VS Code version? Maybe just the version of the MAUI extension?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe the intent here is to help us determine what version of our code they are using. Since VSCode doesn't ship our bits, I don't know if its version helps any. For VSCode users I suspect we would rather they provide the .NET version. |
||
| validations: | ||
| required: true | ||
| - type: textarea | ||
|
|
@@ -56,7 +57,7 @@ body: | |
| id: logs | ||
| attributes: | ||
| label: Relevant log output | ||
| description: Please copy and paste any (short!) relevant log output. Longer logs can be attached as .txt files. This is likely a [diagnostic MSBuild log](https://docs.microsoft.com/en-us/xamarin/android/troubleshooting/troubleshooting#diagnostic-msbuild-output). Please capture a log where you "Rebuild" the project, as some diagnostic info is only available on clean builds. | ||
| description: Please copy and paste any (short!) relevant log output. Longer logs can be attached as .txt files. This is likely a [diagnostic MSBuild log](https://learn.microsoft.com/previous-versions/xamarin/android/troubleshooting/troubleshooting#diagnostic-msbuild-output). Please capture a log where you "Rebuild" the project, as some diagnostic info is only available on clean builds. | ||
| render: shell | ||
| - type: markdown | ||
| attributes: | ||
|
|
||
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.
Could these just say ".NET 8" and ".NET 9"?
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.
I went with this because the .NET version you install isn't necessarily the bits you are using. That is, if you install .NET 9 and target
net8.0-android, you are actually using the .NET 8 bits but customers don't know that. I thought it might be more helpful for us to know what TF they are actually using.That said, I don't have a strong opinion either way. 🤷