Skip to content

Commit

Permalink
Merge pull request #59 from nils-a/feature/GH-52
Browse files Browse the repository at this point in the history
(#52) Bump Cake.Core to 4.0.0
  • Loading branch information
nils-a authored Jul 16, 2024
2 parents c9e401c + 62f8774 commit 6d42c94
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
8 changes: 1 addition & 7 deletions Source/Cake.Discord/Cake.Discord.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Expand All @@ -14,12 +14,6 @@
<None Include="$(ProjectDir)../../README.md" Link="README.md" PackagePath="" Pack="true" />
</ItemGroup>

<ItemGroup>
<!-- Since we're using WARNINGS-AS-ERRORS, we need to disable CCG0009 until we're at the lated version of Cake -->
<CakeContribGuidelinesOmitRecommendedCakeVersion Include="Cake.Common" Visible="false" />
<CakeContribGuidelinesOmitRecommendedCakeVersion Include="Cake.Core" Visible="false" />
</ItemGroup>

<PropertyGroup>
<!-- Properties related to packaging -->
<Authors>Gary Ewan Park</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<CakeVersion>3.0.0</CakeVersion>
<CakeVersion>4.0.0</CakeVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion demo/dsl/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "3.0.0",
"version": "4.0.0",
"commands": [
"dotnet-cake"
],
Expand Down
2 changes: 1 addition & 1 deletion demo/dsl/discord.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#r "../../Source/Cake.Discord/bin/Debug/net7.0/Cake.Discord.dll"
#r "../../Source/Cake.Discord/bin/Debug/net8.0/Cake.Discord.dll"
//#addin "nuget:https://www.nuget.org/api/v2?package=Cake.Discord"

var url = Argument<string>("url", null);
Expand Down

0 comments on commit 6d42c94

Please sign in to comment.