The OutputPath property is not set for this project

前端 未结 20 1493
無奈伤痛
無奈伤痛 2020-11-30 23:20

When I try to compile my project from x86 debug mode in Visual Studio 2008. I am getting this error. When I looked at the property group of the project that complained, I se

相关标签:
20条回答
  • 2020-12-01 00:05

    In my case the built address of my app was set to another computer that was turned off so i turned it on and restart VS and problem solved.

    0 讨论(0)
  • 2020-12-01 00:05

    After trying all the other suggestions posted here, I discovered the solution for me was to remove the following section from the .csproj file:

      <ItemGroup>
        <Service Include="{808359B6-6B82-4DF5-91FF-3FCBEEBAD811}" />
      </ItemGroup>
    

    Apparently this service from the original project (unavailable on local machine) was halting the entire build process, even though it wasn't essential for compilation.

    0 讨论(0)
提交回复
热议问题