Open retsyo opened 5 years ago
Same problem on Linux
change to this in project.d file
bool isValidProjectName(in string s) pure { if (s.empty) return false; return reduce!q{ a && (b == '_' || b == '-' || (b>='A' && b <='Z' || b>='a' && b <='z' || b>='0' && b <='9')) }(true, s); }
bool isValidModuleName(in string s) pure { if (s.empty) return false; return reduce!q{ a && (b == '_' || (b>='A' && b <='Z' || b>='a' && b <='z' || b>='0' && b <='9')) }(true, s); }
bool isValidFileName(in string s) pure { if (s.empty) return false; return reduce!q{ a && (b == '_' || b == '.' || b == '-' || (b>='A' && b <='Z' || b>='a' && b <='z' || b>='0' && b <='9')) }(true, s); }
The D is official http://downloads.dlang.org/releases/2.x/2.087.0/dmd.2.087.0.windows.7z from https://dlang.org/download.html The dlangide is latest download zip dlangide-master.zip