commit 6d016332babe6ccc6757a14e8ec67cf530bfa4cc Author: slawk0 Date: Thu Mar 21 18:46:50 2024 +0100 init diff --git a/.idea/.idea.ConsoleApp1/.idea/.gitignore b/.idea/.idea.ConsoleApp1/.idea/.gitignore new file mode 100644 index 0000000..87d6401 --- /dev/null +++ b/.idea/.idea.ConsoleApp1/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/projectSettingsUpdater.xml +/.idea.ConsoleApp1.iml +/contentModel.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.ConsoleApp1/.idea/encodings.xml b/.idea/.idea.ConsoleApp1/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.ConsoleApp1/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.ConsoleApp1/.idea/indexLayout.xml b/.idea/.idea.ConsoleApp1/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.ConsoleApp1/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ConsoleApp1/.idea/vcs.xml b/.idea/.idea.ConsoleApp1/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.ConsoleApp1/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ConsoleApp1.sln b/ConsoleApp1.sln new file mode 100644 index 0000000..cd9e94d --- /dev/null +++ b/ConsoleApp1.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/ConsoleApp1/ConsoleApp1.csproj b/ConsoleApp1/ConsoleApp1.csproj new file mode 100644 index 0000000..2f4fc77 --- /dev/null +++ b/ConsoleApp1/ConsoleApp1.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/ConsoleApp1/Program.cs b/ConsoleApp1/Program.cs new file mode 100644 index 0000000..648739b --- /dev/null +++ b/ConsoleApp1/Program.cs @@ -0,0 +1,30 @@ +Random dice = new Random(); + +int roll1 = dice.Next(1, 7); +int roll2 = dice.Next(1, 7); +int roll3 = dice.Next(1, 7); +int total = roll1 + roll2 + roll3; + +Console.WriteLine($"Dice roll: {roll1} + {roll2} + {roll3}"); +//bonus 6 poinst for two same dices +if (roll1 == roll2 || roll1 == roll3 || roll2 == roll3) +{ + total += 2; + Console.WriteLine("Congratulations NIGGER you just won.......... 2 BONUS points!!!!"); +} +//bonus 6 points for all the same dices +if (roll1 == roll2 && roll3 == roll1) +{ + total += 6; + Console.WriteLine("You are a CHEATER!!!\n YOUR COMPUTER IS GOING TO KAPUT IN 60 SECONDS "); +} + +const int WIN_POINTS = 15; +if (total >= WIN_POINTS) +{ + Console.WriteLine("You win!"); +} +else +{ + Console.WriteLine("LOOSER!!! hahaha"); +} diff --git a/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.deps.json b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.deps.json new file mode 100644 index 0000000..8c6a00b --- /dev/null +++ b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "ConsoleApp1/1.0.0": { + "runtime": { + "ConsoleApp1.dll": {} + } + } + } + }, + "libraries": { + "ConsoleApp1/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.dll b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.dll new file mode 100644 index 0000000..a80afdc Binary files /dev/null and b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.dll differ diff --git a/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.exe b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.exe new file mode 100644 index 0000000..4b36717 Binary files /dev/null and b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.exe differ diff --git a/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.pdb b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.pdb new file mode 100644 index 0000000..4284d0d Binary files /dev/null and b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.pdb differ diff --git a/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.runtimeconfig.json b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..99528ca --- /dev/null +++ b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json @@ -0,0 +1,61 @@ +{ + "format": 1, + "restore": { + "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": {} + }, + "projects": { + "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj", + "projectName": "ConsoleApp1", + "projectPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj", + "packagesPath": "C:\\Users\\justg\\.nuget\\packages\\", + "outputPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\justg\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props new file mode 100644 index 0000000..19a99fc --- /dev/null +++ b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\justg\.nuget\packages\ + PackageReference + 6.8.0 + + + + + \ No newline at end of file diff --git a/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ConsoleApp1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ConsoleApp1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfo.cs b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfo.cs new file mode 100644 index 0000000..b617e45 --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.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("ConsoleApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ConsoleApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("ConsoleApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfoInputs.cache b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..81a6c67 --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +9b4e1ef5f091261e36ca58379f5aa497ab4a942f19c985f94bfc1a6e372da8c3 diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..63f9840 --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ConsoleApp1 +build_property.ProjectDir = D:\PROJECTS\ConsoleApp1\ConsoleApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.GlobalUsings.g.cs b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.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/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.assets.cache b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.assets.cache new file mode 100644 index 0000000..bc1be58 Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.assets.cache differ diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.CoreCompileInputs.cache b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..554abae --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5a408287909f9d86dd4a37e405bcf8f81957fde10528eaa8ee2f4ab353567e8f diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.FileListAbsolute.txt b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..817081b --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.exe +D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.deps.json +D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.runtimeconfig.json +D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.dll +D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.pdb +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.AssemblyInfoInputs.cache +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.AssemblyInfo.cs +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.csproj.CoreCompileInputs.cache +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.dll +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\refint\ConsoleApp1.dll +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.pdb +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.genruntimeconfig.cache +D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ref\ConsoleApp1.dll diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.dll b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.dll new file mode 100644 index 0000000..a80afdc Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.dll differ diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.genruntimeconfig.cache b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.genruntimeconfig.cache new file mode 100644 index 0000000..60da2e2 --- /dev/null +++ b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.genruntimeconfig.cache @@ -0,0 +1 @@ +08b4183d467ed2883504d4f15669cf705eacfe9983dd8ef4a6c8eb82c6dd7b98 diff --git a/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.pdb b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.pdb new file mode 100644 index 0000000..4284d0d Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.pdb differ diff --git a/ConsoleApp1/obj/Debug/net8.0/apphost.exe b/ConsoleApp1/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..4b36717 Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/apphost.exe differ diff --git a/ConsoleApp1/obj/Debug/net8.0/ref/ConsoleApp1.dll b/ConsoleApp1/obj/Debug/net8.0/ref/ConsoleApp1.dll new file mode 100644 index 0000000..7d9120b Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/ref/ConsoleApp1.dll differ diff --git a/ConsoleApp1/obj/Debug/net8.0/refint/ConsoleApp1.dll b/ConsoleApp1/obj/Debug/net8.0/refint/ConsoleApp1.dll new file mode 100644 index 0000000..7d9120b Binary files /dev/null and b/ConsoleApp1/obj/Debug/net8.0/refint/ConsoleApp1.dll differ diff --git a/ConsoleApp1/obj/project.assets.json b/ConsoleApp1/obj/project.assets.json new file mode 100644 index 0000000..87cc97e --- /dev/null +++ b/ConsoleApp1/obj/project.assets.json @@ -0,0 +1,66 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "C:\\Users\\justg\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj", + "projectName": "ConsoleApp1", + "projectPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj", + "packagesPath": "C:\\Users\\justg\\.nuget\\packages\\", + "outputPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\justg\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ConsoleApp1/obj/project.nuget.cache b/ConsoleApp1/obj/project.nuget.cache new file mode 100644 index 0000000..ae7145f --- /dev/null +++ b/ConsoleApp1/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "acY8hXP+NMk8D7ugrjq/k4t6l/mMQVhcBJux1eWCtKUctFTZWpLRk+mA+cet/FMgm3Ryu6+lNkBLM9xoR8UNEw==", + "success": true, + "projectFilePath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/ConsoleApp1/obj/project.packagespec.json b/ConsoleApp1/obj/project.packagespec.json new file mode 100644 index 0000000..dd5869a --- /dev/null +++ b/ConsoleApp1/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj","projectName":"ConsoleApp1","projectPath":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj","outputPath":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ConsoleApp1/obj/rider.project.model.nuget.info b/ConsoleApp1/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..931de4c --- /dev/null +++ b/ConsoleApp1/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17110403331778526 \ No newline at end of file diff --git a/ConsoleApp1/obj/rider.project.restore.info b/ConsoleApp1/obj/rider.project.restore.info new file mode 100644 index 0000000..931de4c --- /dev/null +++ b/ConsoleApp1/obj/rider.project.restore.info @@ -0,0 +1 @@ +17110403331778526 \ No newline at end of file