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
13 changes: 7 additions & 6 deletions .github/ISSUE_TEMPLATE/01-building-an-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,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
Comment on lines +17 to +18
Copy link
Member

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"?

Copy link
Contributor Author

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. 🤷

- 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.
validations:
required: true
- type: textarea
Expand Down Expand Up @@ -54,7 +55,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) or attach a [MSBuild binlog](https://docs.microsoft.com/en-us/visualstudio/msbuild/obtaining-build-logs-with-msbuild?view=vs-2022#save-a-binary-log).
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) or attach a [MSBuild binlog](https://aka.ms/binlog).
render: shell
- type: markdown
attributes:
Expand Down
11 changes: 6 additions & 5 deletions .github/ISSUE_TEMPLATE/02-running-an-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,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.
validations:
required: true
- type: textarea
Expand Down
15 changes: 8 additions & 7 deletions .github/ISSUE_TEMPLATE/03-mono-android-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,28 @@ body:
value: |
Issues with missing Android API or the API not working as documented are tracked here.

If you are not sure how to use an API or how to accomplish your task, better support is available from our community of application writers, available in several forms:
If you are not sure how to use an API or how to accomplish your task, better support is available from the community of application writers, available in several forms:

[Microsoft Q&A](https://docs.microsoft.com/en-us/answers/topics/dotnet-android.html)
[Microsoft Q&A](https://learn.microsoft.com/answers/products/97/dotnet/)
[Stack Overflow](https://stackoverflow.com)
- 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.
validations:
required: true
- type: textarea
Expand Down
13 changes: 7 additions & 6 deletions .github/ISSUE_TEMPLATE/04-binding-a-java-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The 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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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
Expand Down Expand Up @@ -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:
Expand Down
13 changes: 7 additions & 6 deletions .github/ISSUE_TEMPLATE/05-other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,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.
validations:
required: true
- type: textarea
Expand Down Expand Up @@ -54,7 +55,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 could be a [diagnostic MSBuild log](https://docs.microsoft.com/en-us/xamarin/android/troubleshooting/troubleshooting#diagnostic-msbuild-output) or a [MSBuild binlog](https://docs.microsoft.com/en-us/visualstudio/msbuild/obtaining-build-logs-with-msbuild?view=vs-2022#save-a-binary-log).
description: Please copy and paste any (short!) relevant log output. Longer logs can be attached as .txt files. This could be a [diagnostic MSBuild log](https://learn.microsoft.com/previous-versions/xamarin/android/troubleshooting/troubleshooting#diagnostic-msbuild-output) or a [MSBuild binlog](https://aka.ms/binlog).
render: shell
- type: markdown
attributes:
Expand Down