Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
* release/0.2.0:
  Add fact attribute
  Bump test dependencies
  Bump Cake to 0.33.0
  (doc) Added information to readme
  (doc) Minor change to docs
  (build) Reset changes made for testing
  (doc) Minor change to docs.
  (build) Testing with specific Cake.Recipe
  (build) Switching to 0.29.0 to test something
  (doc) Added some basic documentation
  • Loading branch information
gep13 committed Apr 9, 2019
2 parents 2aebca7 + d56b932 commit 5c9168a
Show file tree
Hide file tree
Showing 17 changed files with 379 additions and 12 deletions.
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,46 @@
Cake.DotNetTool.Module is a Module for Cake, which extends it with a new IPackageInstaller for installing tools using the dotnet cli.

[![License](http://img.shields.io/:license-mit-blue.svg)](http://cake-contrib.mit-license.org)

## Information

| | Stable | Pre-release |
|---|---|---|
|GitHub Release|-|[![GitHub release](https://img.shields.io/github/release/cake-contrib/Cake.DotNetTool.Module.svg)](https://github.com/cake-contrib/Cake.DotNetTool.Module/releases/latest)|
|NuGet|[![NuGet](https://img.shields.io/nuget/v/Cake.DotNetTool.Module.svg)](https://www.nuget.org/packages/Cake.DotNetTool.Module)|[![NuGet](https://img.shields.io/nuget/vpre/Cake.DotNetTool.Module.svg)](https://www.nuget.org/packages/Cake.Module)|

## Build Status

|Develop|Master|
|:--:|:--:|
|[![Build status](https://ci.appveyor.com/api/projects/status/5h3exd4u8p2k2wpn/branch/develop?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-dotnettool-module/branch/develop)|[![Build status](https://ci.appveyor.com/api/projects/status/5h3exd4u8p2k2wpn/branch/develop?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-dotnettool-module/branch/master)|

## Code Coverage

[![Coverage Status](https://coveralls.io/repos/github/cake-contrib/Cake.DotNetTool.Module/badge.svg?branch=develop)](https://coveralls.io/github/cake-contrib/Cake.DotNetTool.Module?branch=develop)

## Quick Links

- [Documentation](https://cake-contrib.github.io/Cake.DotNetTool.Module)

## Chat Room

Come join in the conversation about Cake.DotNetTool.Module in our Gitter Chat Room

[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

## Build

To build this package we are using Cake.

On Windows PowerShell run:

```powershell
.\build.ps1
```

On Linux/Mac run:

```shell
./build.sh
```
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.30.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Cake.Testing" Version="0.30.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="NSubstitute" Version="3.1.0" />
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
<PackageReference Include="Cake.Testing" Version="0.33.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="NSubstitute" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public void Should_Throw_If_Log_Is_Null()

public sealed class TheCanInstallMethod
{
[Fact]
public void Should_Throw_If_URI_Is_Null()
{
// Given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.30.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
</ItemGroup>

</Project>
20 changes: 20 additions & 0 deletions docs/input/assets/css/override.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* Control the margin for bootstrap alert boxes */
.alert > p {
margin-top: 0px;
}

/* Control the look and feel of the copy box applied to code sections */
.btn-copy[disabled] .clippy {
opacity: .3;
}
pre .btn-copy {
-webkit-transition: opacity 0.3s ease-in-out;
-o-transition: opacity 0.3s ease-in-out;
transition: opacity 0.3s ease-in-out;
opacity: 0;
padding: 2px 6px;
float: right;
}
pre:hover .btn-copy {
opacity: 1;
}
3 changes: 3 additions & 0 deletions docs/input/assets/images/clippy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions docs/input/assets/js/anchor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions docs/input/assets/js/clipboard.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5c9168a

Please sign in to comment.