diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:13:03 +0000 |
commit | 1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf (patch) | |
tree | 94641926a7cc648db2f1c5e93d22b3a9199dda1d | |
parent | string guess (diff) | |
download | cs-1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf.tar cs-1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf.tar.gz cs-1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf.tar.bz2 cs-1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf.tar.xz cs-1656f73d49dbeb9b624ba745cc23b94ac9c7a0bf.zip |
sum
37 files changed, 293 insertions, 0 deletions
diff --git a/sum/.vs/ProjectEvaluation/sum.metadata.v6.1 b/sum/.vs/ProjectEvaluation/sum.metadata.v6.1 new file mode 100644 index 0000000..9a57235 --- /dev/null +++ b/sum/.vs/ProjectEvaluation/sum.metadata.v6.1 Binary files differdiff --git a/sum/.vs/ProjectEvaluation/sum.projects.v6.1 b/sum/.vs/ProjectEvaluation/sum.projects.v6.1 new file mode 100644 index 0000000..e1e2e17 --- /dev/null +++ b/sum/.vs/ProjectEvaluation/sum.projects.v6.1 Binary files differdiff --git a/sum/.vs/Sum/DesignTimeBuild/.dtbcache.v2 b/sum/.vs/Sum/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..cd5f036 --- /dev/null +++ b/sum/.vs/Sum/DesignTimeBuild/.dtbcache.v2 Binary files differdiff --git a/sum/.vs/Sum/FileContentIndex/ba92f9a7-f759-449e-b9be-7e0da2cdf8ad.vsidx b/sum/.vs/Sum/FileContentIndex/ba92f9a7-f759-449e-b9be-7e0da2cdf8ad.vsidx new file mode 100644 index 0000000..9729ea3 --- /dev/null +++ b/sum/.vs/Sum/FileContentIndex/ba92f9a7-f759-449e-b9be-7e0da2cdf8ad.vsidx Binary files differdiff --git a/sum/.vs/Sum/FileContentIndex/read.lock b/sum/.vs/Sum/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sum/.vs/Sum/FileContentIndex/read.lock diff --git a/sum/.vs/Sum/v16/.suo b/sum/.vs/Sum/v16/.suo new file mode 100644 index 0000000..45a2823 --- /dev/null +++ b/sum/.vs/Sum/v16/.suo Binary files differdiff --git a/sum/.vs/Sum/v17/.futdcache.v2 b/sum/.vs/Sum/v17/.futdcache.v2 new file mode 100644 index 0000000..c99dcb1 --- /dev/null +++ b/sum/.vs/Sum/v17/.futdcache.v2 Binary files differdiff --git a/sum/.vs/Sum/v17/.suo b/sum/.vs/Sum/v17/.suo new file mode 100644 index 0000000..a170ae7 --- /dev/null +++ b/sum/.vs/Sum/v17/.suo Binary files differdiff --git a/sum/Sum.sln b/sum/Sum.sln new file mode 100644 index 0000000..22b5d76 --- /dev/null +++ b/sum/Sum.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}") = "Sum", "Sum\Sum.csproj", "{8DAB3093-C41C-4054-9AD8-3271E5441AF9}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8DAB3093-C41C-4054-9AD8-3271E5441AF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8DAB3093-C41C-4054-9AD8-3271E5441AF9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8DAB3093-C41C-4054-9AD8-3271E5441AF9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8DAB3093-C41C-4054-9AD8-3271E5441AF9}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {54E7799D-A154-45FC-BE48-B89132442B42} + EndGlobalSection +EndGlobal diff --git a/sum/Sum/Program.cs b/sum/Sum/Program.cs new file mode 100644 index 0000000..c541bb0 --- /dev/null +++ b/sum/Sum/Program.cs @@ -0,0 +1,6 @@ +Console.Write("Enter a number: "); +int num1 = Int32.Parse(Console.ReadLine()); +Console.Write("Enter another number: "); +int num2 = Int32.Parse(Console.ReadLine()); +int sum = num1 + num2; +Console.WriteLine("The sum is: " + sum); diff --git a/sum/Sum/Sum.csproj b/sum/Sum/Sum.csproj new file mode 100644 index 0000000..40c60dd --- /dev/null +++ b/sum/Sum/Sum.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/sum/Sum/bin/Debug/net6.0/Sum.deps.json b/sum/Sum/bin/Debug/net6.0/Sum.deps.json new file mode 100644 index 0000000..df10b68 --- /dev/null +++ b/sum/Sum/bin/Debug/net6.0/Sum.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Sum/1.0.0": { + "runtime": { + "Sum.dll": {} + } + } + } + }, + "libraries": { + "Sum/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/sum/Sum/bin/Debug/net6.0/Sum.dll b/sum/Sum/bin/Debug/net6.0/Sum.dll new file mode 100644 index 0000000..ccd7b38 --- /dev/null +++ b/sum/Sum/bin/Debug/net6.0/Sum.dll Binary files differdiff --git a/sum/Sum/bin/Debug/net6.0/Sum.exe b/sum/Sum/bin/Debug/net6.0/Sum.exe new file mode 100644 index 0000000..cfcd457 --- /dev/null +++ b/sum/Sum/bin/Debug/net6.0/Sum.exe Binary files differdiff --git a/sum/Sum/bin/Debug/net6.0/Sum.pdb b/sum/Sum/bin/Debug/net6.0/Sum.pdb new file mode 100644 index 0000000..4a10eab --- /dev/null +++ b/sum/Sum/bin/Debug/net6.0/Sum.pdb Binary files differdiff --git a/sum/Sum/bin/Debug/net6.0/Sum.runtimeconfig.json b/sum/Sum/bin/Debug/net6.0/Sum.runtimeconfig.json new file mode 100644 index 0000000..4e96a56 --- /dev/null +++ b/sum/Sum/bin/Debug/net6.0/Sum.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/sum/Sum/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/sum/Sum/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a8c10ef --- /dev/null +++ b/sum/Sum/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/sum/Sum/obj/Debug/net6.0/Sum.AssemblyInfo.cs b/sum/Sum/obj/Debug/net6.0/Sum.AssemblyInfo.cs new file mode 100644 index 0000000..176a2d6 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.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("Sum")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Sum")] +[assembly: System.Reflection.AssemblyTitleAttribute("Sum")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/sum/Sum/obj/Debug/net6.0/Sum.AssemblyInfoInputs.cache b/sum/Sum/obj/Debug/net6.0/Sum.AssemblyInfoInputs.cache new file mode 100644 index 0000000..11a4983 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +27bc4be7ba3a852300a6648f2c341640ae5d6495 diff --git a/sum/Sum/obj/Debug/net6.0/Sum.GeneratedMSBuildEditorConfig.editorconfig b/sum/Sum/obj/Debug/net6.0/Sum.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b46b7b0 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.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 = Sum +build_property.ProjectDir = C:\Users\User\source\repos\Sum\Sum\ diff --git a/sum/Sum/obj/Debug/net6.0/Sum.GlobalUsings.g.cs b/sum/Sum/obj/Debug/net6.0/Sum.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.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/sum/Sum/obj/Debug/net6.0/Sum.assets.cache b/sum/Sum/obj/Debug/net6.0/Sum.assets.cache new file mode 100644 index 0000000..ea88625 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.assets.cache Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/Sum.csproj.AssemblyReference.cache b/sum/Sum/obj/Debug/net6.0/Sum.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1d8dc85 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.csproj.AssemblyReference.cache Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/Sum.csproj.BuildWithSkipAnalyzers b/sum/Sum/obj/Debug/net6.0/Sum.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.csproj.BuildWithSkipAnalyzers diff --git a/sum/Sum/obj/Debug/net6.0/Sum.csproj.CoreCompileInputs.cache b/sum/Sum/obj/Debug/net6.0/Sum.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..529a266 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +65eaa3fa2449c36c9995d745739582f5ad3cf65e diff --git a/sum/Sum/obj/Debug/net6.0/Sum.csproj.FileListAbsolute.txt b/sum/Sum/obj/Debug/net6.0/Sum.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4936b0e --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\User\source\repos\Sum\Sum\bin\Debug\net6.0\Sum.exe +C:\Users\User\source\repos\Sum\Sum\bin\Debug\net6.0\Sum.deps.json +C:\Users\User\source\repos\Sum\Sum\bin\Debug\net6.0\Sum.runtimeconfig.json +C:\Users\User\source\repos\Sum\Sum\bin\Debug\net6.0\Sum.dll +C:\Users\User\source\repos\Sum\Sum\bin\Debug\net6.0\Sum.pdb +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.csproj.AssemblyReference.cache +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.AssemblyInfoInputs.cache +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.AssemblyInfo.cs +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.csproj.CoreCompileInputs.cache +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.dll +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\refint\Sum.dll +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.pdb +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\Sum.genruntimeconfig.cache +C:\Users\User\source\repos\Sum\Sum\obj\Debug\net6.0\ref\Sum.dll diff --git a/sum/Sum/obj/Debug/net6.0/Sum.dll b/sum/Sum/obj/Debug/net6.0/Sum.dll new file mode 100644 index 0000000..ccd7b38 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.dll Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/Sum.genruntimeconfig.cache b/sum/Sum/obj/Debug/net6.0/Sum.genruntimeconfig.cache new file mode 100644 index 0000000..64b8596 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.genruntimeconfig.cache @@ -0,0 +1 @@ +9d908a251a74e8388e84dcbd01eb999e4c628867 diff --git a/sum/Sum/obj/Debug/net6.0/Sum.pdb b/sum/Sum/obj/Debug/net6.0/Sum.pdb new file mode 100644 index 0000000..4a10eab --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/Sum.pdb Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/apphost.exe b/sum/Sum/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..cfcd457 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/apphost.exe Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/ref/Sum.dll b/sum/Sum/obj/Debug/net6.0/ref/Sum.dll new file mode 100644 index 0000000..7d69196 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/ref/Sum.dll Binary files differdiff --git a/sum/Sum/obj/Debug/net6.0/refint/Sum.dll b/sum/Sum/obj/Debug/net6.0/refint/Sum.dll new file mode 100644 index 0000000..7d69196 --- /dev/null +++ b/sum/Sum/obj/Debug/net6.0/refint/Sum.dll Binary files differdiff --git a/sum/Sum/obj/Sum.csproj.nuget.dgspec.json b/sum/Sum/obj/Sum.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c7ea9ef --- /dev/null +++ b/sum/Sum/obj/Sum.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj": {} + }, + "projects": { + "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj", + "projectName": "Sum", + "projectPath": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\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.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/sum/Sum/obj/Sum.csproj.nuget.g.props b/sum/Sum/obj/Sum.csproj.nuget.g.props new file mode 100644 index 0000000..23eadea --- /dev/null +++ b/sum/Sum/obj/Sum.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.5.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/sum/Sum/obj/Sum.csproj.nuget.g.targets b/sum/Sum/obj/Sum.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/sum/Sum/obj/Sum.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/sum/Sum/obj/project.assets.json b/sum/Sum/obj/project.assets.json new file mode 100644 index 0000000..d6652a8 --- /dev/null +++ b/sum/Sum/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\\Sum\\Sum\\Sum.csproj", + "projectName": "Sum", + "projectPath": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\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.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/sum/Sum/obj/project.nuget.cache b/sum/Sum/obj/project.nuget.cache new file mode 100644 index 0000000..bab7789 --- /dev/null +++ b/sum/Sum/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "/vU3dMB8hPmWScp1kNihiE6M0JEQTzhy2JuJOsnPHLXcsne3E/UOrQseU0645oqrfsHtEEx38E9Uv7Di6gEV+Q==", + "success": true, + "projectFilePath": "C:\\Users\\User\\source\\repos\\Sum\\Sum\\Sum.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file |