Skip to content

Commit

Permalink
Merge pull request #49 from nils-a/release/1.0.0
Browse files Browse the repository at this point in the history
Release/1.0.0
  • Loading branch information
nils-a authored Jul 24, 2024
2 parents 0d5af5d + 9bdd502 commit 9312c94
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -10,13 +10,13 @@
</PackageReference>
<PackageReference Include="Cake.Testing" Version="$(CakeVersion)">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
<PackageReference Include="xunit" Version="2.9.0" />
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
</ItemGroup>
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>0.33.0</CakeVersion>
<CakeVersion>1.0.0</CakeVersion>
</PropertyGroup>
</Project>
5 changes: 4 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ BuildParameters.SetParameters(context: Context,
repositoryOwner: "cake-contrib",
repositoryName: "Cake.Chocolatey.Module",
shouldRunCodecov: false,
shouldRunCoveralls: false,
shouldPostToGitter: false,
appVeyorAccountName: "cakecontrib",
shouldRunDotNetCorePack: true);
shouldRunDotNetCorePack: true,
preferredBuildProviderType: BuildProviderType.GitHubActions,
preferredBuildAgentOperatingSystem: PlatformFamily.Windows);

BuildParameters.PrintParameters(Context);

Expand Down

0 comments on commit 9312c94

Please sign in to comment.