创建引用解决方案中另一个包的包

时间:2015-11-05 18:22:25

标签: nuget-package paket

我经常遇到这种情况:

Foo.sln
    Foo.csproj
    Foo.Wpf.csproj

然后我创建:

  • nuget包Foo.nupkg
  • Foo.Wpf.nupkg引用Foo.nupkg
  • 的程序包

我无法找到如何在the docs中指定依赖项。

1 个答案:

答案 0 :(得分:4)

只需为每个项目创建一个paket.template,并确保设置"类型"属于"项目"。 Paket将自动为您解决问题

修改

样品:

Foo.sln
    Foo.csproj
        paket.template
    Foo.Wpf.csproj
        paket.template

paket.template文件的位置如下:

type project
// This assumes that Author and Version are specified in the project.

如果您想覆盖默认值,请查看the docs