summary refs log tree commit diff
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-08 04:13:03 +0000
commit821ecea5b3a6aea15494dd8e9674fac379a2e841 (patch)
tree54ea2e3ce80bf69607726fd8c1e83e76ea3eb63b
parentread/write (diff)
downloadcs-821ecea5b3a6aea15494dd8e9674fac379a2e841.tar
cs-821ecea5b3a6aea15494dd8e9674fac379a2e841.tar.gz
cs-821ecea5b3a6aea15494dd8e9674fac379a2e841.tar.bz2
cs-821ecea5b3a6aea15494dd8e9674fac379a2e841.tar.xz
cs-821ecea5b3a6aea15494dd8e9674fac379a2e841.zip
string guess
-rw-r--r--string_guess/Program.cs22
-rw-r--r--string_guess/bin/Debug/net6.0/stringGuess.deps.json23
-rw-r--r--string_guess/bin/Debug/net6.0/stringGuess.dllbin0 -> 5120 bytes
-rw-r--r--string_guess/bin/Debug/net6.0/stringGuess.exebin0 -> 147968 bytes
-rw-r--r--string_guess/bin/Debug/net6.0/stringGuess.pdbbin0 -> 10524 bytes
-rw-r--r--string_guess/bin/Debug/net6.0/stringGuess.runtimeconfig.json9
-rw-r--r--string_guess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs4
-rw-r--r--string_guess/obj/Debug/net6.0/apphost.exebin0 -> 147968 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/ref/stringGuess.dllbin0 -> 5120 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/refint/stringGuess.dllbin0 -> 5120 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfo.cs22
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfoInputs.cache1
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.GeneratedMSBuildEditorConfig.editorconfig11
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs8
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.assets.cachebin0 -> 151 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cachebin0 -> 147010 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.csproj.CoreCompileInputs.cache1
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.csproj.FileListAbsolute.txt15
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.dllbin0 -> 5120 bytes
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.genruntimeconfig.cache1
-rw-r--r--string_guess/obj/Debug/net6.0/stringGuess.pdbbin0 -> 10524 bytes
-rw-r--r--string_guess/obj/project.assets.json68
-rw-r--r--string_guess/obj/project.nuget.cache8
-rw-r--r--string_guess/obj/stringGuess.csproj.nuget.dgspec.json63
-rw-r--r--string_guess/obj/stringGuess.csproj.nuget.g.props15
-rw-r--r--string_guess/obj/stringGuess.csproj.nuget.g.targets2
-rw-r--r--string_guess/stringGuess.csproj10
27 files changed, 283 insertions, 0 deletions
diff --git a/string_guess/Program.cs b/string_guess/Program.cs
new file mode 100644
index 0000000..c8ad2ce
--- /dev/null
+++ b/string_guess/Program.cs
@@ -0,0 +1,22 @@
+using System;

+

+Random r = new Random();

+string s = "";

+string keypress = "";

+

+for(int i = 0; i < 6; i++)

+{

+	Console.Clear();

+	for(int j = 0; j <= i; j++)

+		//s += r.Next(10);

+		s += ((char)r.Next(65, 90));

+	Console.Write(s);

+	Thread.sleep(2000);

+	Console.Clear();

+	keypress = Console.ReadLine();

+	Console.Clear();

+	if(s != keypress) return;

+	Console.Write("Success");

+	Thread.Sleep(1000);

+	s = "";

+}

