Skip to content

Commit 833309a

Browse files
committed
Merge branch 'release/0.4.2'
2 parents 46915a0 + 2bf76a1 commit 833309a

31 files changed

+2510
-26
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Azure DevOps and Azure DevOps Server support for Cake
1+
# Azure DevOps support for Cake
22

3-
This addin for Cake allows you to work with Azure DevOps or Azure DevOps Server.
3+
This addin for Cake allows you to work with Azure DevOps.
44

55
[![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/cake-contrib/Cake.AzureDevOps/blob/feature/build/LICENSE)
66

docs/input/_Navbar.cshtml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@{
2+
List<Tuple<string, string>> pages = new List<Tuple<string, string>>
3+
{
4+
Tuple.Create("Documentation", Context.GetLink("docs")),
5+
Tuple.Create("API", Context.GetLink("api/Cake.AzureDevOps"))
6+
};
7+
foreach(Tuple<string, string> p in pages)
8+
{
9+
string active = Context.GetLink(Document).StartsWith(p.Item2) ? "active" : null;
10+
<li class="@active"><a href="@p.Item2">@Html.Raw(p.Item1)</a></li>
11+
}
12+
}
Binary file not shown.

docs/input/assets/css/fonts/glyphicons-halflings-regular.svg

Lines changed: 288 additions & 0 deletions
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/input/assets/css/override.less

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,21 @@ pre:hover .btn-copy {
119119
a, a:active, a:hover, a:focus {
120120
color: #fff;
121121
}
122+
}
123+
124+
/* For feature list */
125+
126+
.feature-list li {
127+
display: block;
128+
}
129+
130+
.feature-list li:before {
131+
/*Using a Bootstrap glyphicon as the bullet point*/
132+
content: "\e013";
133+
font-family: 'Glyphicons Halflings';
134+
font-size: 12px;
135+
float: left;
136+
margin-top: 1px;
137+
margin-left: -25px;
138+
color: green;
122139
}

docs/input/index.cshtml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
11
---
22
Title: Cake.AzureDevOps
33
NoSidebar: true
4-
NoContainer: false
4+
NoContainer: true
55
NoGutter: true
66
---
77

8-
<div class="container">
9-
<h1>What is it?</h1>
8+
<div class="jumbotron">
9+
<div class="container">
10+
<h1 class="display-4">Cake.AzureDevOps</h1>
11+
<p>
12+
Cake addin for working with Azure DevOps.<br/>
13+
</p>
14+
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/docs/" role="button">Learn more</a>
15+
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/api/Cake.AzureDevOps/" role="button">API documentation</a>
16+
</div>
17+
</div>
18+
19+
<div class="container">
20+
<p style="height: 35px;">
21+
<img alt="GitHub" src="https://img.shields.io/github/license/cake-contrib/Cake.AzureDevOps">
22+
<img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/cake-contrib/Cake.AzureDevOps">
23+
<img alt="Nuget" src="https://img.shields.io/nuget/dt/Cake.AzureDevOps">
24+
</p>
25+
26+
<p>
27+
The Azure DevOps Addin for <a href="http://cakebuild.net/" target="_blank">Cake</a> allows you to access Azure DevOps from Cake build scripts.
28+
</p>
29+
1030
<p>
11-
The Azure DevOps Addin for <a href="http://cakebuild.net/" target="_blank">Cake</a> allows you to access Azure DevOps or Azure DevOps Server from Cake build scripts.
31+
<h3>Features</h3>
32+
<ul class="feature-list">
33+
<li>Access to Azure Pipelines builds</li>
34+
<li>Access to Azure Repos pull requests</li>
35+
</ul>
1236
</p>
1337
</div>

src/Cake.AzureDevOps.Tests/Cake.AzureDevOps.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReference Include="Cake.Core" Version="0.33.0" />
1919
<PackageReference Include="Cake.Testing" Version="0.33.0" />
2020
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="16.143.2" />
21-
<PackageReference Include="Moq" Version="4.13.0" />
21+
<PackageReference Include="Moq" Version="4.13.1" />
2222
<PackageReference Include="Shouldly" Version="3.0.2" />
2323
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
2424
<PackageReference Include="xunit" Version="2.4.1" />

0 commit comments

Comments
 (0)