diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..60178a8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/net8.0/csharp.dll", + "args": [], + "cwd": "${workspaceFolder}", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3545107 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/csharp.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/csharp.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/csharp.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/bin/Debug/net8.0/csharp.dll b/bin/Debug/net8.0/csharp.dll index d1db312..1ae4af9 100644 Binary files a/bin/Debug/net8.0/csharp.dll and b/bin/Debug/net8.0/csharp.dll differ diff --git a/bin/Debug/net8.0/csharp.pdb b/bin/Debug/net8.0/csharp.pdb index 1880b95..b0d4540 100644 Binary files a/bin/Debug/net8.0/csharp.pdb and b/bin/Debug/net8.0/csharp.pdb differ diff --git a/obj/Debug/net8.0/csharp.AssemblyInfo.cs b/obj/Debug/net8.0/csharp.AssemblyInfo.cs index aab659d..eeefa44 100644 --- a/obj/Debug/net8.0/csharp.AssemblyInfo.cs +++ b/obj/Debug/net8.0/csharp.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("csharp")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7c6e08a991464d5e1a3586754fe254cb8feb3805")] [assembly: System.Reflection.AssemblyProductAttribute("csharp")] [assembly: System.Reflection.AssemblyTitleAttribute("csharp")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache b/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache index 7ef036c..bf43928 100644 --- a/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache +++ b/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache @@ -1 +1 @@ -fdb310684555c93fdd6a6540d77dca1d57976f1e92e58023ebeda0262dc98637 +2310471d8cdfd315b0c5280b08131ad29cf8e0b463fd91444dea2c994742b613 diff --git a/obj/Debug/net8.0/csharp.dll b/obj/Debug/net8.0/csharp.dll index d1db312..1ae4af9 100644 Binary files a/obj/Debug/net8.0/csharp.dll and b/obj/Debug/net8.0/csharp.dll differ diff --git a/obj/Debug/net8.0/csharp.pdb b/obj/Debug/net8.0/csharp.pdb index 1880b95..b0d4540 100644 Binary files a/obj/Debug/net8.0/csharp.pdb and b/obj/Debug/net8.0/csharp.pdb differ diff --git a/obj/Debug/net8.0/ref/csharp.dll b/obj/Debug/net8.0/ref/csharp.dll index 3477002..96d6031 100644 Binary files a/obj/Debug/net8.0/ref/csharp.dll and b/obj/Debug/net8.0/ref/csharp.dll differ diff --git a/obj/Debug/net8.0/refint/csharp.dll b/obj/Debug/net8.0/refint/csharp.dll index 3477002..96d6031 100644 Binary files a/obj/Debug/net8.0/refint/csharp.dll and b/obj/Debug/net8.0/refint/csharp.dll differ