commit 7c6e08a991464d5e1a3586754fe254cb8feb3805 Author: sascha Date: Thu Mar 7 08:39:25 2024 +0000 init diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..8bcb927 --- /dev/null +++ b/Program.cs @@ -0,0 +1,20 @@ +namespace MyApp +{ + internal class Program + { + static void Main(string[] args) + { + if (args.Length == 0) + { + Console.WriteLine("Hello World!"); + } + else + { + for (int i = 0; i < args.Length; i++) + { + Console.WriteLine($"Hello {args[i]}!"); + } + } + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/csharp b/bin/Debug/net8.0/csharp new file mode 100755 index 0000000..985f942 Binary files /dev/null and b/bin/Debug/net8.0/csharp differ diff --git a/bin/Debug/net8.0/csharp.deps.json b/bin/Debug/net8.0/csharp.deps.json new file mode 100644 index 0000000..da468ae --- /dev/null +++ b/bin/Debug/net8.0/csharp.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "csharp/1.0.0": { + "runtime": { + "csharp.dll": {} + } + } + } + }, + "libraries": { + "csharp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/csharp.dll b/bin/Debug/net8.0/csharp.dll new file mode 100644 index 0000000..d1db312 Binary files /dev/null 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 new file mode 100644 index 0000000..1880b95 Binary files /dev/null and b/bin/Debug/net8.0/csharp.pdb differ diff --git a/bin/Debug/net8.0/csharp.runtimeconfig.json b/bin/Debug/net8.0/csharp.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/bin/Debug/net8.0/csharp.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/csharp.csproj b/csharp.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/csharp.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/apphost b/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..985f942 Binary files /dev/null and b/obj/Debug/net8.0/apphost differ diff --git a/obj/Debug/net8.0/csharp.AssemblyInfo.cs b/obj/Debug/net8.0/csharp.AssemblyInfo.cs new file mode 100644 index 0000000..aab659d --- /dev/null +++ b/obj/Debug/net8.0/csharp.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("csharp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("csharp")] +[assembly: System.Reflection.AssemblyTitleAttribute("csharp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache b/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7ef036c --- /dev/null +++ b/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fdb310684555c93fdd6a6540d77dca1d57976f1e92e58023ebeda0262dc98637 diff --git a/obj/Debug/net8.0/csharp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/csharp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..71f3e3a --- /dev/null +++ b/obj/Debug/net8.0/csharp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = csharp +build_property.ProjectDir = /home/sascha/csharp/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net8.0/csharp.GlobalUsings.g.cs b/obj/Debug/net8.0/csharp.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net8.0/csharp.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/net8.0/csharp.assets.cache b/obj/Debug/net8.0/csharp.assets.cache new file mode 100644 index 0000000..8734157 Binary files /dev/null and b/obj/Debug/net8.0/csharp.assets.cache differ diff --git a/obj/Debug/net8.0/csharp.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/csharp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..45927a4 --- /dev/null +++ b/obj/Debug/net8.0/csharp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b3efba37a2418da22b9718312c71a268faa30f98ae67c6727ae274bbd94c4522 diff --git a/obj/Debug/net8.0/csharp.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/csharp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..78bf970 --- /dev/null +++ b/obj/Debug/net8.0/csharp.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/home/sascha/csharp/bin/Debug/net8.0/csharp +/home/sascha/csharp/bin/Debug/net8.0/csharp.deps.json +/home/sascha/csharp/bin/Debug/net8.0/csharp.runtimeconfig.json +/home/sascha/csharp/bin/Debug/net8.0/csharp.dll +/home/sascha/csharp/bin/Debug/net8.0/csharp.pdb +/home/sascha/csharp/obj/Debug/net8.0/csharp.GeneratedMSBuildEditorConfig.editorconfig +/home/sascha/csharp/obj/Debug/net8.0/csharp.AssemblyInfoInputs.cache +/home/sascha/csharp/obj/Debug/net8.0/csharp.AssemblyInfo.cs +/home/sascha/csharp/obj/Debug/net8.0/csharp.csproj.CoreCompileInputs.cache +/home/sascha/csharp/obj/Debug/net8.0/csharp.dll +/home/sascha/csharp/obj/Debug/net8.0/refint/csharp.dll +/home/sascha/csharp/obj/Debug/net8.0/csharp.pdb +/home/sascha/csharp/obj/Debug/net8.0/csharp.genruntimeconfig.cache +/home/sascha/csharp/obj/Debug/net8.0/ref/csharp.dll diff --git a/obj/Debug/net8.0/csharp.dll b/obj/Debug/net8.0/csharp.dll new file mode 100644 index 0000000..d1db312 Binary files /dev/null and b/obj/Debug/net8.0/csharp.dll differ diff --git a/obj/Debug/net8.0/csharp.genruntimeconfig.cache b/obj/Debug/net8.0/csharp.genruntimeconfig.cache new file mode 100644 index 0000000..97f2d90 --- /dev/null +++ b/obj/Debug/net8.0/csharp.genruntimeconfig.cache @@ -0,0 +1 @@ +53fc208855379658a7d35c163c18fd8bc2283b1adf6f2f96978d3ee4306aa2b2 diff --git a/obj/Debug/net8.0/csharp.pdb b/obj/Debug/net8.0/csharp.pdb new file mode 100644 index 0000000..1880b95 Binary files /dev/null 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 new file mode 100644 index 0000000..3477002 Binary files /dev/null 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 new file mode 100644 index 0000000..3477002 Binary files /dev/null and b/obj/Debug/net8.0/refint/csharp.dll differ diff --git a/obj/csharp.csproj.nuget.dgspec.json b/obj/csharp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5529738 --- /dev/null +++ b/obj/csharp.csproj.nuget.dgspec.json @@ -0,0 +1,61 @@ +{ + "format": 1, + "restore": { + "/home/sascha/csharp/csharp.csproj": {} + }, + "projects": { + "/home/sascha/csharp/csharp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sascha/csharp/csharp.csproj", + "projectName": "csharp", + "projectPath": "/home/sascha/csharp/csharp.csproj", + "packagesPath": "/home/sascha/.nuget/packages/", + "outputPath": "/home/sascha/csharp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sascha/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.102/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/csharp.csproj.nuget.g.props b/obj/csharp.csproj.nuget.g.props new file mode 100644 index 0000000..d450932 --- /dev/null +++ b/obj/csharp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/sascha/.nuget/packages/ + /home/sascha/.nuget/packages/ + PackageReference + 6.8.1 + + + + + \ No newline at end of file diff --git a/obj/csharp.csproj.nuget.g.targets b/obj/csharp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/csharp.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..43b81ca --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,66 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/sascha/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sascha/csharp/csharp.csproj", + "projectName": "csharp", + "projectPath": "/home/sascha/csharp/csharp.csproj", + "packagesPath": "/home/sascha/.nuget/packages/", + "outputPath": "/home/sascha/csharp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sascha/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.102/PortableRuntimeIdentifierGraph.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..f46b008 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "XZhECQjxwC80x+Ig39yVbwYoNJfPFdqC02RJePctrEIrjbj33sFijLfXO3xdcrKLJWobbFURwveRtZCQaAfMSw==", + "success": true, + "projectFilePath": "/home/sascha/csharp/csharp.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file