Skip to content

Commit

Permalink
Add cake-addin tag to NuGet package
Browse files Browse the repository at this point in the history
* fixes #138
  • Loading branch information
devlead committed Mar 12, 2021
1 parent bb3b7c9 commit 7b0868a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### New in 1.0.1 (Released 2021/03/12)

* Add cake-addin tag to NuGet package

### New in 1.0.0 (Released 2021/02/09)

* Bumped Cake.Core to 1.0.0
Expand Down
8 changes: 5 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Install modules
#module nuget:?package=Cake.DotNetTool.Module&version=0.4.0
#module nuget:?package=Cake.DotNetTool.Module&version=1.0.1


// Install .NET Global tools.
Expand Down Expand Up @@ -54,7 +54,7 @@ var nuGetPackSettings = new NuGetPackSettings {
License = new NuSpecLicense { Type = "expression", Value = "MIT" },
Copyright = assemblyInfo.Copyright,
ReleaseNotes = releaseNotes.Notes.ToArray(),
Tags = new [] {"Cake", "Script", "Build", "Git"},
Tags = new [] { "Cake", "Script", "Build", "Git", "cake-addin" },
RequireLicenseAcceptance= false,
Symbols = false,
NoPackageAnalysis = true,
Expand All @@ -67,7 +67,9 @@ var msBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("Version", semVersion)
.WithProperty("AssemblyVersion", version)
.WithProperty("FileVersion", version)
.WithProperty("PackageReleaseNotes", string.Concat("\"", string.Concat(releaseNotes.Notes.ToArray()), "\""));
.WithProperty("PackageReleaseNotes", string.Concat("\"", string.Concat(releaseNotes.Notes.ToArray()), "\""))
.WithProperty("ContinuousIntegrationBuild", AppVeyor.IsRunningOnAppVeyor ? "true" : "false")
.WithProperty("EmbedUntrackedSources", "true");
Context.Tools.RegisterFile("./tools/nuget.exe");
Expand Down
2 changes: 2 additions & 0 deletions src/Cake.Git/Cake.Git.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461;net5.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
Expand All @@ -18,6 +19,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cake.Core" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' != 'net461' ">
<PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0096" />
Expand Down
6 changes: 3 additions & 3 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
[assembly: AssemblyDescription("Cake Git AddIn")]
[assembly: AssemblyCompany("WCOM AB")]
[assembly: AssemblyProduct("Cake.Git")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]
[assembly: AssemblyInformationalVersion("1.0.1")]
[assembly: AssemblyCopyright("Copyright © WCOM AB 2021")]
[assembly: CLSCompliant(true)]

0 comments on commit 7b0868a

Please sign in to comment.