Skip to content

Commit

Permalink
Merge branch 'release/4.0.0'
Browse files Browse the repository at this point in the history
Jericho committed Nov 17, 2024
2 parents ba2262e + 4cae368 commit 5d59fd6
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "1.3.0",
"version": "2.3.0",
"commands": [
"dotnet-cake"
]
8 changes: 4 additions & 4 deletions Source/Cake.SendGrid/Cake.SendGrid.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;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputType>Library</OutputType>
@@ -27,9 +27,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="4.0.0" PrivateAssets="All" />
<PackageReference Include="Cake.Email.Common" Version="3.0.0" />
<PackageReference Include="StrongGrid" Version="0.102.0" />
<PackageReference Include="Cake.Core" Version="5.0.0" PrivateAssets="All" />
<PackageReference Include="Cake.Email.Common" Version="4.0.1" />
<PackageReference Include="StrongGrid" Version="0.110.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
</ItemGroup>

1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,6 @@ cache:

# Environment configuration
image:
- Ubuntu1804
- Visual Studio 2022

# Skip builds for doc changes
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.100",
"rollForward": "patch",
"allowPrerelease": false
}
3 changes: 1 addition & 2 deletions recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Cake.Recipe&version=3.1.1
#load nuget:https://pkgs.dev.azure.com/cake-contrib/Home/_packaging/addins/nuget/v3/index.json?package=Cake.Recipe&version=4.0.0-alpha0126

Environment.SetVariableNames();

@@ -12,7 +12,6 @@ BuildParameters.SetParameters(context: Context,
shouldRunDotNetCorePack: true,
shouldRunInspectCode: false,
shouldRunCodecov: false,
shouldPostToGitter: false,
appVeyorAccountName: "cakecontrib",
shouldCalculateVersion: true);

0 comments on commit 5d59fd6

Please sign in to comment.