File tree Expand file tree Collapse file tree 2 files changed +62
-0
lines changed
Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Bug report
2+ description : File a bug report about cppwinrt
3+ title : " Bug:"
4+ labels : [bug]
5+ assignees : []
6+ body :
7+ - type : markdown
8+ attributes :
9+ value : " Thank you for filing a bug report! 🐛"
10+ - type : input
11+ attributes :
12+ label : Version
13+ description : What is the version of cppwinrt you're using?
14+ placeholder : You can find the exact version by running `cppwinrt.exe`.
15+ - type : textarea
16+ attributes :
17+ label : Summary
18+ description : >
19+ Please provide a short summary of the bug, along with any information
20+ you feel relevant to replicating the bug.
21+ - type : textarea
22+ attributes :
23+ label : Reproducible example
24+ description : >
25+ Please provide all code needed to reproduce the issue.
26+ placeholder : |
27+ #include "winrt/Windows.Foundation.h"
28+
29+ using namespace winrt;
30+ using namespace Windows::Foundation;
31+
32+ int main()
33+ {
34+ Uri uri(L"https://kennykerr.ca");
35+ printf("%ls\n", uri.ToString().c_str());
36+ }
37+ render : rust
38+ - type : textarea
39+ attributes :
40+ label : Expected behavior
41+ description : " I expected to see this happen:"
42+ - type : textarea
43+ attributes :
44+ label : Actual behavior
45+ description : " Instead, this happened:"
46+ - type : textarea
47+ attributes :
48+ label : Additional comments
49+ description : Is there anything else you'd like to share?
50+ validations :
51+ required : false
52+ - type : markdown
53+ attributes :
54+ value : " Thank you! ©️➕➕"
Original file line number Diff line number Diff line change 1+ blank_issues_enabled : false
2+ contact_links :
3+ - name : Visual Studio or C++ question
4+ url : https://developercommunity.visualstudio.com/cpp
5+ about : Your open channel to Microsoft engineering teams
6+ - name : Windows API question
7+ url : https://docs.microsoft.com/en-us/answers/topics/windows-api.html
8+ about : Please ask questions about the Windows API on Microsoft Q&A
You can’t perform that action at this time.
0 commit comments