20
没有为此项目设置OutputPath属性
当我尝试在Visual Studio 2008中从x86调试模式编译项目时,出现此错误。当我查看抱怨的项目的属性组时,我看到设置了输出路径。 这是该.csproj文件的属性组部分 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <DebugSymbols>true</DebugSymbols> <OutputPath>bin\x86\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <BaseAddress>285212672</BaseAddress> <FileAlignment>4096</FileAlignment> <DebugType>full</DebugType> <PlatformTarget>x86</PlatformTarget> <ErrorReport>prompt</ErrorReport> 谁能阐明这一点? 注意:当我编译此调试程序和任何CPU时,它都可以工作。 更新:错误1没有为此项目设置OutputPath属性。请检查以确保您指定了有效的配置/平台组合。配置='调试'平台='x86'
120
c#
visual-studio