Skip to content

Commit

Permalink
Merge branch 'release/2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jun 11, 2019
2 parents f19e6b0 + 12d5c18 commit 4ac62a3
Show file tree
Hide file tree
Showing 30 changed files with 1,531 additions and 753 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ An option type for .NET.

## Code Coverage

[![Coverage Status](https://coveralls.io/repos/github/BBTSoftwareAG/BBT.Maybe/badge.svg?branch=develop)](https://coveralls.io/github/BBTSoftwareAG/BBT.Maybe?branch=develop)
[![Coverage Status](https://coveralls.io/repos/github/bbtsoftware/BBT.Maybe/badge.svg?branch=develop)](https://coveralls.io/github/bbtsoftware/BBT.Maybe?branch=develop)

## Quick Links

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/BBT.Maybe"))
};
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>
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
<projectUrl>https://github.com/bbtsoftware/BBT.Maybe/</projectUrl>
<iconUrl>https://raw.githubusercontent.com/bbtsoftware/BBT.Maybe/de51feaf705f283540a21b1cb7c317ed36cbd03e/nuspec/nuget/icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<repository type="git" url="https://github.com/bbtsoftware/BBT.Maybe"/>
<repository type="git" url="https://github.com/bbtsoftware/BBT.Maybe.git"/>
<copyright>Copyright © BBT Software AG</copyright>
<tags>Maybe Functional</tags>
<releaseNotes>https://github.com/bbtsoftware/BBT.Maybe/releases/tag/1.0.0</releaseNotes>
<releaseNotes>https://github.com/bbtsoftware/BBT.Maybe/releases/tag/2.0.0</releaseNotes>
</metadata>
<files>
<file src="netstandard2.0\BBT.Maybe.dll" target="lib\netstandard2.0" />
<file src="netstandard2.0\BBT.Maybe.pdb" target="lib\netstandard2.0" />
<file src="netstandard2.0\BBT.Maybe.xml" target="lib\netstandard2.0" />
<file src="netstandard2.0\BBT.MaybePattern.dll" target="lib\netstandard2.0" />
<file src="netstandard2.0\BBT.MaybePattern.pdb" target="lib\netstandard2.0" />
<file src="netstandard2.0\BBT.MaybePattern.xml" target="lib\netstandard2.0" />
</files>
</package>
2 changes: 1 addition & 1 deletion setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BuildParameters.PrintParameters(Context);

ToolSettings.SetToolSettings(
context: Context,
dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/BBT.Maybe.Tests/*.cs" },
dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/BBT.MaybePattern.Tests/*.cs" },
testCoverageFilter: "+[*]* -[xunit.*]* -[*.Tests]* -[Shouldly]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
Expand Down
154 changes: 0 additions & 154 deletions src/BBT.Maybe.Tests/MaybeStructTests.cs

This file was deleted.

Loading

0 comments on commit 4ac62a3

Please sign in to comment.