OutputPathがプロジェクトファイルにちゃんと反映されてないというエラー

NugetからCefSharp関連のパッケージをダウンロードして再起動すると以下のエラーが発生した。

Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration=’Debug’ Platform=’x64′. This error may also appear if some other project is trying to follow a project-to-project reference to this project, this project has been unloaded or is not included in the solution, and the referencing project does not build using the same or an equivalent Configuration or Platform. WinFormsCefSharpSample

上記エラーでググってみると、こちらのページにいきついた。
見た感じ、OutputPath要素が .csprojファイルに追加されなかったために発生しているエラー。だから一度OutputPathを変更してプロジェクトファイルに正しくOutputPathが記述されるんじゃないだろうか。
実際に以下の手順を実施することでエラーが消えた。

①プロジェクトを右クリックしてプロパティを表示する。
②ビルドメニューの出力パスを一時的に変更する。参照ボタンを押して任意のフォルダーを設定して、再度元の出力パスに戻す。
③リビルドする

この画像には alt 属性が指定されておらず、ファイル名は image-6-1024x552.png です

何かしらの影響でプロジェクトファイルがロックされてしまったのだろう。