From 821ecea5b3a6aea15494dd8e9674fac379a2e841 Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: string guess
---
string_guess/Program.cs | 22 +++++++
.../bin/Debug/net6.0/stringGuess.deps.json | 23 +++++++
string_guess/bin/Debug/net6.0/stringGuess.dll | Bin 0 -> 5120 bytes
string_guess/bin/Debug/net6.0/stringGuess.exe | Bin 0 -> 147968 bytes
string_guess/bin/Debug/net6.0/stringGuess.pdb | Bin 0 -> 10524 bytes
.../Debug/net6.0/stringGuess.runtimeconfig.json | 9 +++
.../.NETCoreApp,Version=v6.0.AssemblyAttributes.cs | 4 ++
string_guess/obj/Debug/net6.0/apphost.exe | Bin 0 -> 147968 bytes
string_guess/obj/Debug/net6.0/ref/stringGuess.dll | Bin 0 -> 5120 bytes
.../obj/Debug/net6.0/refint/stringGuess.dll | Bin 0 -> 5120 bytes
.../obj/Debug/net6.0/stringGuess.AssemblyInfo.cs | 22 +++++++
.../net6.0/stringGuess.AssemblyInfoInputs.cache | 1 +
...Guess.GeneratedMSBuildEditorConfig.editorconfig | 11 ++++
.../obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs | 8 +++
.../obj/Debug/net6.0/stringGuess.assets.cache | Bin 0 -> 151 bytes
.../stringGuess.csproj.AssemblyReference.cache | Bin 0 -> 147010 bytes
.../stringGuess.csproj.CoreCompileInputs.cache | 1 +
.../net6.0/stringGuess.csproj.FileListAbsolute.txt | 15 +++++
string_guess/obj/Debug/net6.0/stringGuess.dll | Bin 0 -> 5120 bytes
.../net6.0/stringGuess.genruntimeconfig.cache | 1 +
string_guess/obj/Debug/net6.0/stringGuess.pdb | Bin 0 -> 10524 bytes
string_guess/obj/project.assets.json | 68 +++++++++++++++++++++
string_guess/obj/project.nuget.cache | 8 +++
.../obj/stringGuess.csproj.nuget.dgspec.json | 63 +++++++++++++++++++
string_guess/obj/stringGuess.csproj.nuget.g.props | 15 +++++
.../obj/stringGuess.csproj.nuget.g.targets | 2 +
string_guess/stringGuess.csproj | 10 +++
27 files changed, 283 insertions(+)
create mode 100644 string_guess/Program.cs
create mode 100644 string_guess/bin/Debug/net6.0/stringGuess.deps.json
create mode 100644 string_guess/bin/Debug/net6.0/stringGuess.dll
create mode 100644 string_guess/bin/Debug/net6.0/stringGuess.exe
create mode 100644 string_guess/bin/Debug/net6.0/stringGuess.pdb
create mode 100644 string_guess/bin/Debug/net6.0/stringGuess.runtimeconfig.json
create mode 100644 string_guess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
create mode 100644 string_guess/obj/Debug/net6.0/apphost.exe
create mode 100644 string_guess/obj/Debug/net6.0/ref/stringGuess.dll
create mode 100644 string_guess/obj/Debug/net6.0/refint/stringGuess.dll
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfo.cs
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.AssemblyInfoInputs.cache
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.GeneratedMSBuildEditorConfig.editorconfig
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.GlobalUsings.g.cs
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.assets.cache
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cache
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.csproj.CoreCompileInputs.cache
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.csproj.FileListAbsolute.txt
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.dll
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.genruntimeconfig.cache
create mode 100644 string_guess/obj/Debug/net6.0/stringGuess.pdb
create mode 100644 string_guess/obj/project.assets.json
create mode 100644 string_guess/obj/project.nuget.cache
create mode 100644 string_guess/obj/stringGuess.csproj.nuget.dgspec.json
create mode 100644 string_guess/obj/stringGuess.csproj.nuget.g.props
create mode 100644 string_guess/obj/stringGuess.csproj.nuget.g.targets
create mode 100644 string_guess/stringGuess.csproj
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
Binary files /dev/null and b/string_guess/bin/Debug/net6.0/stringGuess.dll differ
diff --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
Binary files /dev/null and b/string_guess/bin/Debug/net6.0/stringGuess.exe differ
diff --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
Binary files /dev/null and b/string_guess/bin/Debug/net6.0/stringGuess.pdb differ
diff --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 @@
+//
+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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/apphost.exe differ
diff --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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/ref/stringGuess.dll differ
diff --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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/refint/stringGuess.dll differ
diff --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 @@
+//------------------------------------------------------------------------------
+//
+// 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("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 @@
+//
+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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/stringGuess.assets.cache differ
diff --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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/stringGuess.csproj.AssemblyReference.cache differ
diff --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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/stringGuess.dll differ
diff --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
Binary files /dev/null and b/string_guess/obj/Debug/net6.0/stringGuess.pdb differ
diff --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 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\User\.nuget\packages\
+ PackageReference
+ 6.6.0
+
+
+
+
+
\ 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 @@
+
+
\ 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 @@
+
+
+
+ Exe
+ net6.0
+ enable
+ enable
+
+
+
--
cgit 1.4.1