diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:13:03 +0000 |
commit | bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a (patch) | |
tree | 1b46e38b6722cefabd2f6b962778412b7e7181fd | |
parent | sum (diff) | |
download | cs-bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a.tar cs-bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a.tar.gz cs-bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a.tar.bz2 cs-bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a.tar.xz cs-bb4a6e7bd0835e8e7be2a978d9f11cc7e88c907a.zip |
clicker
39 files changed, 352 insertions, 0 deletions
diff --git a/clicker/.vs/Clicker/DesignTimeBuild/.dtbcache.v2 b/clicker/.vs/Clicker/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..c1cefc3 --- /dev/null +++ b/clicker/.vs/Clicker/DesignTimeBuild/.dtbcache.v2 Binary files differdiff --git a/clicker/.vs/Clicker/FileContentIndex/0ffc6d3c-5c4f-46eb-ae6e-3bb5b26247d4.vsidx b/clicker/.vs/Clicker/FileContentIndex/0ffc6d3c-5c4f-46eb-ae6e-3bb5b26247d4.vsidx new file mode 100644 index 0000000..e087c1c --- /dev/null +++ b/clicker/.vs/Clicker/FileContentIndex/0ffc6d3c-5c4f-46eb-ae6e-3bb5b26247d4.vsidx Binary files differdiff --git a/clicker/.vs/Clicker/FileContentIndex/read.lock b/clicker/.vs/Clicker/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/clicker/.vs/Clicker/FileContentIndex/read.lock diff --git a/clicker/.vs/Clicker/v16/.suo b/clicker/.vs/Clicker/v16/.suo new file mode 100644 index 0000000..dcb384d --- /dev/null +++ b/clicker/.vs/Clicker/v16/.suo Binary files differdiff --git a/clicker/.vs/Clicker/v17/.futdcache.v2 b/clicker/.vs/Clicker/v17/.futdcache.v2 new file mode 100644 index 0000000..c797b1b --- /dev/null +++ b/clicker/.vs/Clicker/v17/.futdcache.v2 Binary files differdiff --git a/clicker/.vs/Clicker/v17/.suo b/clicker/.vs/Clicker/v17/.suo new file mode 100644 index 0000000..d19c054 --- /dev/null +++ b/clicker/.vs/Clicker/v17/.suo Binary files differdiff --git a/clicker/.vs/ProjectEvaluation/clicker.metadata.v6.1 b/clicker/.vs/ProjectEvaluation/clicker.metadata.v6.1 new file mode 100644 index 0000000..5d19602 --- /dev/null +++ b/clicker/.vs/ProjectEvaluation/clicker.metadata.v6.1 Binary files differdiff --git a/clicker/.vs/ProjectEvaluation/clicker.projects.v6.1 b/clicker/.vs/ProjectEvaluation/clicker.projects.v6.1 new file mode 100644 index 0000000..acaf669 --- /dev/null +++ b/clicker/.vs/ProjectEvaluation/clicker.projects.v6.1 Binary files differdiff --git a/clicker/.vs/VSWorkspaceState.json b/clicker/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..12e8f87 --- /dev/null +++ b/clicker/.vs/VSWorkspaceState.json @@ -0,0 +1,8 @@ +{ + "ExpandedNodes": [ + "", + "\\Clicker" + ], + "SelectedNode": "\\Clicker\\Clicker.csproj", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/clicker/.vs/slnx.sqlite b/clicker/.vs/slnx.sqlite new file mode 100644 index 0000000..15d6dd7 --- /dev/null +++ b/clicker/.vs/slnx.sqlite Binary files differdiff --git a/clicker/Clicker.sln b/clicker/Clicker.sln new file mode 100644 index 0000000..8480cf2 --- /dev/null +++ b/clicker/Clicker.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33516.290 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Clicker", "Clicker\Clicker.csproj", "{D3681CC7-53CF-4078-B978-34889DF19965}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3681CC7-53CF-4078-B978-34889DF19965}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3681CC7-53CF-4078-B978-34889DF19965}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3681CC7-53CF-4078-B978-34889DF19965}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3681CC7-53CF-4078-B978-34889DF19965}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6B463E5B-5F53-480E-AD93-7EDC8503D46D} + EndGlobalSection +EndGlobal diff --git a/clicker/Clicker/Clicker.csproj b/clicker/Clicker/Clicker.csproj new file mode 100644 index 0000000..40c60dd --- /dev/null +++ b/clicker/Clicker/Clicker.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> diff --git a/clicker/Clicker/Program.cs b/clicker/Clicker/Program.cs new file mode 100644 index 0000000..4390cd3 --- /dev/null +++ b/clicker/Clicker/Program.cs @@ -0,0 +1,58 @@ +int points = 0; +int totalPoints = 0; +int power = 1; +int reset = 1; + +Console.Clear(); +for (ConsoleKeyInfo keypress = Console.ReadKey(); !string.Equals(keypress.KeyChar.ToString(), "x"); keypress = Console.ReadKey()) +{ + Console.Clear(); + if (string.Equals(keypress.KeyChar.ToString(), " ")) + { + points += power * reset; + totalPoints++; + Console.Write("You have " + points + " points"); + if (totalPoints % 50 == 0) + { + power++; + Console.Clear(); + Console.Write("Your power has increased!"); + } + if (totalPoints % 250 == 0) + { + reset++; + points = 0; + power = 1; + Console.Clear(); + Console.Write("You have reset! Now you will gain points much faster."); + } + } + else if (string.Equals(keypress.KeyChar.ToString(), "u")) + { + Console.Clear(); + if (points >= 100) + { + power += 1; + points -= 100; + Console.Write("You have upgraded! Now you will gain points faster."); + } + else + { + Console.Write("You do not have enough points to upgrade."); + } + } + else if (string.Equals(keypress.KeyChar.ToString(), "s")) + { + Console.Write("You have " + points + " points, " + power + " power," + " and have reset " + (reset - 1) + " times."); + } + else if (string.Equals(keypress.KeyChar.ToString(), "?")) + { + Console.Write("Type 'space' to increase your points, 'u' to upgrade, '?' for help, 's' to see your stats, and 'x' to exit."); + } + else + { + Console.Write("Type '?' for help."); + } +} +Console.Clear(); +Console.Write("Thanks for playing."); \ No newline at end of file diff --git a/clicker/Clicker/bin/Debug/net6.0/Clicker.deps.json b/clicker/Clicker/bin/Debug/net6.0/Clicker.deps.json new file mode 100644 index 0000000..c69b6e7 --- /dev/null +++ b/clicker/Clicker/bin/Debug/net6.0/Clicker.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Clicker/1.0.0": { + "runtime": { + "Clicker.dll": {} + } + } + } + }, + "libraries": { + "Clicker/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/clicker/Clicker/bin/Debug/net6.0/Clicker.dll b/clicker/Clicker/bin/Debug/net6.0/Clicker.dll new file mode 100644 index 0000000..0d41d5e --- /dev/null +++ b/clicker/Clicker/bin/Debug/net6.0/Clicker.dll Binary files differdiff --git a/clicker/Clicker/bin/Debug/net6.0/Clicker.exe b/clicker/Clicker/bin/Debug/net6.0/Clicker.exe new file mode 100644 index 0000000..4789249 --- /dev/null +++ b/clicker/Clicker/bin/Debug/net6.0/Clicker.exe Binary files differdiff --git a/clicker/Clicker/bin/Debug/net6.0/Clicker.pdb b/clicker/Clicker/bin/Debug/net6.0/Clicker.pdb new file mode 100644 index 0000000..138f7b9 --- /dev/null +++ b/clicker/Clicker/bin/Debug/net6.0/Clicker.pdb Binary files differdiff --git a/clicker/Clicker/bin/Debug/net6.0/Clicker.runtimeconfig.json b/clicker/Clicker/bin/Debug/net6.0/Clicker.runtimeconfig.json new file mode 100644 index 0000000..4e96a56 --- /dev/null +++ b/clicker/Clicker/bin/Debug/net6.0/Clicker.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/clicker/Clicker/obj/Clicker.csproj.nuget.dgspec.json b/clicker/Clicker/obj/Clicker.csproj.nuget.dgspec.json new file mode 100644 index 0000000..13e914a --- /dev/null +++ b/clicker/Clicker/obj/Clicker.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj": {} + }, + "projects": { + "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj", + "projectName": "Clicker", + "projectPath": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\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\\6.0.407\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/clicker/Clicker/obj/Clicker.csproj.nuget.g.props b/clicker/Clicker/obj/Clicker.csproj.nuget.g.props new file mode 100644 index 0000000..dc9aeb7 --- /dev/null +++ b/clicker/Clicker/obj/Clicker.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.3.2</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="C:\Users\User\.nuget\packages\" /> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/clicker/Clicker/obj/Clicker.csproj.nuget.g.targets b/clicker/Clicker/obj/Clicker.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/clicker/Clicker/obj/Clicker.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/clicker/Clicker/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/clicker/Clicker/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a8c10ef --- /dev/null +++ b/clicker/Clicker/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 = ".NET 6.0")] diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfo.cs b/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfo.cs new file mode 100644 index 0000000..85dde22 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("Clicker")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Clicker")] +[assembly: System.Reflection.AssemblyTitleAttribute("Clicker")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfoInputs.cache b/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d1c13f4 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +80c62af4488be054ef2754c99668474d72add292 diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.GeneratedMSBuildEditorConfig.editorconfig b/clicker/Clicker/obj/Debug/net6.0/Clicker.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..389674c --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +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._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Clicker +build_property.ProjectDir = C:\Users\User\source\repos\Clicker\Clicker\ diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.GlobalUsings.g.cs b/clicker/Clicker/obj/Debug/net6.0/Clicker.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.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/clicker/Clicker/obj/Debug/net6.0/Clicker.assets.cache b/clicker/Clicker/obj/Debug/net6.0/Clicker.assets.cache new file mode 100644 index 0000000..3057c0d --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.assets.cache Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.AssemblyReference.cache b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1d8dc85 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.AssemblyReference.cache Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.BuildWithSkipAnalyzers b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.BuildWithSkipAnalyzers diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.CoreCompileInputs.cache b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1d83e45 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7ea673f33963b249c18485cf6009a1cae2ec6bda diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.FileListAbsolute.txt b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..46bdd00 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\User\source\repos\Clicker\Clicker\bin\Debug\net6.0\Clicker.exe +C:\Users\User\source\repos\Clicker\Clicker\bin\Debug\net6.0\Clicker.deps.json +C:\Users\User\source\repos\Clicker\Clicker\bin\Debug\net6.0\Clicker.runtimeconfig.json +C:\Users\User\source\repos\Clicker\Clicker\bin\Debug\net6.0\Clicker.dll +C:\Users\User\source\repos\Clicker\Clicker\bin\Debug\net6.0\Clicker.pdb +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.csproj.AssemblyReference.cache +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.AssemblyInfoInputs.cache +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.AssemblyInfo.cs +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.csproj.CoreCompileInputs.cache +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.dll +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\refint\Clicker.dll +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.pdb +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\Clicker.genruntimeconfig.cache +C:\Users\User\source\repos\Clicker\Clicker\obj\Debug\net6.0\ref\Clicker.dll diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.dll b/clicker/Clicker/obj/Debug/net6.0/Clicker.dll new file mode 100644 index 0000000..0d41d5e --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.dll Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.genruntimeconfig.cache b/clicker/Clicker/obj/Debug/net6.0/Clicker.genruntimeconfig.cache new file mode 100644 index 0000000..da018a1 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.genruntimeconfig.cache @@ -0,0 +1 @@ +c9c4a72c0bd7d8b6b59207fbbc59371df302e865 diff --git a/clicker/Clicker/obj/Debug/net6.0/Clicker.pdb b/clicker/Clicker/obj/Debug/net6.0/Clicker.pdb new file mode 100644 index 0000000..138f7b9 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/Clicker.pdb Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/apphost.exe b/clicker/Clicker/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..4789249 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/apphost.exe Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/ref/Clicker.dll b/clicker/Clicker/obj/Debug/net6.0/ref/Clicker.dll new file mode 100644 index 0000000..51b0f57 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/ref/Clicker.dll Binary files differdiff --git a/clicker/Clicker/obj/Debug/net6.0/refint/Clicker.dll b/clicker/Clicker/obj/Debug/net6.0/refint/Clicker.dll new file mode 100644 index 0000000..51b0f57 --- /dev/null +++ b/clicker/Clicker/obj/Debug/net6.0/refint/Clicker.dll Binary files differdiff --git a/clicker/Clicker/obj/project.assets.json b/clicker/Clicker/obj/project.assets.json new file mode 100644 index 0000000..4b8e38c --- /dev/null +++ b/clicker/Clicker/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\\Clicker\\Clicker\\Clicker.csproj", + "projectName": "Clicker", + "projectPath": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\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\\6.0.407\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/clicker/Clicker/obj/project.nuget.cache b/clicker/Clicker/obj/project.nuget.cache new file mode 100644 index 0000000..d64811d --- /dev/null +++ b/clicker/Clicker/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "LPhoO6IASwBuwIUU7OUGJ0u5WcqO3IPB4mNkAi9QmwJSumItTCq/bOSMXnoBdAPO+YrGgRbOWWKwR3kEVTFI2A==", + "success": true, + "projectFilePath": "C:\\Users\\User\\source\\repos\\Clicker\\Clicker\\Clicker.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file |