21

ビルド後のイベント「ビルド成功時」を発生させて、クリーンアップ/移行アクティビティ (コマンド スクリプト) を実行する Web プロジェクトがあります。

VS2012 では、ビルド後の成功は、コードが変更された場合にのみ発生します。コードの変更がない場合でも、コンパイラは成功したビルドを報告しますが、成功した場合のビルド後のイベントは発生しません。

VS2010 では、成功時のビルド後のイベントは、コードの変更に関係なく、ビルドが成功するたびに発生します。これは私が期待するものです。変更が発生しなくても、コンパイルは成功したため、イベントが発生するはずです。

コードを変更した VS2012 ビルドの例:

------ Build started: Project: ABC.Business.Web.Migrate, Configuration: Debug Any CPU ------
Build started 2012-08-23 01:26:13.
GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
CoreCompile:
  C:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation /preferreduilang:en-US /highentropyva- /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll" /reference:C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Business.Web.dll /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll" /debug+ /debug:full /optimize- /out:obj\Debug\ABC.Web.Migrate.dll /target:library /utf8output Properties\AssemblyInfo.cs "C:\Users\Administrator\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs"
_CopyFilesMarkedCopyLocal:
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Business.Web.dll" to "bin\ABC.Business.Web.dll".
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Web.dll" to "bin\ABC.Web.dll".
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC._Services.dll" to "bin\ABC._Services.dll".
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Business.Web.pdb" to "bin\ABC.Business.Web.pdb".
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Web.pdb" to "bin\ABC.Web.pdb".
  Copying file from "C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC._Services.pdb" to "bin\ABC._Services.pdb".
CopyFilesToOutputDirectory:
  Copying file from "obj\Debug\ABC.Web.Migrate.dll" to "bin\ABC.Web.Migrate.dll".
  ABC.Business.Web.Migrate -> C:\Dev\ABC\Source\ABC.Business.Web.Migrate\bin\ABC.Web.Migrate.dll
  Copying file from "obj\Debug\ABC.Web.Migrate.pdb" to "bin\ABC.Web.Migrate.pdb".
PostBuildEvent:
  "C:\Dev\bin\spawn.exe" "C:\Dev\ABC\Scripts\Migrate Business Web.bat"

Build succeeded.

Time Elapsed 00:00:00.34
========== Build: 4 succeeded, 0 failed, 53 up-to-date, 0 skipped ==========

コード変更なしの VS2012 ビルドの例:

------ Build started: Project: ABC.Business.Web, Configuration: Debug Any CPU ------
Build started 2012-08-23 01:36:04.
GenerateTargetFrameworkMonikerAttribute:
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
CoreCompile:
Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
CopyFilesToOutputDirectory:
  ABC.Business.Web -> C:\Dev\ABC\Source\ABC.Business.Web\bin\ABC.Business.Web.dll

Build succeeded.

Time Elapsed 00:00:00.31
========== Build: 1 succeeded, 0 failed, 56 up-to-date, 0 skipped ==========

VS2012でビルド後のイベント「Always」を使ってみました。コードが変更された場合にのみ、常にビルド後のイベントを発生させます (On success と同じ)。私の唯一の回避策は、リビルドを実行することでした-依存プロジェクトが多数ある場合は苦痛です! または、スクリプトを手動で実行します-これも面倒です! (いいえ、それは私のスクリプトではありません。最初の例が示すように、コードが変更された場合、このスクリプトは完全に正常に動作します!)

これは意図的な変更またはバグです。

VS2012 でこのビルド後の問題を経験した人はいますか?

4

4 に答える 4

31

私は同じ問題を抱えていて、次のように解決しました:

  • プロジェクトにダミーの空のtxtファイルを追加します。
  • プロパティ「ビルド アクション」: コンテンツ。
  • プロパティ「出力ディレクトリにコピー」: 常に。

つまり、プロジェクトが最新であるか、スタートアップ プロジェクトではない場合でも、常に POST-BUILD ステップが実行されます。

ここに画像の説明を入力

于 2013-01-11T18:13:00.880 に答える
3

同様の問題があり、これが役に立ちました:

ツール... オプション... プロジェクトとソリューション ... ビルドと実行...

「実行時にスタートアップ プロジェクトと依存関係のみをビルドする」のチェックを外します

ここで提案されているように:実行時のビルド後のイベント (F5) Visual Studio?

于 2012-10-19T18:00:33.223 に答える