commit 0c8f2d6897da5f48eb3ca4343bcbebaf6883afa5 Author: Sascha Date: Fri Jun 10 09:08:49 2022 +0200 create console diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..826ddee --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + "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/OmniSharp/omnisharp-vscode/blob/master/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/net6.0/console.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..447b928 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/console.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/console.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/console.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/bin/Debug/net6.0/console b/bin/Debug/net6.0/console new file mode 100755 index 0000000..4449be0 Binary files /dev/null and b/bin/Debug/net6.0/console differ diff --git a/bin/Debug/net6.0/console.deps.json b/bin/Debug/net6.0/console.deps.json new file mode 100644 index 0000000..e0601a9 --- /dev/null +++ b/bin/Debug/net6.0/console.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "console/1.0.0": { + "runtime": { + "console.dll": {} + } + } + } + }, + "libraries": { + "console/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/console.dll b/bin/Debug/net6.0/console.dll new file mode 100644 index 0000000..2517b6f Binary files /dev/null and b/bin/Debug/net6.0/console.dll differ diff --git a/bin/Debug/net6.0/console.pdb b/bin/Debug/net6.0/console.pdb new file mode 100644 index 0000000..b926d84 Binary files /dev/null and b/bin/Debug/net6.0/console.pdb differ diff --git a/bin/Debug/net6.0/console.runtimeconfig.json b/bin/Debug/net6.0/console.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/bin/Debug/net6.0/console.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/console.cs b/console.cs new file mode 100644 index 0000000..b642a36 --- /dev/null +++ b/console.cs @@ -0,0 +1,3 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); +Console.WriteLine("The current time is " + DateTime.Now); diff --git a/console.csproj b/console.csproj new file mode 100644 index 0000000..40c60dd --- /dev/null +++ b/console.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..f795be5 --- /dev/null +++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net6.0/apphost b/obj/Debug/net6.0/apphost new file mode 100755 index 0000000..4449be0 Binary files /dev/null and b/obj/Debug/net6.0/apphost differ diff --git a/obj/Debug/net6.0/console.AssemblyInfo.cs b/obj/Debug/net6.0/console.AssemblyInfo.cs new file mode 100644 index 0000000..0151940 --- /dev/null +++ b/obj/Debug/net6.0/console.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("console")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("console")] +[assembly: System.Reflection.AssemblyTitleAttribute("console")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net6.0/console.AssemblyInfoInputs.cache b/obj/Debug/net6.0/console.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c93c2c2 --- /dev/null +++ b/obj/Debug/net6.0/console.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +da23444c5a7fa993a9b0a271f7b6651786e7b89c diff --git a/obj/Debug/net6.0/console.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/console.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a8db781 --- /dev/null +++ b/obj/Debug/net6.0/console.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = console +build_property.ProjectDir = /home/sascha/coding/console/ diff --git a/obj/Debug/net6.0/console.GlobalUsings.g.cs b/obj/Debug/net6.0/console.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0/console.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Debug/net6.0/console.assets.cache b/obj/Debug/net6.0/console.assets.cache new file mode 100644 index 0000000..fcf3e3c Binary files /dev/null and b/obj/Debug/net6.0/console.assets.cache differ diff --git a/obj/Debug/net6.0/console.csproj.AssemblyReference.cache b/obj/Debug/net6.0/console.csproj.AssemblyReference.cache new file mode 100644 index 0000000..272bc5f Binary files /dev/null and b/obj/Debug/net6.0/console.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/console.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/console.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8814eba --- /dev/null +++ b/obj/Debug/net6.0/console.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +38b9c38111d1d9ff99b100421fd38d058b8979e1 diff --git a/obj/Debug/net6.0/console.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/console.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2de2cf0 --- /dev/null +++ b/obj/Debug/net6.0/console.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +/home/sascha/coding/console/bin/Debug/net6.0/console +/home/sascha/coding/console/bin/Debug/net6.0/console.deps.json +/home/sascha/coding/console/bin/Debug/net6.0/console.runtimeconfig.json +/home/sascha/coding/console/bin/Debug/net6.0/console.dll +/home/sascha/coding/console/bin/Debug/net6.0/console.pdb +/home/sascha/coding/console/obj/Debug/net6.0/console.csproj.AssemblyReference.cache +/home/sascha/coding/console/obj/Debug/net6.0/console.GeneratedMSBuildEditorConfig.editorconfig +/home/sascha/coding/console/obj/Debug/net6.0/console.AssemblyInfoInputs.cache +/home/sascha/coding/console/obj/Debug/net6.0/console.AssemblyInfo.cs +/home/sascha/coding/console/obj/Debug/net6.0/console.csproj.CoreCompileInputs.cache +/home/sascha/coding/console/obj/Debug/net6.0/console.dll +/home/sascha/coding/console/obj/Debug/net6.0/ref/console.dll +/home/sascha/coding/console/obj/Debug/net6.0/console.pdb +/home/sascha/coding/console/obj/Debug/net6.0/console.genruntimeconfig.cache +/home/sascha/coding/console/obj/Debug/net6.0/refint/console.dll diff --git a/obj/Debug/net6.0/console.dll b/obj/Debug/net6.0/console.dll new file mode 100644 index 0000000..2517b6f Binary files /dev/null and b/obj/Debug/net6.0/console.dll differ diff --git a/obj/Debug/net6.0/console.genruntimeconfig.cache b/obj/Debug/net6.0/console.genruntimeconfig.cache new file mode 100644 index 0000000..90bd2c0 --- /dev/null +++ b/obj/Debug/net6.0/console.genruntimeconfig.cache @@ -0,0 +1 @@ +530e03b755a3231d4e4d1d11f821e6ee1266339e diff --git a/obj/Debug/net6.0/console.pdb b/obj/Debug/net6.0/console.pdb new file mode 100644 index 0000000..b926d84 Binary files /dev/null and b/obj/Debug/net6.0/console.pdb differ diff --git a/obj/Debug/net6.0/ref/console.dll b/obj/Debug/net6.0/ref/console.dll new file mode 100644 index 0000000..c672ff2 Binary files /dev/null and b/obj/Debug/net6.0/ref/console.dll differ diff --git a/obj/Debug/net6.0/refint/console.dll b/obj/Debug/net6.0/refint/console.dll new file mode 100644 index 0000000..c672ff2 Binary files /dev/null and b/obj/Debug/net6.0/refint/console.dll differ diff --git a/obj/console.csproj.nuget.dgspec.json b/obj/console.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9b1fd01 --- /dev/null +++ b/obj/console.csproj.nuget.dgspec.json @@ -0,0 +1,60 @@ +{ + "format": 1, + "restore": { + "/home/sascha/coding/console/console.csproj": {} + }, + "projects": { + "/home/sascha/coding/console/console.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sascha/coding/console/console.csproj", + "projectName": "console", + "projectPath": "/home/sascha/coding/console/console.csproj", + "packagesPath": "/home/sascha/.nuget/packages/", + "outputPath": "/home/sascha/coding/console/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sascha/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.300/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/console.csproj.nuget.g.props b/obj/console.csproj.nuget.g.props new file mode 100644 index 0000000..af499a0 --- /dev/null +++ b/obj/console.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/sascha/.nuget/packages/ + /home/sascha/.nuget/packages/ + PackageReference + 6.2.0 + + + + + \ No newline at end of file diff --git a/obj/console.csproj.nuget.g.targets b/obj/console.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/console.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..b48136a --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,65 @@ +{ + "version": 3, + "targets": { + "net6.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0": [] + }, + "packageFolders": { + "/home/sascha/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sascha/coding/console/console.csproj", + "projectName": "console", + "projectPath": "/home/sascha/coding/console/console.csproj", + "packagesPath": "/home/sascha/.nuget/packages/", + "outputPath": "/home/sascha/coding/console/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sascha/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.300/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..e14d3b3 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "tVuGVLKXZ9WTS9y67pU26eRaRMKi0bN7DVvd/uPNa8D3zBkAG3J1XzikcFzdFzhYjKCAR8wt1aCSdBRsM3VNsw==", + "success": true, + "projectFilePath": "/home/sascha/coding/console/console.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file