Skip to content

Commit

Permalink
Merge branch 'release/0.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Nov 3, 2019
2 parents 46915a0 + 2bf76a1 commit 833309a
Show file tree
Hide file tree
Showing 31 changed files with 2,510 additions and 26 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Azure DevOps and Azure DevOps Server support for Cake
# Azure DevOps support for Cake

This addin for Cake allows you to work with Azure DevOps or Azure DevOps Server.
This addin for Cake allows you to work with Azure DevOps.

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

Expand Down
12 changes: 12 additions & 0 deletions docs/input/_Navbar.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@{
List<Tuple<string, string>> pages = new List<Tuple<string, string>>
{
Tuple.Create("Documentation", Context.GetLink("docs")),
Tuple.Create("API", Context.GetLink("api/Cake.AzureDevOps"))
};
foreach(Tuple<string, string> p in pages)
{
string active = Context.GetLink(Document).StartsWith(p.Item2) ? "active" : null;
<li class="@active"><a href="@p.Item2">@Html.Raw(p.Item1)</a></li>
}
}
Binary file not shown.
288 changes: 288 additions & 0 deletions docs/input/assets/css/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17 changes: 17 additions & 0 deletions docs/input/assets/css/override.less
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,21 @@ pre:hover .btn-copy {
a, a:active, a:hover, a:focus {
color: #fff;
}
}

/* For feature list */

.feature-list li {
display: block;
}

.feature-list li:before {
/*Using a Bootstrap glyphicon as the bullet point*/
content: "\e013";
font-family: 'Glyphicons Halflings';
font-size: 12px;
float: left;
margin-top: 1px;
margin-left: -25px;
color: green;
}
32 changes: 28 additions & 4 deletions docs/input/index.cshtml
Original file line number Diff line number Diff line change
@@ -1,13 +1,37 @@
---
Title: Cake.AzureDevOps
NoSidebar: true
NoContainer: false
NoContainer: true
NoGutter: true
---

<div class="container">
<h1>What is it?</h1>
<div class="jumbotron">
<div class="container">
<h1 class="display-4">Cake.AzureDevOps</h1>
<p>
Cake addin for working with Azure DevOps.<br/>
</p>
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/docs/" role="button">Learn more</a>
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/api/Cake.AzureDevOps/" role="button">API documentation</a>
</div>
</div>

<div class="container">
<p style="height: 35px;">
<img alt="GitHub" src="https://img.shields.io/github/license/cake-contrib/Cake.AzureDevOps">
<img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/cake-contrib/Cake.AzureDevOps">
<img alt="Nuget" src="https://img.shields.io/nuget/dt/Cake.AzureDevOps">
</p>

<p>
The Azure DevOps Addin for <a href="http://cakebuild.net/" target="_blank">Cake</a> allows you to access Azure DevOps from Cake build scripts.
</p>

<p>
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.
<h3>Features</h3>
<ul class="feature-list">
<li>Access to Azure Pipelines builds</li>
<li>Access to Azure Repos pull requests</li>
</ul>
</p>
</div>
2 changes: 1 addition & 1 deletion src/Cake.AzureDevOps.Tests/Cake.AzureDevOps.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="Cake.Core" Version="0.33.0" />
<PackageReference Include="Cake.Testing" Version="0.33.0" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="16.143.2" />
<PackageReference Include="Moq" Version="4.13.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
Loading

0 comments on commit 833309a

Please sign in to comment.