commit cc17609d0287c8024616124d97fd763580877eca Author: Christian Date: Sun Sep 15 09:25:06 2024 +0200 Initialcommit diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0c352b0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "TestAPP.sln" +} \ No newline at end of file diff --git a/TestAPP.sln b/TestAPP.sln new file mode 100644 index 0000000..7006947 --- /dev/null +++ b/TestAPP.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestAPP", "TestAPP\TestAPP.csproj", "{DEB5664F-A229-4B10-8008-E6A6FA020E02}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DEB5664F-A229-4B10-8008-E6A6FA020E02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DEB5664F-A229-4B10-8008-E6A6FA020E02}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DEB5664F-A229-4B10-8008-E6A6FA020E02}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DEB5664F-A229-4B10-8008-E6A6FA020E02}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/TestAPP/Program.cs b/TestAPP/Program.cs new file mode 100644 index 0000000..50dba63 --- /dev/null +++ b/TestAPP/Program.cs @@ -0,0 +1,24 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); +// Type your username and press enter +Console.WriteLine("Enter username:"); + +// Create a string variable and get user input from the keyboard and store it in the variable + + +string? userName = ""; + +while(userName?.Length == 0) +{ + userName = Console.ReadLine(); + if(userName?.Length >= 1) + { + Console.WriteLine("Deiner Eingabe war: {0}", userName); + } + + else + { + Console.WriteLine("Keine Eingabe getätigt!"); + } +} + diff --git a/TestAPP/TestAPP.csproj b/TestAPP/TestAPP.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/TestAPP/TestAPP.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/TestAPP/bin/Debug/net8.0/TestAPP b/TestAPP/bin/Debug/net8.0/TestAPP new file mode 100755 index 0000000..b305ac1 Binary files /dev/null and b/TestAPP/bin/Debug/net8.0/TestAPP differ diff --git a/TestAPP/bin/Debug/net8.0/TestAPP.deps.json b/TestAPP/bin/Debug/net8.0/TestAPP.deps.json new file mode 100644 index 0000000..e54c92b --- /dev/null +++ b/TestAPP/bin/Debug/net8.0/TestAPP.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TestAPP/1.0.0": { + "runtime": { + "TestAPP.dll": {} + } + } + } + }, + "libraries": { + "TestAPP/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TestAPP/bin/Debug/net8.0/TestAPP.dll b/TestAPP/bin/Debug/net8.0/TestAPP.dll new file mode 100644 index 0000000..ea32dda Binary files /dev/null and b/TestAPP/bin/Debug/net8.0/TestAPP.dll differ diff --git a/TestAPP/bin/Debug/net8.0/TestAPP.pdb b/TestAPP/bin/Debug/net8.0/TestAPP.pdb new file mode 100644 index 0000000..76464ee Binary files /dev/null and b/TestAPP/bin/Debug/net8.0/TestAPP.pdb differ diff --git a/TestAPP/bin/Debug/net8.0/TestAPP.runtimeconfig.json b/TestAPP/bin/Debug/net8.0/TestAPP.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/TestAPP/bin/Debug/net8.0/TestAPP.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/TestAPP/bin/Release/net8.0/TestAPP b/TestAPP/bin/Release/net8.0/TestAPP new file mode 100755 index 0000000..b305ac1 Binary files /dev/null and b/TestAPP/bin/Release/net8.0/TestAPP differ diff --git a/TestAPP/bin/Release/net8.0/TestAPP.deps.json b/TestAPP/bin/Release/net8.0/TestAPP.deps.json new file mode 100644 index 0000000..e54c92b --- /dev/null +++ b/TestAPP/bin/Release/net8.0/TestAPP.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TestAPP/1.0.0": { + "runtime": { + "TestAPP.dll": {} + } + } + } + }, + "libraries": { + "TestAPP/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TestAPP/bin/Release/net8.0/TestAPP.dll b/TestAPP/bin/Release/net8.0/TestAPP.dll new file mode 100644 index 0000000..7fa9b1d Binary files /dev/null and b/TestAPP/bin/Release/net8.0/TestAPP.dll differ diff --git a/TestAPP/bin/Release/net8.0/TestAPP.pdb b/TestAPP/bin/Release/net8.0/TestAPP.pdb new file mode 100644 index 0000000..bfdf451 Binary files /dev/null and b/TestAPP/bin/Release/net8.0/TestAPP.pdb differ diff --git a/TestAPP/bin/Release/net8.0/TestAPP.runtimeconfig.json b/TestAPP/bin/Release/net8.0/TestAPP.runtimeconfig.json new file mode 100644 index 0000000..d784515 --- /dev/null +++ b/TestAPP/bin/Release/net8.0/TestAPP.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/TestAPP/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/TestAPP/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/TestAPP/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/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfo.cs b/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfo.cs new file mode 100644 index 0000000..4eadf70 --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.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("TestAPP")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TestAPP")] +[assembly: System.Reflection.AssemblyTitleAttribute("TestAPP")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfoInputs.cache b/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5406610 --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3650624da67fe4a2c01825bd9ae7251662c15322cc13a59397a52325adb97716 diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig b/TestAPP/obj/Debug/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4f39e24 --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.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 = TestAPP +build_property.ProjectDir = /home/christian/Softwareentwicklung/csharp/TestAPP/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.GlobalUsings.g.cs b/TestAPP/obj/Debug/net8.0/TestAPP.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.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/TestAPP/obj/Debug/net8.0/TestAPP.assets.cache b/TestAPP/obj/Debug/net8.0/TestAPP.assets.cache new file mode 100644 index 0000000..5f1cfb6 Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/TestAPP.assets.cache differ diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.csproj.CoreCompileInputs.cache b/TestAPP/obj/Debug/net8.0/TestAPP.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a65560b --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7d7aa3d5b134bb8c22c774e312cf724727a831e335cd59ab466a335b90ac0c00 diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.csproj.FileListAbsolute.txt b/TestAPP/obj/Debug/net8.0/TestAPP.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ea970a7 --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Debug/net8.0/TestAPP +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Debug/net8.0/TestAPP.deps.json +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Debug/net8.0/TestAPP.runtimeconfig.json +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Debug/net8.0/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Debug/net8.0/TestAPP.pdb +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfoInputs.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.AssemblyInfo.cs +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.csproj.CoreCompileInputs.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/refint/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.pdb +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/TestAPP.genruntimeconfig.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Debug/net8.0/ref/TestAPP.dll diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.dll b/TestAPP/obj/Debug/net8.0/TestAPP.dll new file mode 100644 index 0000000..ea32dda Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/TestAPP.dll differ diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.genruntimeconfig.cache b/TestAPP/obj/Debug/net8.0/TestAPP.genruntimeconfig.cache new file mode 100644 index 0000000..24853d6 --- /dev/null +++ b/TestAPP/obj/Debug/net8.0/TestAPP.genruntimeconfig.cache @@ -0,0 +1 @@ +a1bc028fd65e83b7717768f8d3e7d3a2079fe06c8bf77278b494a45c0bbf06a0 diff --git a/TestAPP/obj/Debug/net8.0/TestAPP.pdb b/TestAPP/obj/Debug/net8.0/TestAPP.pdb new file mode 100644 index 0000000..76464ee Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/TestAPP.pdb differ diff --git a/TestAPP/obj/Debug/net8.0/apphost b/TestAPP/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..b305ac1 Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/apphost differ diff --git a/TestAPP/obj/Debug/net8.0/ref/TestAPP.dll b/TestAPP/obj/Debug/net8.0/ref/TestAPP.dll new file mode 100644 index 0000000..79d681d Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/ref/TestAPP.dll differ diff --git a/TestAPP/obj/Debug/net8.0/refint/TestAPP.dll b/TestAPP/obj/Debug/net8.0/refint/TestAPP.dll new file mode 100644 index 0000000..79d681d Binary files /dev/null and b/TestAPP/obj/Debug/net8.0/refint/TestAPP.dll differ diff --git a/TestAPP/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/TestAPP/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/TestAPP/obj/Release/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/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfo.cs b/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfo.cs new file mode 100644 index 0000000..6a0230b --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.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("TestAPP")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TestAPP")] +[assembly: System.Reflection.AssemblyTitleAttribute("TestAPP")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfoInputs.cache b/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8362c77 --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4a718f6ac297795ca2613edefc955896a6201e0d090945c735ff6079c6227d94 diff --git a/TestAPP/obj/Release/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig b/TestAPP/obj/Release/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4f39e24 --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.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 = TestAPP +build_property.ProjectDir = /home/christian/Softwareentwicklung/csharp/TestAPP/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/TestAPP/obj/Release/net8.0/TestAPP.GlobalUsings.g.cs b/TestAPP/obj/Release/net8.0/TestAPP.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.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/TestAPP/obj/Release/net8.0/TestAPP.assets.cache b/TestAPP/obj/Release/net8.0/TestAPP.assets.cache new file mode 100644 index 0000000..05ab306 Binary files /dev/null and b/TestAPP/obj/Release/net8.0/TestAPP.assets.cache differ diff --git a/TestAPP/obj/Release/net8.0/TestAPP.csproj.CoreCompileInputs.cache b/TestAPP/obj/Release/net8.0/TestAPP.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cdcdff7 --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +cc51b72db81bd9fe7209285c6a37def4b44e3376dc15c574beeac48accec8f1c diff --git a/TestAPP/obj/Release/net8.0/TestAPP.csproj.FileListAbsolute.txt b/TestAPP/obj/Release/net8.0/TestAPP.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..33064ab --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Release/net8.0/TestAPP +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Release/net8.0/TestAPP.deps.json +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Release/net8.0/TestAPP.runtimeconfig.json +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Release/net8.0/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/bin/Release/net8.0/TestAPP.pdb +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.GeneratedMSBuildEditorConfig.editorconfig +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfoInputs.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.AssemblyInfo.cs +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.csproj.CoreCompileInputs.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/refint/TestAPP.dll +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.pdb +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/TestAPP.genruntimeconfig.cache +/home/christian/Softwareentwicklung/csharp/TestAPP/obj/Release/net8.0/ref/TestAPP.dll diff --git a/TestAPP/obj/Release/net8.0/TestAPP.dll b/TestAPP/obj/Release/net8.0/TestAPP.dll new file mode 100644 index 0000000..7fa9b1d Binary files /dev/null and b/TestAPP/obj/Release/net8.0/TestAPP.dll differ diff --git a/TestAPP/obj/Release/net8.0/TestAPP.genruntimeconfig.cache b/TestAPP/obj/Release/net8.0/TestAPP.genruntimeconfig.cache new file mode 100644 index 0000000..e03c117 --- /dev/null +++ b/TestAPP/obj/Release/net8.0/TestAPP.genruntimeconfig.cache @@ -0,0 +1 @@ +7e6ceb0882a0f31931528605698f756334ddd31a357b2c97a25b124d1109ee35 diff --git a/TestAPP/obj/Release/net8.0/TestAPP.pdb b/TestAPP/obj/Release/net8.0/TestAPP.pdb new file mode 100644 index 0000000..bfdf451 Binary files /dev/null and b/TestAPP/obj/Release/net8.0/TestAPP.pdb differ diff --git a/TestAPP/obj/Release/net8.0/apphost b/TestAPP/obj/Release/net8.0/apphost new file mode 100755 index 0000000..b305ac1 Binary files /dev/null and b/TestAPP/obj/Release/net8.0/apphost differ diff --git a/TestAPP/obj/Release/net8.0/ref/TestAPP.dll b/TestAPP/obj/Release/net8.0/ref/TestAPP.dll new file mode 100644 index 0000000..28a7a27 Binary files /dev/null and b/TestAPP/obj/Release/net8.0/ref/TestAPP.dll differ diff --git a/TestAPP/obj/Release/net8.0/refint/TestAPP.dll b/TestAPP/obj/Release/net8.0/refint/TestAPP.dll new file mode 100644 index 0000000..28a7a27 Binary files /dev/null and b/TestAPP/obj/Release/net8.0/refint/TestAPP.dll differ diff --git a/TestAPP/obj/TestAPP.csproj.nuget.dgspec.json b/TestAPP/obj/TestAPP.csproj.nuget.dgspec.json new file mode 100644 index 0000000..edc6189 --- /dev/null +++ b/TestAPP/obj/TestAPP.csproj.nuget.dgspec.json @@ -0,0 +1,67 @@ +{ + "format": 1, + "restore": { + "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj": {} + }, + "projects": { + "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj", + "projectName": "TestAPP", + "projectPath": "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj", + "packagesPath": "/home/christian/.nuget/packages/", + "outputPath": "/home/christian/Softwareentwicklung/csharp/TestAPP/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/christian/.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, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.7, 8.0.7]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.107/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/TestAPP/obj/TestAPP.csproj.nuget.g.props b/TestAPP/obj/TestAPP.csproj.nuget.g.props new file mode 100644 index 0000000..f69bf6b --- /dev/null +++ b/TestAPP/obj/TestAPP.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/christian/.nuget/packages/ + /home/christian/.nuget/packages/ + PackageReference + 6.8.1 + + + + + \ No newline at end of file diff --git a/TestAPP/obj/TestAPP.csproj.nuget.g.targets b/TestAPP/obj/TestAPP.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/TestAPP/obj/TestAPP.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/TestAPP/obj/project.assets.json b/TestAPP/obj/project.assets.json new file mode 100644 index 0000000..d0e6614 --- /dev/null +++ b/TestAPP/obj/project.assets.json @@ -0,0 +1,72 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/christian/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj", + "projectName": "TestAPP", + "projectPath": "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj", + "packagesPath": "/home/christian/.nuget/packages/", + "outputPath": "/home/christian/Softwareentwicklung/csharp/TestAPP/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/christian/.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, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.7, 8.0.7]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.107/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/TestAPP/obj/project.nuget.cache b/TestAPP/obj/project.nuget.cache new file mode 100644 index 0000000..df9baa5 --- /dev/null +++ b/TestAPP/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "Jk/MBPVDNj2jfwkDOaF6zbSvc4CFxTz3Xi9j6NI0WG22hSKnz24VVrHn6Tz3WIUsx3S4qWtWRm4b3Bl8gwG1JA==", + "success": true, + "projectFilePath": "/home/christian/Softwareentwicklung/csharp/TestAPP/TestAPP.csproj", + "expectedPackageFiles": [ + "/home/christian/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.7/microsoft.aspnetcore.app.ref.8.0.7.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file