Initialcommit

This commit is contained in:
Christian
2024-09-15 09:25:06 +02:00
commit cc17609d02
47 changed files with 424 additions and 0 deletions

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

@@ -0,0 +1,3 @@
{
"dotnet.defaultSolution": "TestAPP.sln"
}

22
TestAPP.sln Normal file
View File

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

24
TestAPP/Program.cs Normal file
View File

@@ -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!");
}
}

10
TestAPP/TestAPP.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

BIN
TestAPP/bin/Debug/net8.0/TestAPP Executable file

Binary file not shown.

View File

@@ -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": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

Binary file not shown.

View File

@@ -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": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

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

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@@ -0,0 +1 @@
3650624da67fe4a2c01825bd9ae7251662c15322cc13a59397a52325adb97716

View File

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

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
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;

Binary file not shown.

View File

@@ -0,0 +1 @@
7d7aa3d5b134bb8c22c774e312cf724727a831e335cd59ab466a335b90ac0c00

View File

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

Binary file not shown.

View File

@@ -0,0 +1 @@
a1bc028fd65e83b7717768f8d3e7d3a2079fe06c8bf77278b494a45c0bbf06a0

Binary file not shown.

BIN
TestAPP/obj/Debug/net8.0/apphost Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@@ -0,0 +1 @@
4a718f6ac297795ca2613edefc955896a6201e0d090945c735ff6079c6227d94

View File

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

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
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;

Binary file not shown.

View File

@@ -0,0 +1 @@
cc51b72db81bd9fe7209285c6a37def4b44e3376dc15c574beeac48accec8f1c

View File

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

Binary file not shown.

View File

@@ -0,0 +1 @@
7e6ceb0882a0f31931528605698f756334ddd31a357b2c97a25b124d1109ee35

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

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

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/christian/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/christian/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/christian/.nuget/packages/" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

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

View File

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