Skip to content

Commit

Permalink
refreshing build
Browse files Browse the repository at this point in the history
  • Loading branch information
nayato committed Jul 19, 2021
1 parent 05e5aa4 commit 7d1017c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions appveyor.yaml → appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: 0.4.{build}
image: Visual Studio 2017 RC
version: 0.7.0.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2019
build_script:
- cmd: powershell .\build.ps1 --target=PR
- cmd: powershell .\build.ps1 -target PR
test: off
deploy: off
notifications:
Expand Down
8 changes: 4 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ var csProjectFiles = GetFiles("./src/**/*.csproj");
var nuget = Directory("tools");
var output = Directory("build");
var outputBinaries = output + Directory("binaries");
var outputBinariesNet45 = outputBinaries + Directory("net45");
var outputBinariesNetstandard = outputBinaries + Directory("netstandard1.3");
var outputBinariesNet = outputBinaries + Directory("net472");
var outputBinariesNetStandard = outputBinaries + Directory("netstandard2.0");
var outputPackages = output + Directory("packages");
var outputNuGet = output + Directory("nuget");
var outputPerfResults = Directory("perfResults");
Expand All @@ -37,7 +37,7 @@ Task("Clean")
// Clean artifact directories.
CleanDirectories(new DirectoryPath[] {
output, outputBinaries, outputPackages, outputNuGet,
outputBinariesNet45, outputBinariesNetstandard
outputBinariesNet, outputBinariesNetStandard
});

if(!skipClean) {
Expand Down Expand Up @@ -311,7 +311,7 @@ Task("Mono")
Task("PR")
//.IsDependentOn("Update-Version")
.IsDependentOn("Test")
.IsDependentOn("Benchmark")
//.IsDependentOn("Benchmark")
.IsDependentOn("Package-NuGet");

Task("Nightly")
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Param(

$CakeVersion = "0.27.1"
$DotNetChannel = "Current";
$DotNetVersion = "2.1.101";
$DotNetVersion = "3.1.411";
$DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1";
$NugetUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
# Temporarily skip verification of addins.
Expand Down
2 changes: 1 addition & 1 deletion src/shared/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
[assembly: AssemblyProduct("DotNetty")]
[assembly: AssemblyVersion("0.7.0")]
[assembly: AssemblyFileVersion("0.7.0")]
[assembly: AssemblyCopyright("(c) Microsoft 2015 - 2018")]
[assembly: AssemblyCopyright("(c) Microsoft 2015 - 2021")]

0 comments on commit 7d1017c

Please sign in to comment.