Hello All,
I am trying to compile my c# code to a directory that has spaces in it. The compiler doesnt like it when I specify a directory with spaces, I have tried everything. Any thoughts?
I have tired the following with no luck
csc.exe /out:Hello World/hello.world.dll /target:libarary *.cs
csc.exe /out:"Hello World/hello.world.dll" /target:library *.cs
csc.exe /out:Hello World/hello.world.dll /target:library *.cs
I get an error similar to:
error CS1619: Cannot create temporary file d:\Build\test\Hello World\-- The directory name is invalid.
Thanks for any help
CMDev
I am trying to compile my c# code to a directory that has spaces in it. The compiler doesnt like it when I specify a directory with spaces, I have tried everything. Any thoughts?
I have tired the following with no luck
csc.exe /out:Hello World/hello.world.dll /target:libarary *.cs
csc.exe /out:"Hello World/hello.world.dll" /target:library *.cs
csc.exe /out:Hello World/hello.world.dll /target:library *.cs
I get an error similar to:
error CS1619: Cannot create temporary file d:\Build\test\Hello World\-- The directory name is invalid.
Thanks for any help
CMDev