Skip to content

Commit

Permalink
(cake-contrib#62) Removed usage of nuspec file for NuGet package
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-a committed Aug 5, 2024
1 parent f90f71f commit e8bbea5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 30 deletions.
29 changes: 0 additions & 29 deletions nuspec/nuget/Cake.Slack.nuspec

This file was deleted.

3 changes: 2 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ BuildParameters.SetParameters(context: Context,
repositoryOwner: "cake-contrib",
repositoryName: "Cake.Slack",
appVeyorAccountName: "cakecontrib",
shouldRunInspectCode: false);
shouldRunInspectCode: false,
shouldRunDotNetCorePack: true);

BuildParameters.PrintParameters(Context);

Expand Down
12 changes: 12 additions & 0 deletions src/Cake.Slack/Cake.Slack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<NoWarn>NU5048</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>Cake.Slack</AssemblyName>
<PackageId>Cake.Slack</PackageId>
Expand All @@ -11,6 +12,17 @@
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<ContinuousIntegrationBuild Condition="'$(APPVEYOR)'!=''">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Authors>WCOM AB</Authors>
<Copyright>Copyright (c) WCOM AB</Copyright>
<Description>Provides Slack aliases (extension methods on Cake context) for Cake.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cake-contrib/Cake.Slack</PackageProjectUrl>
<PackageTags>Cake;Script;Build;Slack;cake-addin</PackageTags>
<RepositoryUrl>$(PackageProjectUrl).git</RepositoryUrl>
<PackageReleaseNotes>$(PackageProjectUrl)/releases</PackageReleaseNotes>
<Version>0.0.0</Version>
<PackageIconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/addin/cake-contrib-addin-medium.png</PackageIconUrl>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit e8bbea5

Please sign in to comment.