From 25967da6c103ea7102f424e720d9a0760ba721c5 Mon Sep 17 00:00:00 2001 From: dkwoodik Date: Fri, 7 Nov 2025 20:41:03 +0400 Subject: [PATCH] =?UTF-8?q?ADKwoodik=20=D0=9D=D0=B0=D1=87=D0=B0=D0=BB?= =?UTF-8?q?=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + Calculator/Calculator.cs | 0 Calculator/Calculator.csproj | 10 +++ Calculator/Calculator.sln | 25 ++++++ .../obj/Calculator.csproj.nuget.dgspec.json | 73 +++++++++++++++++ .../obj/Calculator.csproj.nuget.g.props | 16 ++++ .../obj/Calculator.csproj.nuget.g.targets | 2 + Calculator/obj/project.assets.json | 79 +++++++++++++++++++ Calculator/obj/project.nuget.cache | 8 ++ 9 files changed, 215 insertions(+) create mode 100644 .gitignore create mode 100644 Calculator/Calculator.cs create mode 100644 Calculator/Calculator.csproj create mode 100644 Calculator/Calculator.sln create mode 100644 Calculator/obj/Calculator.csproj.nuget.dgspec.json create mode 100644 Calculator/obj/Calculator.csproj.nuget.g.props create mode 100644 Calculator/obj/Calculator.csproj.nuget.g.targets create mode 100644 Calculator/obj/project.assets.json create mode 100644 Calculator/obj/project.nuget.cache diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e555e21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/Calculator/.vs +/Calculator/obj/Debug diff --git a/Calculator/Calculator.cs b/Calculator/Calculator.cs new file mode 100644 index 0000000..e69de29 diff --git a/Calculator/Calculator.csproj b/Calculator/Calculator.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/Calculator/Calculator.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/Calculator/Calculator.sln b/Calculator/Calculator.sln new file mode 100644 index 0000000..70f015f --- /dev/null +++ b/Calculator/Calculator.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36414.22 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Calculator", "Calculator\Calculator.csproj", "{3C071998-94E8-4A6C-A196-BBDA12A79979}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3C071998-94E8-4A6C-A196-BBDA12A79979}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C071998-94E8-4A6C-A196-BBDA12A79979}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C071998-94E8-4A6C-A196-BBDA12A79979}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C071998-94E8-4A6C-A196-BBDA12A79979}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {994396C8-9471-4968-9E9E-757F9412D556} + EndGlobalSection +EndGlobal diff --git a/Calculator/obj/Calculator.csproj.nuget.dgspec.json b/Calculator/obj/Calculator.csproj.nuget.dgspec.json new file mode 100644 index 0000000..eb29bc7 --- /dev/null +++ b/Calculator/obj/Calculator.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj": {} + }, + "projects": { + "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj", + "projectName": "Calculator", + "projectPath": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj", + "packagesPath": "C:\\Users\\ferur\\.nuget\\packages\\", + "outputPath": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\ferur\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "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\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Calculator/obj/Calculator.csproj.nuget.g.props b/Calculator/obj/Calculator.csproj.nuget.g.props new file mode 100644 index 0000000..ca9d5c8 --- /dev/null +++ b/Calculator/obj/Calculator.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\ferur\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + \ No newline at end of file diff --git a/Calculator/obj/Calculator.csproj.nuget.g.targets b/Calculator/obj/Calculator.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Calculator/obj/Calculator.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Calculator/obj/project.assets.json b/Calculator/obj/project.assets.json new file mode 100644 index 0000000..0ba7047 --- /dev/null +++ b/Calculator/obj/project.assets.json @@ -0,0 +1,79 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "C:\\Users\\ferur\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj", + "projectName": "Calculator", + "projectPath": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj", + "packagesPath": "C:\\Users\\ferur\\.nuget\\packages\\", + "outputPath": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\ferur\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "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\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Calculator/obj/project.nuget.cache b/Calculator/obj/project.nuget.cache new file mode 100644 index 0000000..9e1427d --- /dev/null +++ b/Calculator/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "v+g2MG9x9js=", + "success": true, + "projectFilePath": "C:\\Users\\ferur\\OneDrive\\Documents\\GitHub\\Calculator\\Calculator\\Calculator\\Calculator.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file