From a0a4e4da326c8afb406b8bedf723246bbb6526cc Mon Sep 17 00:00:00 2001 From: Dominic Jonas Date: Tue, 28 Jun 2022 08:09:21 +0200 Subject: [PATCH 1/2] fixed sdk definition in *.csproj --- src/NLogViewer.TestApp/NLogViewer.TestApp.csproj | 2 +- src/NLogViewer/NLogViewer.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NLogViewer.TestApp/NLogViewer.TestApp.csproj b/src/NLogViewer.TestApp/NLogViewer.TestApp.csproj index 97d121f..43fc610 100644 --- a/src/NLogViewer.TestApp/NLogViewer.TestApp.csproj +++ b/src/NLogViewer.TestApp/NLogViewer.TestApp.csproj @@ -1,4 +1,4 @@ - + WinExe diff --git a/src/NLogViewer/NLogViewer.csproj b/src/NLogViewer/NLogViewer.csproj index 973d18e..51cb887 100644 --- a/src/NLogViewer/NLogViewer.csproj +++ b/src/NLogViewer/NLogViewer.csproj @@ -1,4 +1,4 @@ - + net6-windows From f92048177154da0dae198eba3dbd868a56d4bb27 Mon Sep 17 00:00:00 2001 From: Dominic Jonas Date: Tue, 28 Jun 2022 08:09:46 +0200 Subject: [PATCH 2/2] added global.json to force using sdk v6.0.101 --- src/NLogViewer/global.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/NLogViewer/global.json diff --git a/src/NLogViewer/global.json b/src/NLogViewer/global.json new file mode 100644 index 0000000..f45c840 --- /dev/null +++ b/src/NLogViewer/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "6.0.101", + "rollForward": "disable" + } +} \ No newline at end of file