From 5a83b938244a9c48993c57ec1a67ffc5d47f51d1 Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Sun, 22 Nov 2020 01:52:16 -0800 Subject: [PATCH 1/3] Update appveyor.yml Checking if appveyor CI fails with just updating from VS 2017 to VS 2019. --- appveyor.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 127981a3..68bf3692 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,7 @@ init: - git config --global core.autocrlf input -image: Visual Studio 2017 + - net start MSSQL$SQL2019 +image: Visual Studio 2019 build_script: - cmd: build.cmd GenerateDocs test: off @@ -8,5 +9,3 @@ version: 0.0.1.{build} artifacts: - path: bin name: bin -services: - - mssql2014 From 18952f03446d3d661af10b8fbca410728bf95f7e Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Sat, 3 Dec 2022 13:41:36 +0100 Subject: [PATCH 2/3] check if app.config binding redirects fix the appveyor unit test issue in this branch --- tests/SqlClient.Tests/app.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SqlClient.Tests/app.config b/tests/SqlClient.Tests/app.config index ac20342e..1959978b 100644 --- a/tests/SqlClient.Tests/app.config +++ b/tests/SqlClient.Tests/app.config @@ -12,6 +12,6 @@ True - + \ No newline at end of file From 34936c963f4a85cc90f7ce6db509f74b80611c67 Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Sat, 3 Dec 2022 13:55:01 +0100 Subject: [PATCH 3/3] set dotnet sdk to 5.0.408 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index aac6be5e..a327b88d 100644 --- a/global.json +++ b/global.json @@ -1 +1 @@ -{ "sdk": { "version": "2.1.402" } } \ No newline at end of file +{ "sdk": { "version": "5.0.408" } } \ No newline at end of file