cookbook 'dotnetcore', '= 1.1.0'
dotnetcore (5) Versions 1.1.0 Follow5
Installs/Configures dotnetcore
cookbook 'dotnetcore', '= 1.1.0', :supermarket
knife supermarket install dotnetcore
knife supermarket download dotnetcore
<a href="https://codeclimate.com/github/acornies/dotnetcore-cookbook"><img src="https://codeclimate.com/github/acornies/dotnetcore-cookbook/badges/gpa.svg" /></a>
dotnetcore-cookbook
A Chef cookbook for managing .NET Core (http://dotnet.github.io/) installation and applications on all supported platforms. Simply include recipe[dotnetcore]
in your runlist to utilize the dotnet
resource provider. This cookbook is in it's early stages and will try to keep up with the pace of .NET Core development.
Supported Platforms
- Ubuntu 14.04 (trusty)
- Windows Server 2012 R2
Attributes
<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><tt>['dotnetcore']['package']['name']</tt></td>
<td>String</td>
<td>The apt-get package name for Debian/Ubuntu.</td>
<td><tt>See <a href="attributes/default.rb" target="_blank">default.rb</a></tt></td>
</tr>
<tr>
<td><tt>['dotnetcore']['package']['version']</tt></td>
<td>String</td>
<td>The apt-get package version for Debian/Ubuntu.</td>
<td><tt>See <a href="attributes/default.rb" target="_blank">default.rb</a></tt></td>
</tr>
<tr>
<td><tt>['dotnetcore']['package']['source_url']</tt></td>
<td>String</td>
<td>An absolute URL for the .NET Core Windows MSI installer</td>
<td><tt>See <a href="attributes/default.rb" target="_blank">default.rb</a></tt></td>
</tr>
<tr>
<td><tt>['dotnetcore']['apt_package_source']</tt></td>
<td>String</td>
<td>The apt-get package source repository server</td>
<td><tt>See <a href="attributes/default.rb" target="_blank">default.rb</a></tt></td>
</tr>
<tr>
<td><tt>['dotnetcore']['apt_package_source_key']</tt></td>
<td>String</td>
<td>The source URL for the apt keyserver gpg key.</td>
<td><tt>See <a href="attributes/default.rb" target="_blank">default.rb</a></tt></td>
</tr>
</table>
Usage
dotnetcore::default
Include dotnetcore
in your node's run_list
:
{ "run_list": [ "recipe[dotnetcore::default]" ] }
Resource/Provider
dotnet
Used for restoring package dependencies, compilation, and running your application.
ruby
dotnet 'test' do
action :run
nuget_config_file "#{app_dir}/NuGet.Config"
path app_dir
user 'root'
cwd app_dir
end
By default, the dotnet resource will restore nuget packages from the nuget_config_file
parameter. If no parameter is given, the current directory is used from cwd
. This can be overidden by adding restore false
as an additional parameter.
Additionaly, dotnet restore
can be run on it's own by using action :restore
as a parameter with the dotnet resource.
ruby
dotnet 'test' do
action :restore
nuget_config_file "#{app_dir}/NuGet.Config"
user 'root'
cwd app_dir
end
Development
This cookbook uses <a href="https://github.com/opscode/test-kitchen" target="_blank">test-kitchen</a> and <a href="http://serverspec.org/" target="_blank">Serverspec/RSpec</a> with the Vagrant driver. For local Windows testing, please follow <a href="http://kitchen.ci/blog/test-kitchen-windows-test-flight-with-vagrant/" target="_blank">this blog post</a> to create and add a local Vagrant Windows (Server 2012 R2) box.
License and Authors
Author:: Andrew Cornies (acornies@gmail.com)
Dependent cookbooks
apt ~> 2.9.2 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
1.1.0
Minor update to dotnetcore package attributes, tested with ASP.NET Core RC2 (preview).
1.0.0
Initial release of dotnetcore-cookbook
Foodcritic Metric
1.1.0 failed this metric
FC002: Avoid string interpolation where not required: /tmp/cook/f3d9846a2cc6b5f426c100c7/dotnetcore/recipes/_ubuntu.rb:22
1.1.0 failed this metric