2017-05-31 2 views
0

Ich versuche, Bin Ordner in NuGet-Paket loszuwerden, aber die Struktur zu bewahren.NuGet wie man ein Paket ohne "Bin" erstellt Ordner

Teil meiner nuspec Datei:

<file src = "**\*.dll"/> 

Meine aktuelle Paket erzeugt:
project1 \ bin \ * dll
project2 \ bin \ * dll

Gewünschtes Ergebnis:..
project1 \ *. dll
project2 \ *. dll

Vielen Dank.

Antwort

0

Versuchen: <file src="bin\*.dll" target=".\" />

Verwandte Themen