The OutputPath property is not set for this project

前端 未结 20 1599
無奈伤痛
無奈伤痛 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-11-30 23:53

    I have:

    1. Right-click on project with issue -> Unload Project
    2. Right-click on project and choose Edit *.csproj
    3. Copy-paste the configuration from existing configuration which works with specific name and targeting platform (I had Release | x64):

      
        bin\x64\Release\
        TRACE
        true
        pdbonly
        x64
        prompt
        MinimumRecommendedRules.ruleset
        true
      
      
    4. Right-click project -> Reload Project
    5. Rebuild project/solution

提交回复
热议问题