From 0828e001ddef6e2daefcdbcaf6424f3f1a07af1f Mon Sep 17 00:00:00 2001 From: La Programmatrice Verde Date: Wed, 23 Oct 2024 08:30:17 +0200 Subject: [PATCH] Initial commit --- Program.cs | 13 +++ Programma3.csproj | 10 +++ ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + obj/Debug/net8.0/Programma3.AssemblyInfo.cs | 22 +++++ .../Programma3.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 +++ obj/Debug/net8.0/Programma3.GlobalUsings.g.cs | 8 ++ obj/Debug/net8.0/Programma3.assets.cache | Bin 0 -> 157 bytes obj/Programma3.csproj.nuget.dgspec.json | 72 ++++++++++++++++ obj/Programma3.csproj.nuget.g.props | 15 ++++ obj/Programma3.csproj.nuget.g.targets | 2 + obj/project.assets.json | 77 ++++++++++++++++++ obj/project.nuget.cache | 10 +++ 13 files changed, 247 insertions(+) create mode 100644 Program.cs create mode 100644 Programma3.csproj create mode 100644 obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 obj/Debug/net8.0/Programma3.AssemblyInfo.cs create mode 100644 obj/Debug/net8.0/Programma3.AssemblyInfoInputs.cache create mode 100644 obj/Debug/net8.0/Programma3.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/net8.0/Programma3.GlobalUsings.g.cs create mode 100644 obj/Debug/net8.0/Programma3.assets.cache create mode 100644 obj/Programma3.csproj.nuget.dgspec.json create mode 100644 obj/Programma3.csproj.nuget.g.props create mode 100644 obj/Programma3.csproj.nuget.g.targets create mode 100644 obj/project.assets.json create mode 100644 obj/project.nuget.cache diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..96a884c --- /dev/null +++ b/Program.cs @@ -0,0 +1,13 @@ +// See https://aka.ms/new-console-template for more information +int numero=0; +Console.Write("Inserire un numero: "); +numero=Convert.ToInt32(Console.ReadLine()); +if (numero>0){ + Console.WriteLine("Il numero è positivo."); +} +else if (numero<0){ + Console.WriteLine("Il numero è negativo."); +} +else{ + Console.WriteLine("Il numero è zero."); +} \ No newline at end of file diff --git a/Programma3.csproj b/Programma3.csproj new file mode 100644 index 0000000..206b89a --- /dev/null +++ b/Programma3.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/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/obj/Debug/net8.0/Programma3.AssemblyInfo.cs b/obj/Debug/net8.0/Programma3.AssemblyInfo.cs new file mode 100644 index 0000000..bb27a20 --- /dev/null +++ b/obj/Debug/net8.0/Programma3.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("Programma3")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Programma3")] +[assembly: System.Reflection.AssemblyTitleAttribute("Programma3")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net8.0/Programma3.AssemblyInfoInputs.cache b/obj/Debug/net8.0/Programma3.AssemblyInfoInputs.cache new file mode 100644 index 0000000..81138dc --- /dev/null +++ b/obj/Debug/net8.0/Programma3.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bafd09ef7862e649323399a2a1f3d1f44b4e15b27411392bb4c1afa1c65b483d diff --git a/obj/Debug/net8.0/Programma3.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/Programma3.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3172f7b --- /dev/null +++ b/obj/Debug/net8.0/Programma3.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 = Programma3 +build_property.ProjectDir = /home/BrainTheBest5/Scrivania/Programma3/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net8.0/Programma3.GlobalUsings.g.cs b/obj/Debug/net8.0/Programma3.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net8.0/Programma3.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/obj/Debug/net8.0/Programma3.assets.cache b/obj/Debug/net8.0/Programma3.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..78a0414641b26b133ae4a6cbc15fcdf2f4d94d99 GIT binary patch literal 157 zcmWIWc6a1qU|^X0Xi-DY^3aOPn(kl?%kWjx>OH13w(!0VsJ+k1e^hAuOrRQK0V7bM rihf3ZZmPahQDSCZNJgqtYH^9FzFuBwdTNP&L1J=tVtQ(^J|P1Ee`g)^ literal 0 HcmV?d00001 diff --git a/obj/Programma3.csproj.nuget.dgspec.json b/obj/Programma3.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8a62924 --- /dev/null +++ b/obj/Programma3.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj": {} + }, + "projects": { + "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj", + "projectName": "Programma3", + "projectPath": "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj", + "packagesPath": "/home/BrainTheBest5/.nuget/packages/", + "outputPath": "/home/BrainTheBest5/Scrivania/Programma3/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/BrainTheBest5/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.10, 8.0.10]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/Programma3.csproj.nuget.g.props b/obj/Programma3.csproj.nuget.g.props new file mode 100644 index 0000000..43fa18c --- /dev/null +++ b/obj/Programma3.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/BrainTheBest5/.nuget/packages/ + /home/BrainTheBest5/.nuget/packages/ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/obj/Programma3.csproj.nuget.g.targets b/obj/Programma3.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/Programma3.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..63f522a --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,77 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/BrainTheBest5/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj", + "projectName": "Programma3", + "projectPath": "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj", + "packagesPath": "/home/BrainTheBest5/.nuget/packages/", + "outputPath": "/home/BrainTheBest5/Scrivania/Programma3/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/BrainTheBest5/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.10, 8.0.10]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..6a83943 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "V0HvrJuho3g=", + "success": true, + "projectFilePath": "/home/BrainTheBest5/Scrivania/Programma3/Programma3.csproj", + "expectedPackageFiles": [ + "/home/BrainTheBest5/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.10/microsoft.aspnetcore.app.ref.8.0.10.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file