From 49833eb9b0ebf30a5a93720d72196e2be63741ba Mon Sep 17 00:00:00 2001 From: Jake Landau <5353216+jakelandau@users.noreply.github.com> Date: Thu, 17 Aug 2023 09:34:22 -0400 Subject: [PATCH 1/3] Launch settings for WSL debugger --- TestApplication/Properties/launchSettings.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 TestApplication/Properties/launchSettings.json diff --git a/TestApplication/Properties/launchSettings.json b/TestApplication/Properties/launchSettings.json new file mode 100644 index 00000000..adc5d63a --- /dev/null +++ b/TestApplication/Properties/launchSettings.json @@ -0,0 +1,11 @@ +{ + "profiles": { + "TestApplication": { + "commandName": "Project" + }, + "WSL": { + "commandName": "WSL2", + "distributionName": "" + } + } +} \ No newline at end of file From e90e98e7eeb1d351088a17980f7ee8e88049ad61 Mon Sep 17 00:00:00 2001 From: Jake Landau <5353216+jakelandau@users.noreply.github.com> Date: Thu, 17 Aug 2023 09:35:20 -0400 Subject: [PATCH 2/3] Updated Newtonsoft to 13.0.3 due to critical security vulnerability --- TMDbLib.sln | 6 +++--- TMDbLib/TMDbLib.csproj | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/TMDbLib.sln b/TMDbLib.sln index a33e9e6c..a6138571 100644 --- a/TMDbLib.sln +++ b/TMDbLib.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31105.61 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33815.320 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TMDbLib", "TMDbLib\TMDbLib.csproj", "{A7D4744C-9EF2-4CC3-B786-E8E568874933}" EndProject @@ -10,8 +10,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TMDbLibTests", "TMDbLibTest EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{26BF5A0A-354A-46F5-A20C-0BEB5D45783A}" ProjectSection(SolutionItems) = preProject - Directory.Build.props = Directory.Build.props .editorconfig = .editorconfig + Directory.Build.props = Directory.Build.props Readme.md = Readme.md EndProjectSection EndProject diff --git a/TMDbLib/TMDbLib.csproj b/TMDbLib/TMDbLib.csproj index c6a8dfca..a70f798c 100644 --- a/TMDbLib/TMDbLib.csproj +++ b/TMDbLib/TMDbLib.csproj @@ -15,10 +15,14 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + - + From 3c287c8da4cda6d8670e61bed358c4f856bb2623 Mon Sep 17 00:00:00 2001 From: Jake Landau <5353216+jakelandau@users.noreply.github.com> Date: Thu, 17 Aug 2023 16:11:50 -0400 Subject: [PATCH 3/3] Removed launchSettings.json --- TestApplication/Properties/launchSettings.json | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 TestApplication/Properties/launchSettings.json diff --git a/TestApplication/Properties/launchSettings.json b/TestApplication/Properties/launchSettings.json deleted file mode 100644 index adc5d63a..00000000 --- a/TestApplication/Properties/launchSettings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "profiles": { - "TestApplication": { - "commandName": "Project" - }, - "WSL": { - "commandName": "WSL2", - "distributionName": "" - } - } -} \ No newline at end of file