I would like to create a dar file for a .net Project. I don't want to put all dependency to dar package. I have pack all dependency as nuget package and push them to nuget feed on TFS. I would like to use packages from nuget feeds, I don't want to directly put them in dar file. But, I could not find how to put reference for nuget packages which are located in tfs feeds.
Example: published nuget artifacts to tfs feed
In java, You can do same thing with maven/nexus. You can publish packages to nexus and you can use file URI of the packages in deployit-manifest.xml which are in nexus. You don't have to put artifacts directly into dar file. There is an example below.
<file.File name="common">
<targetFileName>common.jar</targetFileName>
<targetPath>/target/path/</targetPath>
<createTargetPath>true</createTargetPath>
<fileUri>maven:com.acme.temp:common:jar:4.0.0</fileUri>
</file.File>
Is there a similar approach nuget/tfs feeds for .net projects.