diff --git a/GitReleaseManager.yaml b/GitReleaseManager.yaml index c4de094a9..e91709ec9 100644 --- a/GitReleaseManager.yaml +++ b/GitReleaseManager.yaml @@ -1,7 +1,7 @@ create: include-footer: true footer-heading: Where to get it - footer-content: You can download this release from [GitHub](https://github.com/sharparchitecture/Sharp-Architecture/releases/{milestone} + footer-content: You can download this release from [GitHub](https://github.com/sharparchitecture/Sharp-Architecture/releases/{milestone}) footer-includes-milestone: true milestone-replace-text: '{milestone}' # export: diff --git a/README.md b/README.md index e88239703..f86f00512 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ | | Stable | Develop | |:--:|:--:|:--:| | Build | [![Build status](https://ci.appveyor.com/api/projects/status/q90e3hg7g3wgf79p/branch/master?svg=true)](https://ci.appveyor.com/project/sharparchitecture/sharp-architecture/branch/master) | [![Build status](https://ci.appveyor.com/api/projects/status/q90e3hg7g3wgf79p?svg=true)](https://ci.appveyor.com/project/sharparchitecture/sharp-architecture) | -| NuGet | [![NuGet](https://img.shields.io/nuget/v/Sharp-Architecture.svg)](https://www.nuget.org/packages?q=SharpArch)|[![NuGet](https://img.shields.io/nuget/vpre/Sharp-Architecture.svg)](https://www.nuget.org/packages?q=SharpArch) | +| NuGet | [![NuGet](https://img.shields.io/nuget/v/SharpArch.Domain.svg)](https://www.nuget.org/packages?q=SharpArch)|[![NuGet](https://img.shields.io/nuget/vpre/SharpArch.Domain.svg)](https://www.nuget.org/packages?q=SharpArch) | | Coverage | [![Coverage Status](https://coveralls.io/repos/github/sharparchitecture/Sharp-Architecture/badge.svg?branch=master)](https://coveralls.io/github/sharparchitecture/Sharp-Architecture?branch=master) | [![Coverage Status](https://coveralls.io/repos/github/sharparchitecture/Sharp-Architecture/badge.svg?branch=develop)](https://coveralls.io/github/sharparchitecture/Sharp-Architecture?branch=develop) | diff --git a/build.cake b/build.cake index fd9f01410..dd8e83226 100644 --- a/build.cake +++ b/build.cake @@ -316,7 +316,7 @@ Task("CreateNugetPackages") if (isTagged) { var releaseNotes = $"https://github.com/{repoOwner}/{repoName}/releases/tag/{milestone}"; Information("Updating ReleaseNotes Link: {0}", releaseNotes); - XmlPoke($"{srcDir}/Directory.Build.props", + XmlPoke("./Directory.Build.props", "/Project/PropertyGroup[@Label=\"Package\"]/PackageReleaseNotes", releaseNotes );