How to resolve console application exited with code 9009

Viewed 173

Im try to run a c# console application in build process by using below command

<Target Name="AfterBuild" AfterTargets="AfterBuild">
    <Exec Command="$(ProjectDir)$(OutputPath)$(AssemblyName).$(OutputType)" />
  </Target>

Error when Build : error exited with code 9009

Note : This error occurs due to my project have space in parent folders

this same scenario working fine when parent folder name does not have space

How to resolve this issue?

0 Answers
Related