我经常遇到这种情况:
Foo.sln
Foo.csproj
Foo.Wpf.csproj
然后我创建:
Foo.nupkg
Foo.Wpf.nupkg
引用Foo.nupkg
。我无法找到如何在the docs中指定依赖项。
答案 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