We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Generating a VisualD project with BetterC does not set the BetterC flag in the produced .visualproj file.
{ "authors": [ "MrZoraman" ], "copyright": "Copyright © 2020, MrZoraman", "description": "A minimal D application.", "license": "proprietary", "name": "vdtest", "buildOptions": [ "betterC" ] }
Calling dub generate visuald produces vdtest.visualproj with the following flag set to false: <betterC>0</betterC> (or missing alltogether).
dub generate visuald
<betterC>0</betterC>
In the .visualproj file, <betterC>1</betterC> should be set.
<betterC>1</betterC>
The text was updated successfully, but these errors were encountered:
betterC flag enabled in generated visuald project file. Fixes dlang#2024
25f9d6b
betterC flag enabled in generated visuald project file.
a14ac6c
Fixes dlang#2024
ac6caf3
No branches or pull requests
System information
Bug Description
Generating a VisualD project with BetterC does not set the BetterC flag in the produced .visualproj file.
How to reproduce?
Calling
dub generate visuald
produces vdtest.visualproj with the following flag set to false:<betterC>0</betterC>
(or missing alltogether).Expected Behavior
In the .visualproj file,
<betterC>1</betterC>
should be set.The text was updated successfully, but these errors were encountered: