Skip to content

Commit 946abc2

Browse files
authored
Merge pull request #116 from gep13/feature/GH-108
(GH-102 GH-108)Switch to using VS2019 for build
2 parents 8469854 + 6e46133 commit 946abc2

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: '{build}'
2+
branches:
3+
only:
4+
- master
5+
- net-standard-migration
6+
image: Visual Studio 2019
7+
build_script:
8+
- ps: >-
9+
cd build
10+
11+
./build.ps1
12+
test_script:
13+
- ps: >-
14+
cd ..\working\sources\src\MagicChunks.Tests
15+
16+
17+
dotnet xunit
18+
artifacts:
19+
- path: working/dotnet/**/*.zip
20+
name: dotnet
21+
- path: working/nuget/*.nupkg
22+
name: nuget
23+
- path: working/vsts/**/*.vsix
24+
name: vsts

build/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Task("Build")
155155
.Does(() => {
156156
MSBuild(paths.workingDirSolutionPath, new MSBuildSettings {
157157
Verbosity = Verbosity.Minimal,
158-
ToolVersion = MSBuildToolVersion.VS2017,
158+
ToolVersion = MSBuildToolVersion.VS2019,
159159
Configuration = configuration,
160160
PlatformTarget = PlatformTarget.MSIL,
161161
}.WithTarget("Build"));

src/MagicChunks.Tests/MagicChunks.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.0</TargetFramework>
5-
<RuntimeFrameworkVersion>2.0.3</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>2.0.9</RuntimeFrameworkVersion>
66
<Authors>Sergey Zwezdin</Authors>
77
<Company />
88
<Product>Magic Chunks</Product>

0 commit comments

Comments
 (0)