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

Commit 5c9168a

Browse files
committed
Merge branch 'release/0.2.0'
* 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
2 parents 2aebca7 + d56b932 commit 5c9168a

File tree

17 files changed

+379
-12
lines changed

17 files changed

+379
-12
lines changed

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,46 @@
33
Cake.DotNetTool.Module is a Module for Cake, which extends it with a new IPackageInstaller for installing tools using the dotnet cli.
44

55
[![License](http://img.shields.io/:license-mit-blue.svg)](http://cake-contrib.mit-license.org)
6+
7+
## Information
8+
9+
| | Stable | Pre-release |
10+
|---|---|---|
11+
|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)|
12+
|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)|
13+
14+
## Build Status
15+
16+
|Develop|Master|
17+
|:--:|:--:|
18+
|[![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)|
19+
20+
## Code Coverage
21+
22+
[![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)
23+
24+
## Quick Links
25+
26+
- [Documentation](https://cake-contrib.github.io/Cake.DotNetTool.Module)
27+
28+
## Chat Room
29+
30+
Come join in the conversation about Cake.DotNetTool.Module in our Gitter Chat Room
31+
32+
[![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)
33+
34+
## Build
35+
36+
To build this package we are using Cake.
37+
38+
On Windows PowerShell run:
39+
40+
```powershell
41+
.\build.ps1
42+
```
43+
44+
On Linux/Mac run:
45+
46+
```shell
47+
./build.sh
48+
```

Source/Cake.DotNetTool.Module.Tests/Cake.DotNetTool.Module.Tests.csproj

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Cake.Core" Version="0.30.0">
9-
<PrivateAssets>all</PrivateAssets>
10-
</PackageReference>
11-
<PackageReference Include="Cake.Testing" Version="0.30.0">
12-
<PrivateAssets>all</PrivateAssets>
13-
</PackageReference>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
15-
<PackageReference Include="xunit" Version="2.3.1" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
17-
<PackageReference Include="NSubstitute" Version="3.1.0" />
8+
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
9+
<PackageReference Include="Cake.Testing" Version="0.33.0" PrivateAssets="All" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
11+
<PackageReference Include="xunit" Version="2.4.1" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
13+
<PackageReference Include="NSubstitute" Version="4.0.0" />
1814
</ItemGroup>
1915

2016
<ItemGroup>

Source/Cake.DotNetTool.Module.Tests/DotNetToolPackageInstallerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public void Should_Throw_If_Log_Is_Null()
7878

7979
public sealed class TheCanInstallMethod
8080
{
81+
[Fact]
8182
public void Should_Throw_If_URI_Is_Null()
8283
{
8384
// Given

Source/Cake.DotNetTool.Module/Cake.DotNetTool.Module.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Cake.Core" Version="0.30.0" PrivateAssets="All" />
14+
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
1515
</ItemGroup>
1616

1717
</Project>

docs/input/assets/css/override.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Control the margin for bootstrap alert boxes */
2+
.alert > p {
3+
margin-top: 0px;
4+
}
5+
6+
/* Control the look and feel of the copy box applied to code sections */
7+
.btn-copy[disabled] .clippy {
8+
opacity: .3;
9+
}
10+
pre .btn-copy {
11+
-webkit-transition: opacity 0.3s ease-in-out;
12+
-o-transition: opacity 0.3s ease-in-out;
13+
transition: opacity 0.3s ease-in-out;
14+
opacity: 0;
15+
padding: 2px 6px;
16+
float: right;
17+
}
18+
pre:hover .btn-copy {
19+
opacity: 1;
20+
}
Lines changed: 3 additions & 0 deletions
Loading

docs/input/assets/js/anchor.min.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/input/assets/js/clipboard.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)