タグ付けされた質問 「targets」

21
Microsoft.WebApplication.targetsがビルドサーバーに見つかりませんでした。あなたの解決策は何ですか?
ビルドサーバーでプロジェクトをビルドしようとすると、次のエラーが発生します。 Microsoft (R) Build Engine Version 4.0.30319.1 error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\TeamData\Microsoft.Data.Schema.SqlTasks.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" was not found. Confirm that the path …

17
makefileでターゲットのリストを取得するにはどうすればよいですか?
私は少しレーキ(Ruby makeプログラム)を使用しましたが、使用可能なすべてのターゲットのリストを取得するオプションがあります。 > rake --tasks rake db:charset # retrieve the charset for your data... rake db:collation # retrieve the collation for your da... rake db:create # Creates the databases defined in y... rake db:drop # Drops the database for your curren... ... しかし、GNU makeでこれを行うオプションはないようです。 どうやら、コードは2007年の時点ではほぼそろっています-http ://www.mail-archive.com/help-make@gnu.org/msg06434.html。 とにかく、メイクファイルからターゲットを抽出するための小さなハックを作成しました。メイクファイルに含めることができます。 list: @grep '^[^#[:space:]].*:' …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.