diff --git a/.kdev4/wbs-csharp.kdev4 b/.kdev4/wbs-csharp.kdev4
new file mode 100644
index 0000000..03a5044
--- /dev/null
+++ b/.kdev4/wbs-csharp.kdev4
@@ -0,0 +1,5 @@
+[Buildset]
+BuildItems=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x01\x00\x00\x00\x14\x00w\x00b\x00s\x00-\x00c\x00s\x00h\x00a\x00r\x00p)
+
+[Project]
+VersionControlSupport=kdevgit
diff --git a/Tag 1/Aufgaben/Aufgaben.cs b/Tag 1/Aufgaben/Aufgaben.cs
index 4e4f415..b808cef 100644
--- a/Tag 1/Aufgaben/Aufgaben.cs
+++ b/Tag 1/Aufgaben/Aufgaben.cs
@@ -1,4 +1,4 @@
-namespace aufgaben;
+namespace aufgaben_tag1;
internal class Aufgabe_1
{
@@ -35,7 +35,7 @@ internal class Aufgabe_3
var max = bound;
var rnd = new Random();
- var randomNumber = rnd.Next(min, bound+1);
+ var randomNumber = rnd.Next(min, bound);
var guess = -1;
var tries = 0;
@@ -61,13 +61,13 @@ internal class Aufgabe_3
if (guess > randomNumber) {
if (guess < max)
- max = guess;
+ max = guess - 1;
Console.WriteLine("Die gesuchte Zahl ist kleiner.");
}
if (guess < randomNumber) {
if (guess > min)
- min = guess;
+ min = guess + 1;
Console.WriteLine("Die gesuchte Zahl ist größer.");
}
@@ -76,3 +76,20 @@ internal class Aufgabe_3
Console.WriteLine("Benötigte Versuche: " + tries);
}
}
+
+internal class Aufgabe_4
+{
+ public static string berechneArtikelnummer(int nummer)
+ {
+ var temp = nummer;
+
+ var pruefziffer = 0;
+ for (var i = 0; i < 5; i++)
+ {
+ var isEven = temp%2 == 0;
+ pruefziffer += isEven ? temp%10 : ((temp%10) * 3);
+ temp /= 10;
+ }
+ return (nummer + "-" + (pruefziffer%10));
+ }
+}
diff --git a/Tag 1/Aufgaben/Program.cs b/Tag 1/Aufgaben/Program.cs
index 158e532..24a9db9 100644
--- a/Tag 1/Aufgaben/Program.cs
+++ b/Tag 1/Aufgaben/Program.cs
@@ -1,4 +1,4 @@
-namespace aufgaben;
+namespace aufgaben_tag1;
internal class Program
@@ -26,5 +26,7 @@ internal class Program
Console.WriteLine("Die Quersumme von " + zahl + " ist " + quersumme);
Aufgabe_3.zahlenRaten(bound);
+
+ Console.WriteLine(Aufgabe_4.berechneArtikelnummer(27493));
}
}
diff --git a/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben
new file mode 100755
index 0000000..8413056
Binary files /dev/null and b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben differ
diff --git a/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.deps.json b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.deps.json
new file mode 100644
index 0000000..5cc16c9
--- /dev/null
+++ b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v10.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v10.0": {
+ "Aufgaben/1.0.0": {
+ "runtime": {
+ "Aufgaben.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Aufgaben/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.dll b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.dll
new file mode 100644
index 0000000..92515c7
Binary files /dev/null and b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.dll differ
diff --git a/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.pdb b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.pdb
new file mode 100644
index 0000000..7586ab3
Binary files /dev/null and b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.pdb differ
diff --git a/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.runtimeconfig.json b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.runtimeconfig.json
new file mode 100644
index 0000000..01e4519
--- /dev/null
+++ b/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "net10.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "10.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.dgspec.json b/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.dgspec.json
index 161b8e4..7231a42 100644
--- a/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.dgspec.json
+++ b/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.dgspec.json
@@ -1,25 +1,26 @@
{
"format": 1,
"restore": {
- "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj": {}
+ "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj": {}
},
"projects": {
- "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj": {
+ "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj",
+ "projectUniqueName": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj",
"projectName": "Aufgaben",
- "projectPath": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj",
- "packagesPath": "/home/max/.nuget/packages/",
- "outputPath": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/obj/",
+ "projectPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj",
+ "packagesPath": "/home/wbs/.nuget/packages/",
+ "outputPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "/home/max/.nuget/NuGet/NuGet.Config"
+ "/home/wbs/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
+ "/usr/lib64/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -59,7 +60,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.110/PortableRuntimeIdentifierGraph.json",
+ "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/10.0.109/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
diff --git a/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.g.props b/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.g.props
index fdbca05..58a40d4 100644
--- a/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.g.props
+++ b/Tag 1/Aufgaben/obj/Aufgaben.csproj.nuget.g.props
@@ -4,12 +4,12 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- /home/max/.nuget/packages/
- /home/max/.nuget/packages/
+ /home/wbs/.nuget/packages/
+ /home/wbs/.nuget/packages/
PackageReference
7.0.0
-
+
\ No newline at end of file
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfo.cs b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfo.cs
index 971b198..1feb723 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfo.cs
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Aufgaben")]
[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+82b48974c5a5b7c061261157a2cdf31b7722d5bc")]
[assembly: System.Reflection.AssemblyProductAttribute("Aufgaben")]
[assembly: System.Reflection.AssemblyTitleAttribute("Aufgaben")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfoInputs.cache b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfoInputs.cache
index 89a2738..b22984f 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfoInputs.cache
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfoInputs.cache
@@ -1 +1 @@
-44fb4c4abecfa0b87e13313566f42cebb12ed6900820c0c8cc745eca85dcb894
+e58751dbd26610a34a3c549df496fc7d3f7847282b41d171ffbccb58796b0c08
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.GeneratedMSBuildEditorConfig.editorconfig b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.GeneratedMSBuildEditorConfig.editorconfig
index 625a4a2..c402515 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.GeneratedMSBuildEditorConfig.editorconfig
@@ -10,7 +10,7 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Aufgaben
-build_property.ProjectDir = /home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/
+build_property.ProjectDir = /home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 10.0
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.assets.cache b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.assets.cache
index 3d504b2..28baff6 100644
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.assets.cache and b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.assets.cache differ
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.CoreCompileInputs.cache b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.CoreCompileInputs.cache
index 8709b64..fd9b020 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.CoreCompileInputs.cache
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-f08a11ed8fe54efa818156639f83aaeb606ebb0b5ae14405ece8d83caac67065
+44ad510643be1f62012852e0f025c34bf376a4e90fb122fb2f5768455eb1c6da
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.FileListAbsolute.txt b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.FileListAbsolute.txt
index 214da08..f330217 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.FileListAbsolute.txt
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.FileListAbsolute.txt
@@ -12,3 +12,17 @@
/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb
/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache
/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.deps.json
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.runtimeconfig.json
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/bin/Debug/net10.0/Aufgaben.pdb
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.GeneratedMSBuildEditorConfig.editorconfig
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfoInputs.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.AssemblyInfo.cs
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.csproj.CoreCompileInputs.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/refint/Aufgaben.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.dll b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.dll
index d3fba28..92515c7 100644
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.dll and b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.dll differ
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache
index 5d8570a..a4658d2 100644
--- a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache
+++ b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.genruntimeconfig.cache
@@ -1 +1 @@
-4447ffcdb71f36d5430c2e4ba0ad35f48061e68d732f1eb333f7885b8e738b3b
+1ec70e398c94e23143a9e273d92b53c650573cbf7772fc9e74b4bee9971fd5a9
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb
index 34c3616..7586ab3 100644
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb and b/Tag 1/Aufgaben/obj/Debug/net10.0/Aufgaben.pdb differ
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/apphost b/Tag 1/Aufgaben/obj/Debug/net10.0/apphost
index a81ecb6..8413056 100755
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/apphost and b/Tag 1/Aufgaben/obj/Debug/net10.0/apphost differ
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll b/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll
index 40cf3be..1b290e4 100644
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll and b/Tag 1/Aufgaben/obj/Debug/net10.0/ref/Aufgaben.dll differ
diff --git a/Tag 1/Aufgaben/obj/Debug/net10.0/refint/Aufgaben.dll b/Tag 1/Aufgaben/obj/Debug/net10.0/refint/Aufgaben.dll
index 40cf3be..1b290e4 100644
Binary files a/Tag 1/Aufgaben/obj/Debug/net10.0/refint/Aufgaben.dll and b/Tag 1/Aufgaben/obj/Debug/net10.0/refint/Aufgaben.dll differ
diff --git a/Tag 1/Aufgaben/obj/project.assets.json b/Tag 1/Aufgaben/obj/project.assets.json
index dcdbbdc..263be1d 100644
--- a/Tag 1/Aufgaben/obj/project.assets.json
+++ b/Tag 1/Aufgaben/obj/project.assets.json
@@ -8,24 +8,25 @@
"net10.0": []
},
"packageFolders": {
- "/home/max/.nuget/packages/": {}
+ "/home/wbs/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj",
+ "projectUniqueName": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj",
"projectName": "Aufgaben",
- "projectPath": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj",
- "packagesPath": "/home/max/.nuget/packages/",
- "outputPath": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/obj/",
+ "projectPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj",
+ "packagesPath": "/home/wbs/.nuget/packages/",
+ "outputPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "/home/max/.nuget/NuGet/NuGet.Config"
+ "/home/wbs/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
+ "/usr/lib64/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -65,7 +66,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.110/PortableRuntimeIdentifierGraph.json",
+ "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/10.0.109/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
diff --git a/Tag 1/Aufgaben/obj/project.nuget.cache b/Tag 1/Aufgaben/obj/project.nuget.cache
index ff6cc5b..f7369c4 100644
--- a/Tag 1/Aufgaben/obj/project.nuget.cache
+++ b/Tag 1/Aufgaben/obj/project.nuget.cache
@@ -1,8 +1,8 @@
{
"version": 2,
- "dgSpecHash": "VpzgKffLVSM=",
+ "dgSpecHash": "WhrpAzMGDTY=",
"success": true,
- "projectFilePath": "/home/max/Dokumente/Umschulung/CSharp/Tag 1/Aufgaben/Aufgaben.csproj",
+ "projectFilePath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 1/Aufgaben/Aufgaben.csproj",
"expectedPackageFiles": [],
"logs": []
}
\ No newline at end of file
diff --git a/Tag 2/.Vererbung.cs.kate-swp b/Tag 2/.Vererbung.cs.kate-swp
new file mode 100644
index 0000000..f7a9221
Binary files /dev/null and b/Tag 2/.Vererbung.cs.kate-swp differ
diff --git a/Tag 2/Program.cs b/Tag 2/Program.cs
new file mode 100644
index 0000000..d068b83
--- /dev/null
+++ b/Tag 2/Program.cs
@@ -0,0 +1,2 @@
+using Tag_02_Unterricht;
+
diff --git a/Tag 2/Statische_Felder.cs b/Tag 2/Statische_Felder.cs
new file mode 100644
index 0000000..d67cd9c
--- /dev/null
+++ b/Tag 2/Statische_Felder.cs
@@ -0,0 +1,22 @@
+namespace Tag_02_Unterricht;
+
+public class StatischeFelder
+{
+ public string name = "Alice"; // Instanz-Variable
+ public static string nachname = "Alison"; // statische Variable
+
+ public static void DoSomethingStatic() // statische Methode
+ {
+ Console.WriteLine("DoSomethingStatic");
+ }
+
+ private void DoSomething() // Instanz-Methode
+ {
+ Console.WriteLine("DoSomething");
+ }
+
+ public void DoSomethingPublic() // Instanz-Methode
+ {
+ DoSomething();
+ }
+}
diff --git a/Tag 2/Tag 2.csproj b/Tag 2/Tag 2.csproj
new file mode 100644
index 0000000..3a8aa2a
--- /dev/null
+++ b/Tag 2/Tag 2.csproj
@@ -0,0 +1,11 @@
+
+
+
+ Exe
+ net10.0
+ Tag_2
+ enable
+ enable
+
+
+
diff --git a/Tag 2/Vererbung.cs b/Tag 2/Vererbung.cs
new file mode 100644
index 0000000..f22e0bc
--- /dev/null
+++ b/Tag 2/Vererbung.cs
@@ -0,0 +1,38 @@
+namespace Tag_02_Unterricht;
+
+public class Vererbung
+{
+ public static void Main()
+ {
+
+ }
+}
+
+class Getränk
+{
+ protected int temperatur = 100;
+}
+
+interface IFlüssigkeit
+{
+ void Ausgießen();
+}
+
+class Kaffee : Getränk, IFlüssigkeit
+{
+ public void WieHeißBinIch()
+ {
+ Console.WriteLine(temperatur);
+ }
+
+ public void Ausgießen()
+ {
+ Console.WriteLine("Blubb blubb blubb!");
+ }
+}
+
+
+class Tee : Getränk
+{
+
+}
diff --git a/Tag 2/bin/Debug/net10.0/Tag 2 b/Tag 2/bin/Debug/net10.0/Tag 2
new file mode 100755
index 0000000..1a267ee
Binary files /dev/null and b/Tag 2/bin/Debug/net10.0/Tag 2 differ
diff --git a/Tag 2/bin/Debug/net10.0/Tag 2.deps.json b/Tag 2/bin/Debug/net10.0/Tag 2.deps.json
new file mode 100644
index 0000000..c4e4c98
--- /dev/null
+++ b/Tag 2/bin/Debug/net10.0/Tag 2.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v10.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v10.0": {
+ "Tag 2/1.0.0": {
+ "runtime": {
+ "Tag 2.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Tag 2/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 2/bin/Debug/net10.0/Tag 2.dll b/Tag 2/bin/Debug/net10.0/Tag 2.dll
new file mode 100644
index 0000000..abfface
Binary files /dev/null and b/Tag 2/bin/Debug/net10.0/Tag 2.dll differ
diff --git a/Tag 2/bin/Debug/net10.0/Tag 2.pdb b/Tag 2/bin/Debug/net10.0/Tag 2.pdb
new file mode 100644
index 0000000..ec15509
Binary files /dev/null and b/Tag 2/bin/Debug/net10.0/Tag 2.pdb differ
diff --git a/Tag 2/bin/Debug/net10.0/Tag 2.runtimeconfig.json b/Tag 2/bin/Debug/net10.0/Tag 2.runtimeconfig.json
new file mode 100644
index 0000000..01e4519
--- /dev/null
+++ b/Tag 2/bin/Debug/net10.0/Tag 2.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "net10.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "10.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 2/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Tag 2/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..925b135
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfo.cs b/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfo.cs
new file mode 100644
index 0000000..4e4a015
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.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("Tag 2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+82b48974c5a5b7c061261157a2cdf31b7722d5bc")]
+[assembly: System.Reflection.AssemblyProductAttribute("Tag 2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Tag 2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfoInputs.cache b/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..305481a
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+5a623c4213abefbfc2fc0937f8bed02e01d1eb42bf609f24fb5d4b34751a4adc
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.GeneratedMSBuildEditorConfig.editorconfig b/Tag 2/obj/Debug/net10.0/Tag 2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..152bf9e
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,17 @@
+is_global = true
+build_property.TargetFramework = net10.0
+build_property.TargetFrameworkIdentifier = .NETCoreApp
+build_property.TargetFrameworkVersion = v10.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 = Tag_2
+build_property.ProjectDir = /home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.EffectiveAnalysisLevelStyle = 10.0
+build_property.EnableCodeStyleSeverity =
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.GlobalUsings.g.cs b/Tag 2/obj/Debug/net10.0/Tag 2.GlobalUsings.g.cs
new file mode 100644
index 0000000..d12bcbc
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using System;
+global using System.Collections.Generic;
+global using System.IO;
+global using System.Linq;
+global using System.Net.Http;
+global using System.Threading;
+global using System.Threading.Tasks;
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.assets.cache b/Tag 2/obj/Debug/net10.0/Tag 2.assets.cache
new file mode 100644
index 0000000..39fff89
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/Tag 2.assets.cache differ
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.csproj.CoreCompileInputs.cache b/Tag 2/obj/Debug/net10.0/Tag 2.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..9559835
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+20cba879ea6394c7923a74f106e1fbedb7ede86db5fb1f12cb13668dcc473f62
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.csproj.FileListAbsolute.txt b/Tag 2/obj/Debug/net10.0/Tag 2.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..2bdcacd
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.csproj.FileListAbsolute.txt
@@ -0,0 +1,14 @@
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/bin/Debug/net10.0/Tag 2
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/bin/Debug/net10.0/Tag 2.deps.json
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/bin/Debug/net10.0/Tag 2.runtimeconfig.json
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/bin/Debug/net10.0/Tag 2.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/bin/Debug/net10.0/Tag 2.pdb
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.GeneratedMSBuildEditorConfig.editorconfig
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfoInputs.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.AssemblyInfo.cs
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.csproj.CoreCompileInputs.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/refint/Tag 2.dll
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.pdb
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/Tag 2.genruntimeconfig.cache
+/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/Debug/net10.0/ref/Tag 2.dll
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.dll b/Tag 2/obj/Debug/net10.0/Tag 2.dll
new file mode 100644
index 0000000..abfface
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/Tag 2.dll differ
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.genruntimeconfig.cache b/Tag 2/obj/Debug/net10.0/Tag 2.genruntimeconfig.cache
new file mode 100644
index 0000000..8fcb429
--- /dev/null
+++ b/Tag 2/obj/Debug/net10.0/Tag 2.genruntimeconfig.cache
@@ -0,0 +1 @@
+b2c0c7e2ca0342c0451e8e9ddd520412ad38b339c12c1b44a881180440d1f5c7
diff --git a/Tag 2/obj/Debug/net10.0/Tag 2.pdb b/Tag 2/obj/Debug/net10.0/Tag 2.pdb
new file mode 100644
index 0000000..ec15509
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/Tag 2.pdb differ
diff --git a/Tag 2/obj/Debug/net10.0/apphost b/Tag 2/obj/Debug/net10.0/apphost
new file mode 100755
index 0000000..1a267ee
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/apphost differ
diff --git a/Tag 2/obj/Debug/net10.0/ref/Tag 2.dll b/Tag 2/obj/Debug/net10.0/ref/Tag 2.dll
new file mode 100644
index 0000000..6f6318c
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/ref/Tag 2.dll differ
diff --git a/Tag 2/obj/Debug/net10.0/refint/Tag 2.dll b/Tag 2/obj/Debug/net10.0/refint/Tag 2.dll
new file mode 100644
index 0000000..6f6318c
Binary files /dev/null and b/Tag 2/obj/Debug/net10.0/refint/Tag 2.dll differ
diff --git a/Tag 2/obj/Tag 2.csproj.nuget.dgspec.json b/Tag 2/obj/Tag 2.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..89aa73b
--- /dev/null
+++ b/Tag 2/obj/Tag 2.csproj.nuget.dgspec.json
@@ -0,0 +1,342 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj": {}
+ },
+ "projects": {
+ "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj",
+ "projectName": "Tag 2",
+ "projectPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj",
+ "packagesPath": "/home/wbs/.nuget/packages/",
+ "outputPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/wbs/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "/usr/lib64/dotnet/library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.100"
+ },
+ "frameworks": {
+ "net10.0": {
+ "targetAlias": "net10.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/10.0.110/PortableRuntimeIdentifierGraph.json",
+ "packagesToPrune": {
+ "Microsoft.CSharp": "(,4.7.32767]",
+ "Microsoft.VisualBasic": "(,10.4.32767]",
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
+ "runtime.any.System.Collections": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.any.System.Globalization": "(,4.3.32767]",
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.any.System.IO": "(,4.3.32767]",
+ "runtime.any.System.Reflection": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.any.System.Runtime": "(,4.3.32767]",
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.aot.System.Collections": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.aot.System.IO": "(,4.3.32767]",
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Console": "(,4.3.32767]",
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Console": "(,4.3.32767]",
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "System.AppContext": "(,4.3.32767]",
+ "System.Buffers": "(,5.0.32767]",
+ "System.Collections": "(,4.3.32767]",
+ "System.Collections.Concurrent": "(,4.3.32767]",
+ "System.Collections.Immutable": "(,10.0.32767]",
+ "System.Collections.NonGeneric": "(,4.3.32767]",
+ "System.Collections.Specialized": "(,4.3.32767]",
+ "System.ComponentModel": "(,4.3.32767]",
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
+ "System.Console": "(,4.3.32767]",
+ "System.Data.Common": "(,4.3.32767]",
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
+ "System.Diagnostics.Debug": "(,4.3.32767]",
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
+ "System.Diagnostics.Process": "(,4.3.32767]",
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
+ "System.Diagnostics.Tools": "(,4.3.32767]",
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
+ "System.Drawing.Primitives": "(,4.3.32767]",
+ "System.Dynamic.Runtime": "(,4.3.32767]",
+ "System.Formats.Asn1": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "System.Globalization": "(,4.3.32767]",
+ "System.Globalization.Calendars": "(,4.3.32767]",
+ "System.Globalization.Extensions": "(,4.3.32767]",
+ "System.IO": "(,4.3.32767]",
+ "System.IO.Compression": "(,4.3.32767]",
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
+ "System.IO.FileSystem": "(,4.3.32767]",
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
+ "System.IO.Pipelines": "(,10.0.32767]",
+ "System.IO.Pipes": "(,4.3.32767]",
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
+ "System.Linq": "(,4.3.32767]",
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
+ "System.Linq.Expressions": "(,4.3.32767]",
+ "System.Linq.Parallel": "(,4.3.32767]",
+ "System.Linq.Queryable": "(,4.3.32767]",
+ "System.Memory": "(,5.0.32767]",
+ "System.Net.Http": "(,4.3.32767]",
+ "System.Net.Http.Json": "(,10.0.32767]",
+ "System.Net.NameResolution": "(,4.3.32767]",
+ "System.Net.NetworkInformation": "(,4.3.32767]",
+ "System.Net.Ping": "(,4.3.32767]",
+ "System.Net.Primitives": "(,4.3.32767]",
+ "System.Net.Requests": "(,4.3.32767]",
+ "System.Net.Security": "(,4.3.32767]",
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
+ "System.Net.Sockets": "(,4.3.32767]",
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
+ "System.Net.WebSockets": "(,4.3.32767]",
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
+ "System.Numerics.Vectors": "(,5.0.32767]",
+ "System.ObjectModel": "(,4.3.32767]",
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
+ "System.Private.Uri": "(,4.3.32767]",
+ "System.Reflection": "(,4.3.32767]",
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
+ "System.Reflection.Emit": "(,4.7.32767]",
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
+ "System.Reflection.Extensions": "(,4.3.32767]",
+ "System.Reflection.Metadata": "(,10.0.32767]",
+ "System.Reflection.Primitives": "(,4.3.32767]",
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
+ "System.Resources.Reader": "(,4.3.32767]",
+ "System.Resources.ResourceManager": "(,4.3.32767]",
+ "System.Resources.Writer": "(,4.3.32767]",
+ "System.Runtime": "(,4.3.32767]",
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
+ "System.Runtime.Extensions": "(,4.3.32767]",
+ "System.Runtime.Handles": "(,4.3.32767]",
+ "System.Runtime.InteropServices": "(,4.3.32767]",
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
+ "System.Runtime.Loader": "(,4.3.32767]",
+ "System.Runtime.Numerics": "(,4.3.32767]",
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
+ "System.Security.AccessControl": "(,6.0.32767]",
+ "System.Security.Claims": "(,4.3.32767]",
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
+ "System.Security.Principal": "(,4.3.32767]",
+ "System.Security.Principal.Windows": "(,5.0.32767]",
+ "System.Security.SecureString": "(,4.3.32767]",
+ "System.Text.Encoding": "(,4.3.32767]",
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
+ "System.Threading.Thread": "(,4.3.32767]",
+ "System.Threading.ThreadPool": "(,4.3.32767]",
+ "System.Threading.Timer": "(,4.3.32767]",
+ "System.ValueTuple": "(,4.5.32767]",
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
+ "System.Xml.XDocument": "(,4.3.32767]",
+ "System.Xml.XmlDocument": "(,4.3.32767]",
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
+ "System.Xml.XPath": "(,4.3.32767]",
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 2/obj/Tag 2.csproj.nuget.g.props b/Tag 2/obj/Tag 2.csproj.nuget.g.props
new file mode 100644
index 0000000..58a40d4
--- /dev/null
+++ b/Tag 2/obj/Tag 2.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/wbs/.nuget/packages/
+ /home/wbs/.nuget/packages/
+ PackageReference
+ 7.0.0
+
+
+
+
+
\ No newline at end of file
diff --git a/Tag 2/obj/Tag 2.csproj.nuget.g.targets b/Tag 2/obj/Tag 2.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/Tag 2/obj/Tag 2.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Tag 2/obj/project.assets.json b/Tag 2/obj/project.assets.json
new file mode 100644
index 0000000..d5bb7ee
--- /dev/null
+++ b/Tag 2/obj/project.assets.json
@@ -0,0 +1,347 @@
+{
+ "version": 3,
+ "targets": {
+ "net10.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net10.0": []
+ },
+ "packageFolders": {
+ "/home/wbs/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj",
+ "projectName": "Tag 2",
+ "projectPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj",
+ "packagesPath": "/home/wbs/.nuget/packages/",
+ "outputPath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/wbs/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "/usr/lib64/dotnet/library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.100"
+ },
+ "frameworks": {
+ "net10.0": {
+ "targetAlias": "net10.0",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/10.0.110/PortableRuntimeIdentifierGraph.json",
+ "packagesToPrune": {
+ "Microsoft.CSharp": "(,4.7.32767]",
+ "Microsoft.VisualBasic": "(,10.4.32767]",
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
+ "runtime.any.System.Collections": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.any.System.Globalization": "(,4.3.32767]",
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.any.System.IO": "(,4.3.32767]",
+ "runtime.any.System.Reflection": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.any.System.Runtime": "(,4.3.32767]",
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.aot.System.Collections": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.aot.System.IO": "(,4.3.32767]",
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Console": "(,4.3.32767]",
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Console": "(,4.3.32767]",
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "System.AppContext": "(,4.3.32767]",
+ "System.Buffers": "(,5.0.32767]",
+ "System.Collections": "(,4.3.32767]",
+ "System.Collections.Concurrent": "(,4.3.32767]",
+ "System.Collections.Immutable": "(,10.0.32767]",
+ "System.Collections.NonGeneric": "(,4.3.32767]",
+ "System.Collections.Specialized": "(,4.3.32767]",
+ "System.ComponentModel": "(,4.3.32767]",
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
+ "System.Console": "(,4.3.32767]",
+ "System.Data.Common": "(,4.3.32767]",
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
+ "System.Diagnostics.Debug": "(,4.3.32767]",
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
+ "System.Diagnostics.Process": "(,4.3.32767]",
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
+ "System.Diagnostics.Tools": "(,4.3.32767]",
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
+ "System.Drawing.Primitives": "(,4.3.32767]",
+ "System.Dynamic.Runtime": "(,4.3.32767]",
+ "System.Formats.Asn1": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "System.Globalization": "(,4.3.32767]",
+ "System.Globalization.Calendars": "(,4.3.32767]",
+ "System.Globalization.Extensions": "(,4.3.32767]",
+ "System.IO": "(,4.3.32767]",
+ "System.IO.Compression": "(,4.3.32767]",
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
+ "System.IO.FileSystem": "(,4.3.32767]",
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
+ "System.IO.Pipelines": "(,10.0.32767]",
+ "System.IO.Pipes": "(,4.3.32767]",
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
+ "System.Linq": "(,4.3.32767]",
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
+ "System.Linq.Expressions": "(,4.3.32767]",
+ "System.Linq.Parallel": "(,4.3.32767]",
+ "System.Linq.Queryable": "(,4.3.32767]",
+ "System.Memory": "(,5.0.32767]",
+ "System.Net.Http": "(,4.3.32767]",
+ "System.Net.Http.Json": "(,10.0.32767]",
+ "System.Net.NameResolution": "(,4.3.32767]",
+ "System.Net.NetworkInformation": "(,4.3.32767]",
+ "System.Net.Ping": "(,4.3.32767]",
+ "System.Net.Primitives": "(,4.3.32767]",
+ "System.Net.Requests": "(,4.3.32767]",
+ "System.Net.Security": "(,4.3.32767]",
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
+ "System.Net.Sockets": "(,4.3.32767]",
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
+ "System.Net.WebSockets": "(,4.3.32767]",
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
+ "System.Numerics.Vectors": "(,5.0.32767]",
+ "System.ObjectModel": "(,4.3.32767]",
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
+ "System.Private.Uri": "(,4.3.32767]",
+ "System.Reflection": "(,4.3.32767]",
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
+ "System.Reflection.Emit": "(,4.7.32767]",
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
+ "System.Reflection.Extensions": "(,4.3.32767]",
+ "System.Reflection.Metadata": "(,10.0.32767]",
+ "System.Reflection.Primitives": "(,4.3.32767]",
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
+ "System.Resources.Reader": "(,4.3.32767]",
+ "System.Resources.ResourceManager": "(,4.3.32767]",
+ "System.Resources.Writer": "(,4.3.32767]",
+ "System.Runtime": "(,4.3.32767]",
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
+ "System.Runtime.Extensions": "(,4.3.32767]",
+ "System.Runtime.Handles": "(,4.3.32767]",
+ "System.Runtime.InteropServices": "(,4.3.32767]",
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
+ "System.Runtime.Loader": "(,4.3.32767]",
+ "System.Runtime.Numerics": "(,4.3.32767]",
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
+ "System.Security.AccessControl": "(,6.0.32767]",
+ "System.Security.Claims": "(,4.3.32767]",
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
+ "System.Security.Principal": "(,4.3.32767]",
+ "System.Security.Principal.Windows": "(,5.0.32767]",
+ "System.Security.SecureString": "(,4.3.32767]",
+ "System.Text.Encoding": "(,4.3.32767]",
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
+ "System.Threading.Thread": "(,4.3.32767]",
+ "System.Threading.ThreadPool": "(,4.3.32767]",
+ "System.Threading.Timer": "(,4.3.32767]",
+ "System.ValueTuple": "(,4.5.32767]",
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
+ "System.Xml.XDocument": "(,4.3.32767]",
+ "System.Xml.XmlDocument": "(,4.3.32767]",
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
+ "System.Xml.XPath": "(,4.3.32767]",
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tag 2/obj/project.nuget.cache b/Tag 2/obj/project.nuget.cache
new file mode 100644
index 0000000..cacaa4b
--- /dev/null
+++ b/Tag 2/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "osM1fto+lxk=",
+ "success": true,
+ "projectFilePath": "/home/wbs/Dokumente/Programmierung/wbs-csharp/Tag 2/Tag 2.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/wbs-csharp.kdev4 b/wbs-csharp.kdev4
new file mode 100644
index 0000000..96b8716
--- /dev/null
+++ b/wbs-csharp.kdev4
@@ -0,0 +1,4 @@
+[Project]
+CreatedFrom=
+Manager=KDevGenericManager
+Name=wbs-csharp