Skip to content

(#97) Bump Cake.Core Reference to 3.0.0 #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<DebugType>full</DebugType>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -20,7 +20,7 @@
</PackageReference>
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (windows-2022)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (windows-2022)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (windows-2022)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (windows-2022)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (macos-12)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (macos-12)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (macos-12)

Cake.Common is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in Source/Cake.DotNetVersionDetector/Cake.DotNetVersionDetector.csproj

View workflow job for this annotation

GitHub Actions / build (macos-12)

Cake.Core is referenced in version 3.0.0. Recommended version is 4.0.0. (see https://cake-contrib.github.io/CakeContrib.Guidelines/rules/ccg0009)

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>pdbonly</DebugType>
<NeutralLanguage>en-GB</NeutralLanguage>
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>2.0.0</CakeVersion>
<CakeVersion>3.0.0</CakeVersion>
</PropertyGroup>
</Project>
Loading