diff --git a/string_guess/bin/Debug/net6.0/stringGuess.deps.json b/string_guess/bin/Debug/net6.0/stringGuess.deps.json
new file mode 100644
index 0000000..87fec23
--- /dev/null
+++ b/string_guess/bin/Debug/net6.0/stringGuess.deps.json
@@ -0,0 +1,23 @@
+{

+  "runtimeTarget": {

+    "name": ".NETCoreApp,Version=v6.0",

+    "signature": ""

+  },

+  "compilationOptions": {},

+  "targets": {

+    ".NETCoreApp,Version=v6.0": {

+      "stringGuess/1.0.0": {

+        "runtime": {

+          "stringGuess.dll": {}

+        }

+      }

+    }

+  },

+  "libraries": {

+    "stringGuess/1.0.0": {

+      "type": "project",

+      "serviceable": false,

+      "sha512": ""

+    }

+  }

+}
\ No newline at end of file
diff --git a/string_guess/bin/Debug/net6.0/stringGuess.dll b/string_guess/bin/Debug/net6.0/stringGuess.dll
new file mode 100644
index 0000000..c44b524
--- /dev/null
+++ b/string_guess/bin/Debug/net6.0/stringGuess.dll
Binary files differdiff --git a/string_guess/bin/Debug/net6.0/stringGuess.exe b/string_guess/bin/Debug/net6.0/stringGuess.exe
new file mode 100644
index 0000000..1012f73
--- /dev/null
+++ b/string_guess/bin/Debug/net6.0/stringGuess.exe
Binary files differdiff --git a/string_guess/bin/Debug/net6.0/stringGuess.pdb b/string_guess/bin/Debug/net6.0/stringGuess.pdb
new file mode 100644
index 0000000..6089b91
--- /dev/null
+++ b/string_guess/bin/Debug/net6.0/stringGuess.pdb
Binary files differdiff --git a/string_guess/bin/Debug/net6.0/stringGuess.runtimeconfig.json b/string_guess/bin/Debug/net6.0/stringGuess.runtimeconfig.json
new file mode 100644
index 0000000..4e96a56
--- /dev/null
+++ b/string_guess/bin/Debug/net6.0/stringGuess.runtimeconfig.json
@@ -0,0 +1,9 @@
+{

+  "runtimeOptions": {

+    "tfm": "net6.0",

+    "framework": {

+      "name": "Microsoft.NETCore.App",

+      "version": "6.0.0"

+    }

+  }

+}
\ No newline at end of file
diff --git a/string_guess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/string_guess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..32c95f9
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+// <autogenerated />

+using System;

+using System.Reflection;

+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

diff --git a/string_guess/obj/Debug/net6.0/apphost.exe b/string_guess/obj/Debug/net6.0/apphost.exe
new file mode 100644
index 0000000..1012f73
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/apphost.exe
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/ref/stringGuess.dll b/string_guess/obj/Debug/net6.0/ref/stringGuess.dll
new file mode 100644
index 0000000..2e86055
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/ref/stringGuess.dll
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/refint/stringGuess.dll b/string_guess/obj/Debug/net6.0/refint/stringGuess.dll
new file mode 100644
index 0000000..2e86055
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/refint/stringGuess.dll
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfo.cs b/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfo.cs
new file mode 100644
index 0000000..52b7aef
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfo.cs
@@ -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("stringGuess")]

+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]

+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]

+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]

+[assembly: System.Reflection.AssemblyProductAttribute("stringGuess")]

+[assembly: System.Reflection.AssemblyTitleAttribute("stringGuess")]

+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

+

+// Generated by the MSBuild WriteCodeFragment class.

+

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfoInputs.cache b/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..852373f
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+b4d86994dfb7e3170e1c722161cf5162f642c913

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.GeneratedMSBuildEditorConfig.editorconfig b/string_guess/obj/Debug/net6.0/stringGuess.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..e434599
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true

+build_property.TargetFramework = net6.0

+build_property.TargetPlatformMinVersion = 

+build_property.UsingMicrosoftNETSdkWeb = 

+build_property.ProjectTypeGuids = 

+build_property.InvariantGlobalization = 

+build_property.PlatformNeutralAssembly = 

+build_property.EnforceExtendedAnalyzerRules = 

+build_property._SupportedPlatformList = Linux,macOS,Windows

+build_property.RootNamespace = stringGuess

