1

I'm in the process of converting a handful of projects from ripple to Paket. The way I do this is install Paket, then take my ripple.config and copy my sources and nugets over to my paket.dependencies, taking care to == the versions that I have fixed. Then I .paket/paket install over and over and over again trying to resolve versioning errors that come up from that.

After that, I open all my .csproj files and add an extra ..\ to all the HintPaths before opening my project and manually resolving whatever errors pop up.

Is there a better way to do this? I know there's a ripple-to-paket converter but I not only couldn't get it to work, but many people I work with say that it's terrible.

Thank you.

4

1 回答 1

1

1paket.references在每个项目的文件夹中添加一个文件

在每个项目文件的文件夹中,您应该创建一个paket.references并在其中列出包名称(仅,其他信息paket.dependencies在您的根文件夹中保持一致)。

2 确保使用 paket 处理实际参考

您可以手动删除项目文件中的引用(从 VS 或编辑项目文件),并调用paket install将添加它们(根据paket.references项目文件夹中)的附加<Paket>True</Paket>节点(明确该引用由 paket 处理本身)

我觉得这就是。

于 2016-04-24T16:02:32.267 回答