"copy local"は、コンパイラフィーチャーではなく、MSBuildフィーチャーであると思われます。あなたはcsc
コマンドラインを見れば:
- INPUT FILES -
/recurse:<wildcard> Include all files in the current directory and
subdirectories according to the wildcard
specifications
/reference:<alias>=<file> Reference metadata from the specified assembly
file using the given alias (Short form: /r)
/reference:<file list> Reference metadata from the specified assembly
files (Short form: /r)
/addmodule:<file list> Link the specified modules into this assembly
/link:<file list> Embed metadata from the specified interop
assembly files (Short form: /l)
/analyzer:<file list> Run the analyzers from this assembly
(Short form: /a)
/additionalfile:<file list> Additional files that don't directly affect code
generation but may be used by analyzers for produ
cing
errors or warnings.
エイリアスを取得するために/reference:<alias>=<file>
を行うことができ、または/link:<file list>
は、相互運用メタデータを埋め込むことが、ここでは何のオプション「ローカルコピー」するはありません。
あなた自身でコピーを実行する必要があります。