1

参照する必要がある 1 つの dll と、プログラムの出力に含める必要がある 1 つの dll を含む nuget パッケージがあります。

nuspec からの関連情報:

<references>
    <reference file="dllA.dll" />
</references>
</metadata>
<files>
    <file src="dllA.dll" target="lib" />
    <file src="dllB.dll" target="content" />
</files>

install.ps1 ファイルをいじって、.csproj を変更してこのセクションを追加しようとしました。

<Content Include="<path to dllB.dll">
  <Link>dllB.dll</Link>
  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

dllB へのパスを取得する方法がわかりません。また、powershell を使用した nuget パッケージのインストール中に .csproj を変更する際に問題が発生しています。

4

0 に答える 0