Skip to content

Commit c82d502

Browse files
committed
Merge branch 'release/1.0.0'
2 parents fa9f44b + 5fee27f commit c82d502

File tree

8 files changed

+25
-20
lines changed

8 files changed

+25
-20
lines changed

.appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ image: Visual Studio 2017
66
#---------------------------------#
77
# Build Script #
88
#---------------------------------#
9+
install:
10+
# Update to latest NuGet version since we require 5.3.0 for embedded icon
11+
- ps: nuget update -self
12+
913
build_script:
1014
- ps: .\build.ps1 -Target AppVeyor
1115

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cake.DocFx Addin
22

3-
This Addin for the Cake Build Automation System allows you to generate a documentation website with [docfx](http://dotnet.github.io/docfx/index.html). More about Cake at http://cakebuild.net
3+
This Addin for the Cake Build Automation System allows you to generate a documentation website with [docfx](http://dotnet.github.io/docfx/index.html). More about Cake at [cakebuild.net](http://cakebuild.net).
44

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

@@ -25,11 +25,11 @@ This Addin for the Cake Build Automation System allows you to generate a documen
2525

2626
- [Documentation](https://cake-contrib.github.io/Cake.DocFx)
2727

28-
## Chat Room
28+
## Discussion
2929

30-
Come join in the conversation about Cake.DocFx in our Gitter Chat Room
30+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.
3131

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)
32+
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)
3333

3434
## Build
3535

@@ -46,4 +46,3 @@ On OSX/Linux run:
4646
```bash
4747
./build.sh
4848
```
49-

docs/input/_Bottom.cshtml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
<div class="github-button">
22
<a href="https://github.com/cake-contrib/Cake.DocFx" target="_blank"><i class="fa fa-github"></i> GitHub</a>
33
</div>
4-
<script>
5-
((window.gitter = {}).chat = {}).options = {
6-
room: 'cake-contrib/Lobby'
7-
};
8-
</script>
9-
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
4+
<div class="github-button">
5+
<a href="https://github.com/cake-build/cake/discussions" target="_blank"><i class="fa fa-comment"></i> Discussions</a>
6+
</div>
107

118
<script type="text/javascript" src="@Context.GetLink("/assets/js/anchor.min.js")"></script>
129
<script type="text/javascript" src="@Context.GetLink("/assets/js/clipboard.min.js")"></script>

docs/input/blog/new-release-0.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Thanks to a contribution from @devlead, we are releasing 0.2.0 of Cake.DocFx. T
2626

2727
It was decided that this was required due to the fact that with the impending release of Cake 0.18.0 all addins need to be at least 0.16.0, so we decided to upload to the latest.
2828

29-
Please do not hesitate to reach out in the [Gitter Channel](https://gitter.im/cake-contrib/Lobby) if you have any issues using this addin.
29+
Please do not hesitate to reach out in the [GitHub discussions](https://github.com/cake-build/cake/discussions) if you have any issues using this addin.

nuspec/nuget/Cake.DocFx.nuspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
<summary>The DocFx Addin for Cake allows you to generated API documentation directly from .NET source code.</summary>
1111
<license type="expression">MIT</license>
1212
<projectUrl>https://github.com/cake-contrib/Cake.DocFx</projectUrl>
13-
<iconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics@a5cf0f881c390650144b2243ae551d5b9f836196/png/cake-contrib-medium.png</iconUrl>
13+
<icon>icon.png</icon>
1414
<repository type="git" url="https://github.com/cake-contrib/Cake.DocFx.git"/>
1515
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1616
<copyright>Copyright (c) Cake Contributions 2016 - Present</copyright>
17-
<tags>Cake Script DocFx</tags>
18-
<releaseNotes>https://github.com/cake-contrib/Cake.DocFx/releases/tag/0.13.0</releaseNotes>
17+
<tags>cake cake-addin docfx</tags>
18+
<releaseNotes>https://github.com/cake-contrib/Cake.DocFx/releases/tag/1.0.0</releaseNotes>
1919
</metadata>
2020
<files>
21+
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />
2122
<file src="netstandard2.0\Cake.DocFx.dll" target="lib\netstandard2.0" />
2223
<file src="netstandard2.0\Cake.DocFx.pdb" target="lib\netstandard2.0" />
2324
<file src="netstandard2.0\Cake.DocFx.xml" target="lib\netstandard2.0" />

nuspec/nuget/icon.png

15.2 KB
Loading

src/Cake.DocFx.Tests/Cake.DocFx.Tests.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<Description>Tests for the Cake.DocFx addin</Description>
77
<Authors>Paul Reichelt and contributors</Authors>
@@ -11,10 +11,14 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Cake.Core" Version="0.33.0" />
15-
<PackageReference Include="Cake.Testing" Version="0.33.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
15+
<PackageReference Include="Cake.Core" Version="1.0.0" />
16+
<PackageReference Include="Cake.Testing" Version="1.0.0" />
1617
<PackageReference Include="xunit" Version="2.4.1" />
17-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
19+
<PrivateAssets>all</PrivateAssets>
20+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
21+
</PackageReference>
1822
</ItemGroup>
1923

2024
<ItemGroup>

src/Cake.DocFx/Cake.DocFx.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Cake.Core" Version="0.33.0" />
26+
<PackageReference Include="Cake.Core" Version="1.0.0" />
2727
</ItemGroup>
2828
</Project>

0 commit comments

Comments
 (0)