Skip to content

Commit

Permalink
Merge pull request #286 from alphacloud/release/10.0.0
Browse files Browse the repository at this point in the history
v 10.0.0
  • Loading branch information
cd21h authored Mar 7, 2024
2 parents a162a30 + 5a93e66 commit 848873a
Show file tree
Hide file tree
Showing 9 changed files with 394 additions and 268 deletions.
2 changes: 1 addition & 1 deletion .build/definitions.cake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#addin nuget:?package=Cake.AppVeyor&version=5.0.1

// TOOLS
#tool nuget:?package=GitReleaseManager&version=0.12.1
#tool nuget:?package=GitReleaseManager&version=0.16.0
#tool nuget:?package=GitVersion.CommandLine&version=5.7.0
#tool nuget:?package=coveralls.net&version=4.0.1
#tool nuget:?package=OpenCover&version=4.7.1221
Expand Down
5 changes: 3 additions & 2 deletions .build/tasks.cake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Task("RunXunitTests")
// keep in sync with src/Directory.Build.props
var testTargets = new KeyValuePair<string, bool>[] {
new KeyValuePair<string,bool>("net6.0", true),
new KeyValuePair<string,bool>("net7.0", true) // opencover does not work with .NET 7 preview
new KeyValuePair<string,bool>("net7.0", true),
new KeyValuePair<string,bool>("net8.0", true)
};
foreach(var targetFw in testTargets)
{
Expand Down Expand Up @@ -205,7 +206,7 @@ Task("CreateNugetPackages")
NoBuild = true,
ArgumentCustomization = args =>
args.Append($"-p:Version={build.Version.NuGet}")
.Append($"-p:PublishDir={build.Paths.PackagesDir}")
.Append($"--output {build.Paths.PackagesDir}")
});
});

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ deploy:
- provider: NuGet
name: Pre release
api_key:
secure: pDQpeet/1FErGM/rXfNGkVy3KW1AggVTp0k0GNx4O6OsKoKqUUcYT6f307wCt9WJ
secure: qGRW/ARoy2CIP3XMczuD8Oz0w0WejwGPZI/m9p1meBRyAwQyZEhIUW7n9TDjSFkc
on:
branch:
- develop
Expand All @@ -52,6 +52,6 @@ deploy:
- provider: NuGet
name: Tagged release
api_key:
secure: pDQpeet/1FErGM/rXfNGkVy3KW1AggVTp0k0GNx4O6OsKoKqUUcYT6f307wCt9WJ
secure: qGRW/ARoy2CIP3XMczuD8Oz0w0WejwGPZI/m9p1meBRyAwQyZEhIUW7n9TDjSFkc
on:
appveyor_repo_tag: true
Loading

0 comments on commit 848873a

Please sign in to comment.