+build_property.ProjectDir = C:\Users\User\source\repos\stringGuess\

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs b/string_guess/obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs
@@ -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;

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.assets.cache b/string_guess/obj/Debug/net6.0/stringGuess.assets.cache
new file mode 100644
index 0000000..8383125
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.assets.cache
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cache b/string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..432f747
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cache
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/stringGuess.csproj.CoreCompileInputs.cache b/string_guess/obj/Debug/net6.0/stringGuess.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..f4fce35
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+71a212102acd55ffdb0dab54ee5a4b51d19e168c

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.csproj.FileListAbsolute.txt b/string_guess/obj/Debug/net6.0/stringGuess.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..5bb1efe
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.csproj.AssemblyReference.cache

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.GeneratedMSBuildEditorConfig.editorconfig

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.AssemblyInfoInputs.cache

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.AssemblyInfo.cs

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.csproj.CoreCompileInputs.cache

+C:\Users\User\source\repos\stringGuess\bin\Debug\net6.0\stringGuess.exe

+C:\Users\User\source\repos\stringGuess\bin\Debug\net6.0\stringGuess.deps.json

+C:\Users\User\source\repos\stringGuess\bin\Debug\net6.0\stringGuess.runtimeconfig.json

+C:\Users\User\source\repos\stringGuess\bin\Debug\net6.0\stringGuess.dll

+C:\Users\User\source\repos\stringGuess\bin\Debug\net6.0\stringGuess.pdb

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.dll

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\refint\stringGuess.dll

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.pdb

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\stringGuess.genruntimeconfig.cache

+C:\Users\User\source\repos\stringGuess\obj\Debug\net6.0\ref\stringGuess.dll

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.dll b/string_guess/obj/Debug/net6.0/stringGuess.dll
new file mode 100644
index 0000000..c44b524
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.dll
Binary files differdiff --git a/string_guess/obj/Debug/net6.0/stringGuess.genruntimeconfig.cache b/string_guess/obj/Debug/net6.0/stringGuess.genruntimeconfig.cache
new file mode 100644
index 0000000..6506f90
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.genruntimeconfig.cache
@@ -0,0 +1 @@
+8526a2bc29d6eb1a55cbab5a945f0f1f9520ea3a

