6

中規模のエンタープライズ アプリケーションを開発しています。これには多くのプロジェクト/ソリューションがあります。例えば:

  • 会社.データ
    • Company.Data.LinqToSql
  • Company.Entities (ビジネス オブジェクト)
  • 会社.BLL

次に、いくつかのアプリケーションを用意します。たとえば、Windows サービス: MyWindowsService.

これを (セットアップ プロジェクトを作成して) 展開すると、上記のプロジェクトの出力から DLL のロードがインストールされます。

これは、ILMerge を使用する必要がある場所ですか? 1 つのアセンブリを作成するには....たとえば、Company.dll?

これをビルドプロセスに統合するにはどうすればよいですか?

4

1 に答える 1

9

質問ILMerge Best Practicesには、その理由 に関する良い情報があります。

ILMerge を使用するときは、それを使用して 1 つの DLL をビルドし、展開を簡素化します。

Howに関しては、必要に応じて、別のカスタム VS プロジェクト「Converged.csproj」を定義します。その .csproj ファイルで、カスタム Compile ターゲットを定義します。プロジェクトで参照されているすべてのアセンブリに対して ILMerge を実行する定型コードです。

次のようになります。

<Target Name="Compile">
  <!-- Outputs="$(IntermediateOutputPath)$(TargetFileName)" -->
  <!-- Outputs="$(TargetPath)" -->
  <Message Text="Performing the Ilmerge." />
  <!-- in this CreateItem stanza, we collect all the DLLs for the referenced projects -->
  <CreateItem Include="@(_ResolvedProjectReferencePaths)">
    <Output TaskParameter="Include" ItemName="AssembliesToMerge" />
  </CreateItem>
  <!-- This weird bit of hieroglyphics is the assemblies to merge, quoted, and separated by spaces -->
  <!-- Example:  "c:\foo\project1\bin\Debug\ProjectOne.dll"   "c:\foo\project2\bin\Debug\ProjectTwo.dll"  -->
  <Message Text="AssembliesToMerge= @(AssembliesToMerge -> '&quot;%(Fullpath)&quot;', ' ')" />
  <!-- Message Text="TargetPath= $(TargetPath)" / -->
  <Message Text="TargetFileName= $(TargetFileName)" />
  <!-- produce the merged assembly - putting the output in the "IntermediateOutputPath" eg obj\Debug. -->
  <!-- it will be copied later by the CopyFilestoOutputDirectory task defined in Microsoft.Common.Targets -->

  <Error
     Text="ILMerge cannot be found. You need to download and install ILMerge in order to build DotNetZip."
     Condition="!Exists('$(ProgramFiles)\Microsoft\Ilmerge\Ilmerge.exe')" />

  <Exec Command="&quot;$(ProgramFiles)\Microsoft\Ilmerge\Ilmerge.exe&quot;  /t:library  /xmldocs /out:&quot;$(IntermediateOutputPath)$(TargetFileName)&quot;  @(AssembliesToMerge -> '&quot;%(Fullpath)&quot;', ' ') " />

  <!-- for some reason the XML doc file does not get copied automatically from obj\Debug to bin\Debug. -->
  <!-- we do it here explicitly. -->
  <Copy SourceFiles="$(IntermediateOutputPath)$(AssemblyName).XML" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)" />
</Target>
于 2009-10-14T09:26:41.300 に答える