]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Added NuGet install instructions to docs
authorJesse Mandel <jesse.mandel@gmail.com>
Thu, 20 Aug 2015 18:31:48 +0000 (11:31 -0700)
committerChris Rebert <code@chrisrebert.com>
Tue, 8 Sep 2015 23:44:21 +0000 (16:44 -0700)
Closes #17214.

README.md
docs/getting-started/download.md

index c3d38e1cf55eda63ae55cd618a9de5d8bd1fcc69..dbc98b1d6c759a37943ff02842719fdac8c7d621 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Several quick start options are available:
 - Install with [npm](https://www.npmjs.com): `npm install bootstrap`.
 - Install with [Meteor](https://www.meteor.com): `meteor add twbs:bootstrap`.
 - Install with [Composer](https://getcomposer.org): `composer require twbs/bootstrap`.
+- Install with [NuGet](https://www.nuget.org): CSS: `Install-Package bootstrap -Pre` Sass: `Install-Package bootstrap.sass -Pre` (`-Pre` is only required until Bootstrap v4 has a stable release).
 
 Read the [Getting started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
 
index aa9834e47820ac14fc22e6e374d3b668a2dfdbd5..4e83b9994e65f3f35194c746f7e0f28ff3d0d9d1 100644 (file)
@@ -69,6 +69,16 @@ You can also install and manage Bootstrap's Sass and JavaScript using [Composer]
 $ composer require twbs/bootstrap
 {% endhighlight %}
 
+### NuGet
+
+If you develop in .NET, you can also install and manage Bootstrap's [CSS](https://www.nuget.org/packages/bootstrap/) or [Sass](https://www.nuget.org/packages/bootstrap.sass/) and JavaScript using [NuGet](https://www.nuget.org):
+
+{% highlight powershell %}
+PM> Install-Package bootstrap -Pre
+PM> Install-Package bootstrap.sass -Pre
+{% endhighlight %}
+
+The `-Pre` is required until Bootstrap v4 has a stable release.
 
 ## Custom builds