diff --git a/string_guess/obj/Debug/net6.0/stringGuess.pdb b/string_guess/obj/Debug/net6.0/stringGuess.pdb
new file mode 100644
index 0000000..6089b91
--- /dev/null
+++ b/string_guess/obj/Debug/net6.0/stringGuess.pdb
Binary files differdiff --git a/string_guess/obj/project.assets.json b/string_guess/obj/project.assets.json
new file mode 100644
index 0000000..be48a13
--- /dev/null
+++ b/string_guess/obj/project.assets.json
@@ -0,0 +1,68 @@
+{

+  "version": 3,

+  "targets": {

+    "net6.0": {}

+  },

+  "libraries": {},

+  "projectFileDependencyGroups": {

+    "net6.0": []

+  },

+  "packageFolders": {

+    "C:\\Users\\User\\.nuget\\packages\\": {}

+  },

+  "project": {

+    "version": "1.0.0",

+    "restore": {

+      "projectUniqueName": "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj",

+      "projectName": "stringGuess",

+      "projectPath": "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj",

+      "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",

+      "outputPath": "C:\\Users\\User\\source\\repos\\stringGuess\\obj\\",

+      "projectStyle": "PackageReference",

+      "configFilePaths": [

+        "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",

+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"

+      ],

+      "originalTargetFrameworks": [

+        "net6.0"

+      ],

+      "sources": {

+        "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},

+        "https://api.nuget.org/v3/index.json": {}

+      },

+      "frameworks": {

+        "net6.0": {

+          "targetAlias": "net6.0",

+          "projectReferences": {}

+        }

+      },

+      "warningProperties": {

+        "warnAsError": [

+          "NU1605"

+        ]

+      }

+    },

+    "frameworks": {

+      "net6.0": {

+        "targetAlias": "net6.0",

+        "imports": [

+          "net461",

+          "net462",

+          "net47",

+          "net471",

+          "net472",

+          "net48",

+          "net481"

+        ],

+        "assetTargetFallback": true,

+        "warn": true,

+        "frameworkReferences": {

+          "Microsoft.NETCore.App": {

+            "privateAssets": "all"

+          }

+        },

+        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"

+      }

+    }

+  }

+}
\ No newline at end of file
diff --git a/string_guess/obj/project.nuget.cache b/string_guess/obj/project.nuget.cache
new file mode 100644
index 0000000..b33fd06
--- /dev/null
+++ b/string_guess/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{

+  "version": 2,

+  "dgSpecHash": "CEALsgvcjQJOXE/4+45C11WaucJxsDxUmi2mzg4DCTEtynrbkva70wCfFz3nZ5/O0AVP+zsnkMwXTqS4OYH3oA==",

+  "success": true,

+  "projectFilePath": "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj",

+  "expectedPackageFiles": [],

+  "logs": []

+}
\ No newline at end of file
diff --git a/string_guess/obj/stringGuess.csproj.nuget.dgspec.json b/string_guess/obj/stringGuess.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..06117c7
--- /dev/null
+++ b/string_guess/obj/stringGuess.csproj.nuget.dgspec.json
@@ -0,0 +1,63 @@
+{

+  "format": 1,

+  "restore": {

+    "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj": {}

+  },

+  "projects": {

+    "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj": {

+      "version": "1.0.0",

+      "restore": {

+        "projectUniqueName": "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj",

+        "projectName": "stringGuess",

+        "projectPath": "C:\\Users\\User\\source\\repos\\stringGuess\\stringGuess.csproj",

+        "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",

+        "outputPath": "C:\\Users\\User\\source\\repos\\stringGuess\\obj\\",

+        "projectStyle": "PackageReference",

+        "configFilePaths": [

+          "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",

+          "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"

+        ],

+        "originalTargetFrameworks": [

+          "net6.0"

+        ],

+        "sources": {

+          "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},

+          "https://api.nuget.org/v3/index.json": {}

+        },

+        "frameworks": {

+          "net6.0": {

+            "targetAlias": "net6.0",

+            "projectReferences": {}

+          }

+        },

+        "warningProperties": {

+          "warnAsError": [

+            "NU1605"

+          ]

+        }

+      },

+      "frameworks": {

+        "net6.0": {

+          "targetAlias": "net6.0",

+          "imports": [

+            "net461",

+            "net462",

+            "net47",

+            "net471",

+            "net472",

+            "net48",

+            "net481"

+          ],

+          "assetTargetFallback": true,

+          "warn": true,

+          "frameworkReferences": {

+            "Microsoft.NETCore.App": {

+              "privateAssets": "all"

+            }

+          },

+          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json"

+        }

+      }

+    }

+  }

+}
\ No newline at end of file
diff --git a/string_guess/obj/stringGuess.csproj.nuget.g.props b/string_guess/obj/stringGuess.csproj.nuget.g.props
new file mode 100644
index 0000000..add34ab
--- /dev/null
+++ b/string_guess/obj/stringGuess.csproj.nuget.g.props
@@ -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)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>

+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\User\.nuget\packages\</NuGetPackageFolders>

+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>

+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.6.0</NuGetToolVersion>

+  </PropertyGroup>

+  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">

+    <SourceRoot Include="C:\Users\User\.nuget\packages\" />

+  </ItemGroup>

+</Project>
\ No newline at end of file
diff --git a/string_guess/obj/stringGuess.csproj.nuget.g.targets b/string_guess/obj/stringGuess.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/string_guess/obj/stringGuess.csproj.nuget.g.targets
@@ -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" />
\ No newline at end of file
diff --git a/string_guess/stringGuess.csproj b/string_guess/stringGuess.csproj
new file mode 100644
index 0000000..40c60dd
--- /dev/null
+++ b/string_guess/stringGuess.csproj
@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">

+

+  <PropertyGroup>

+    <OutputType>Exe</OutputType>

+    <TargetFramework>net6.0</TargetFramework>

+    <ImplicitUsings>enable</ImplicitUsings>

+    <Nullable>enable</Nullable>

+  </PropertyGroup>

+

+</Project>