Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
louisfischer committed Dec 29, 2023
2 parents d22734c + 02e4f14 commit cefac9d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017-2023 Cake Contributions Organization
Copyright (c) 2017-2024 Cake Contributions Organization

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
7 changes: 5 additions & 2 deletions nuspec/nuget/Cake.Http.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<releaseNotes></releaseNotes>
<tags>cake script build httpclient web cake-addin</tags>
<dependencies>
<group targetFramework=".NETCoreApp3.1" />
<group targetFramework="net5.0" />
<group targetFramework="net6.0" />
<group targetFramework="net7.0" />
<group targetFramework="net8.0" />
</dependencies>
</metadata>
<files>
Expand All @@ -29,5 +29,8 @@
<file src="net7.0/Cake.Http.dll" target="lib/net7.0" />
<file src="net7.0/Cake.Http.pdb" target="lib/net7.0" />
<file src="net7.0/Cake.Http.xml" target="lib/net7.0" />
<file src="net7.0/Cake.Http.dll" target="lib/net8.0" />
<file src="net7.0/Cake.Http.pdb" target="lib/net8.0" />
<file src="net7.0/Cake.Http.xml" target="lib/net8.0" />
</files>
</package>
12 changes: 6 additions & 6 deletions src/Cake.Http.Tests/Cake.Http.Tests.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>
</PropertyGroup>

<ItemGroup>
Expand All @@ -27,14 +27,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NSubstitute" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="xunit" Version="2.6.4" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Cake.Core" Version="3.0.0" />
<PackageReference Include="Cake.Core" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Http/Cake.Http.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="3.0.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="4.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>

0 comments on commit cefac9d

Please sign in to comment.