我经常遇到这种情况:
Foo.sln
Foo.csproj
Foo.Wpf.csproj
然后我创建:
- 一个新的包
Foo.nupkg
- 用于引用
Foo.nupkg
的Foo.Wpf.nupkg
的包
我找不到如何在文档中指定该依赖项。
只需为每个项目创建一个paket.template,并确保将"type"属性设置为"project"。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.
如果您想覆盖默认值,请查看文档