зеркало из https://github.com/wixtoolset/issues.git
102 строки
3.6 KiB
YAML
102 строки
3.6 KiB
YAML
name: 🐞 Bug Report
|
|
description: Found a problem while using WiX?
|
|
labels: [ "triage" ]
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
### FireGiant Support Customer?
|
|
|
|
If you are a [FireGiant Support Customer](https://www.firegiant.com/services/support-programs/), you can [submit bugs and questions privately](https://support.firegiant.com/requests/new).
|
|
|
|
### ⚠️ Everyone Else
|
|
|
|
The WiX project maintainers do NOT use issues for questions or for help debugging why your code doesn't work; for that, [ask a question on Discussions](https://github.com/orgs/wixtoolset/discussions/new?category=questions).
|
|
|
|
---
|
|
|
|
- type: input
|
|
id: wixversion
|
|
attributes:
|
|
label: WiX Version
|
|
placeholder: '4.0.3'
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: buildversion
|
|
attributes:
|
|
label: .NET or MSBuild or Visual Studio Version
|
|
description: Run "dotnet --version" or "msbuild --version" or click the Visual Studio "Help" menu, choose "About Visual Studio" and look for "Current Version".
|
|
placeholder: '.NET 8.0.100 -or- MSBuild version 17.8.3+195e7f5a3 for .NET Framework'
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: hwversion
|
|
attributes:
|
|
label: HeatWave Version
|
|
description: If building in Visual Studio, click the Visual Studio "Help" menu, choose "About Visual Studio" and find "FireGiant HeatWave" in the Installed products list.
|
|
placeholder: '1.0.2.1'
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: winversion
|
|
attributes:
|
|
label: Windows Version
|
|
description: To find the Windows Version, run winver.exe.
|
|
placeholder: 'Win11 23H2'
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: repo
|
|
attributes:
|
|
label: Repro Repo
|
|
description: Create a public GitHub repo with the minimal set of code (.wixproj/.wxs/.wxl) required to reproduce the problem.
|
|
placeholder: 'https://github.com/<userid>/<repo>'
|
|
|
|
- type: textarea
|
|
id: repro
|
|
attributes:
|
|
label: Repro Steps
|
|
description: Provide the steps necessary to reproduce the issue.
|
|
value: |
|
|
1.
|
|
2.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: Actual Result
|
|
description: What did you see that was unexpected?
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected Result
|
|
description: What did you expect to see?
|
|
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Acknowledgements
|
|
description: A surprising number of people skip over sections of the bug report, creating extra work for us. There are hundreds of thousands of you and only a couple of maintainers who are working for free. Please take the time to fill out the form completely.
|
|
options:
|
|
- label: I acknowledge that this is a fully completed bug report. It is not a question or attempt to get help debugging my issue (because those should be sent to Discussions).
|
|
required: true
|
|
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
---
|
|
|
|
Finally, remember that the WiX Toolset is an Open Source project. Unless you are [paying for support](https://www.firegiant.com/services/support-programs/), everyone here is a volunteer and working because they want to, not because they have to. It also means that you have full access to the source code to help yourself and, in turn, help us improve the WiX Toolset.
|
|
|
|
Reminder: if you want to ask a question, [start with Discussions](https://github.com/orgs/wixtoolset/discussions/new?category=questions).
|