From 95013f7d6d1963dd23bfbc2e9a8d02ac4ebf5efa Mon Sep 17 00:00:00 2001 From: Supergibbs Date: Thu, 25 Jun 2015 12:08:03 -0700 Subject: NuGet Support - Added .nuspec files and MyGet.ps1 build script plus status on README --- nuget/MyGet.ps1 | 9 +++++++++ nuget/bootstrap.less.nuspec | 28 ++++++++++++++++++++++++++++ nuget/bootstrap.nuspec | 28 ++++++++++++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 nuget/MyGet.ps1 create mode 100644 nuget/bootstrap.less.nuspec create mode 100644 nuget/bootstrap.nuspec (limited to 'nuget') diff --git a/nuget/MyGet.ps1 b/nuget/MyGet.ps1 new file mode 100644 index 0000000000..b3d9c8f778 --- /dev/null +++ b/nuget/MyGet.ps1 @@ -0,0 +1,9 @@ +$nuget = $env:NuGet + +#parse the version number out of the Jekyll _config.yml +$yaml = (Select-String $env:SourcesPath\_config.yml -pattern "current_version").ToString().Split(" "); +$bsversion = $yaml[$yaml.Length - 1] + +#create packages +& $nuget pack "nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion +& $nuget pack "nuget\bootstrap.less.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion \ No newline at end of file diff --git a/nuget/bootstrap.less.nuspec b/nuget/bootstrap.less.nuspec new file mode 100644 index 0000000000..72aba82feb --- /dev/null +++ b/nuget/bootstrap.less.nuspec @@ -0,0 +1,28 @@ + + + + bootstrap.less + 3.3 + Bootstrap LESS + Mark Otto,Jacob Thornton + bootstrap + The most popular front-end framework for developing responsive, mobile first projects on the web. + http://blog.getbootstrap.com + Bootstrap framework in LESS. Includes fonts and javascript + en-us + http://getbootstrap.com + http://getbootstrap.com/apple-touch-icon.png + https://github.com/twbs/bootstrap/blob/master/LICENSE + Copyright 2015 + false + + + + css js less mobile-first responsive front-end framework web + + + + + + + \ No newline at end of file diff --git a/nuget/bootstrap.nuspec b/nuget/bootstrap.nuspec new file mode 100644 index 0000000000..1dee303bc5 --- /dev/null +++ b/nuget/bootstrap.nuspec @@ -0,0 +1,28 @@ + + + + bootstrap + 3.3 + Bootstrap CSS + Mark Otto,Jacob Thornton + bootstrap + The most popular front-end framework for developing responsive, mobile first projects on the web. + http://blog.getbootstrap.com + Bootstrap framework in CSS. Includes fonts and javascript + en-us + http://getbootstrap.com + http://getbootstrap.com/apple-touch-icon.png + https://github.com/twbs/bootstrap/blob/master/LICENSE + Copyright 2015 + false + + + + css js less mobile-first responsive front-end framework web + + + + + + + \ No newline at end of file -- cgit v1.2.3