I'm trying to build C.csproj file which includes other projects, say A.csproj and B.csproj. Now, A.csproj and B.csproj builds successfully. But when I try to build C.csrpoj I get following error:
A -> <Project_location>\bin\A.dll
ExtraDependency -> <Project_location>\bin\ExtraDependency.dll
The filename, directory name, or volume label syntax is incorrect.
0 File(s) copied
0 File(s) copied
B -> <Project_location>\bin\B.dll
File not found - System.Threading.dll
0 File(s) copied
The filename, directory name, or volume label syntax is incorrect.
0 File(s) copied
Build failed.
ExtraDependency.dll and System.Threading.dll are also present in bin location. I don't understand the reason of showing The filename, directory name, or volume label syntax is incorrect.
Can anyone please help?