From 27a12246270a7ebf50721086b7b70c064e666730 Mon Sep 17 00:00:00 2001 From: La Programmatrice Verde Date: Wed, 13 Nov 2024 10:48:17 +0100 Subject: [PATCH] Initial commit --- Program.cs | 9 +++ Verifica2_Bassanetti_for.csproj | 10 +++ Verifica2_Bassanetti_for.sln | 15 ++++ ...a2_Bassanetti_for.csproj.nuget.dgspec.json | 72 +++++++++++++++++ ...ifica2_Bassanetti_for.csproj.nuget.g.props | 15 ++++ ...ica2_Bassanetti_for.csproj.nuget.g.targets | 2 + obj/project.assets.json | 77 +++++++++++++++++++ obj/project.nuget.cache | 10 +++ 8 files changed, 210 insertions(+) create mode 100644 Program.cs create mode 100644 Verifica2_Bassanetti_for.csproj create mode 100644 Verifica2_Bassanetti_for.sln create mode 100644 obj/Verifica2_Bassanetti_for.csproj.nuget.dgspec.json create mode 100644 obj/Verifica2_Bassanetti_for.csproj.nuget.g.props create mode 100644 obj/Verifica2_Bassanetti_for.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..9e9e2c0 --- /dev/null +++ b/Program.cs @@ -0,0 +1,9 @@ +namespace Verifica2_Bassanetti_for; + +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +} diff --git a/Verifica2_Bassanetti_for.csproj b/Verifica2_Bassanetti_for.csproj new file mode 100644 index 0000000..206b89a --- /dev/null +++ b/Verifica2_Bassanetti_for.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/Verifica2_Bassanetti_for.sln b/Verifica2_Bassanetti_for.sln new file mode 100644 index 0000000..08df351 --- /dev/null +++ b/Verifica2_Bassanetti_for.sln @@ -0,0 +1,15 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Verifica2_Bassanetti_for", "Verifica2_Bassanetti_for.csproj", { +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/obj/Verifica2_Bassanetti_for.csproj.nuget.dgspec.json b/obj/Verifica2_Bassanetti_for.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9c88b1b --- /dev/null +++ b/obj/Verifica2_Bassanetti_for.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj": {} + }, + "projects": { + "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", + "projectName": "Verifica2_Bassanetti_for", + "projectPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", + "packagesPath": "/home/BrainTheBest5/.nuget/packages/", + "outputPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/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/Verifica2_Bassanetti_for.csproj.nuget.g.props b/obj/Verifica2_Bassanetti_for.csproj.nuget.g.props new file mode 100644 index 0000000..43fa18c --- /dev/null +++ b/obj/Verifica2_Bassanetti_for.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/Verifica2_Bassanetti_for.csproj.nuget.g.targets b/obj/Verifica2_Bassanetti_for.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/Verifica2_Bassanetti_for.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..2f93d36 --- /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/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", + "projectName": "Verifica2_Bassanetti_for", + "projectPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", + "packagesPath": "/home/BrainTheBest5/.nuget/packages/", + "outputPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/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..e970498 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "I/u/Zg0kkyQ=", + "success": true, + "projectFilePath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.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