Skip to content
flq edited this page Jan 6, 2011 · 26 revisions

OpenWrap

OpenWrap is a package management system for .net.

What is it?

OpenWrap lets you search for and consume packages in your projects, and resolve for you the various dependencies that each of those packages contain. This will let you easily install your latest open-source framework as easily as typing o add-wrap nhibernate.core.

OpenWrap also comes with an extensible command-based system that can be deployed alongside your packages, letting you provide tools to use with your project alongside it, while still being xcopy friendly.

FAQ

Read the Frequently asked questions

Quick start

Getting started is simple.
First, Download OpenWrap and execute it. When prompted, choose to install the executable and add it to your path. This will let you use the o shell from anywhere.

Then, create a new project structure for your new project.

c:\code\> o init-wrap myProject

Once the structure is created, you can create a project using Visual Studio or any other editor you may want in the generated /src folder. Only thing left is to hook OpenWrap to your new projects.

c:\code\> o init-wrap -all

You’re now ready to add any package you may need.

If you need to use a NuGet package, you can do so by adding the NuGet repository to your list of remotes, by typing o add-remote nuget nuget://packages.nuget.org/v1/FeedService.svc/Packages. Additional information about NuGet support

And to add nhibernate to your project, it’s as simple as o add-wrap nhibernate.core