dotnet 8.0.100

This commit is contained in:
Mike Phares 2025-02-26 08:20:12 -07:00
parent 18ee50624e
commit c77d590c31
6 changed files with 37 additions and 3 deletions

1
.vscode/format-report.json vendored Normal file
View File

@ -0,0 +1 @@
[]

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"[markdown]": {
"editor.wordWrap": "off"
}
}

28
.vscode/tasks.json vendored Normal file
View File

@ -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"
},
]
}

View File

@ -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)

View File

@ -5,7 +5,7 @@ using System.Linq;
namespace PDF_Text_Stripper;
internal class Program
public class Program
{
private static void PDFTextStripper(string file)

View File

@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.202"
"version": "8.0.100"
}
}