From c77d590c31a87a4a7c4c172f0d9b08c90043fb2a Mon Sep 17 00:00:00 2001 From: Mike Phares Date: Wed, 26 Feb 2025 08:20:12 -0700 Subject: [PATCH] dotnet 8.0.100 --- .vscode/format-report.json | 1 + .vscode/settings.json | 5 +++++ .vscode/tasks.json | 28 ++++++++++++++++++++++++++++ PDF-Text-Stripper.yml | 2 +- PDF-Text-Stripper/Program.cs | 2 +- global.json | 2 +- 6 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 .vscode/format-report.json create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/format-report.json b/.vscode/format-report.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/.vscode/format-report.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..3599b51 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "[markdown]": { + "editor.wordWrap": "off" + } +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..53d749b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "Build Self", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "--runtime", + "win-x64", + "--self-contained" + ], + "problemMatcher": "$msCompile" + }, + ] +} \ No newline at end of file diff --git a/PDF-Text-Stripper.yml b/PDF-Text-Stripper.yml index 8241a7b..3ef292e 100644 --- a/PDF-Text-Stripper.yml +++ b/PDF-Text-Stripper.yml @@ -23,7 +23,7 @@ steps: displayName: Configuration - script: | - set nugetSource=https://messa08ec.ec.local/v3/index.json + set nugetSource=https://eaf-prod.mes.infineon.com/v3/index.json echo %nugetSource% echo ##vso[task.setvariable variable=NugetSource;]%nugetSource% echo $(NugetSource) diff --git a/PDF-Text-Stripper/Program.cs b/PDF-Text-Stripper/Program.cs index 78d06ea..ac4cbee 100644 --- a/PDF-Text-Stripper/Program.cs +++ b/PDF-Text-Stripper/Program.cs @@ -5,7 +5,7 @@ using System.Linq; namespace PDF_Text_Stripper; -internal class Program +public class Program { private static void PDFTextStripper(string file) diff --git a/global.json b/global.json index 6dd2ad5..062f5fe 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.202" + "version": "8.0.100" } } \ No newline at end of file