Visual Studio 2010 SP1とAsync CTP(SP1リフレッシュ)がインストールされています。MSBuildで非同期要求参照が見つかりません
async/await
キーワードを使用するプロジェクトのソリューションは、VS IDEからビルドするとOKです。 devenv /build "Debug" solution.sln
で作成した場合もすべて問題ありません。
しかしmsbuild @commands.rsp solution.sln
レポート:
File.xaml.cs(123): error CS1993: Cannot find all types required by the 'async' modifier. Are you targeting the wrong framework version, or missing a reference to an assembly?
commands.rsp次のようになります。
/nologo
/p:Configuration=Debug
/m:3
/fileLogger
任意の手がかり?
commands.rspを投稿できますか? – KMoraz