Aggiunti file

This commit is contained in:
La Programmatrice Verde
2024-11-13 10:53:23 +01:00
parent 27a1224627
commit f8fc082e61
69 changed files with 601 additions and 178 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,37 @@
{
"Version": 1,
"WorkspaceRootPath": "T:\\Verifica2_Bassanetti\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{AD45EE58-3B2B-418C-952E-57331DC97C39}|Verifica2_Bassanetti.csproj|t:\\verifica2_bassanetti\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{AD45EE58-3B2B-418C-952E-57331DC97C39}|Verifica2_Bassanetti.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
}
],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": 0,
"Children": [
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "Program.cs",
"DocumentMoniker": "T:\\Verifica2_Bassanetti\\Program.cs",
"RelativeDocumentMoniker": "Program.cs",
"ToolTip": "T:\\Verifica2_Bassanetti\\Program.cs",
"RelativeToolTip": "Program.cs",
"ViewState": "AgIAAAYAAAAAAAAAAAAAAA0AAAAUAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2024-11-13T07:50:19.413Z",
"EditorCaption": ""
}
]
}
]
}
]
}

View File

@@ -0,0 +1,37 @@
{
"Version": 1,
"WorkspaceRootPath": "T:\\Verifica2_Bassanetti_for\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{AD45EE58-3B2B-418C-952E-57331DC97C39}|Verifica2_Bassanetti.csproj|t:\\verifica2_bassanetti_for\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{AD45EE58-3B2B-418C-952E-57331DC97C39}|Verifica2_Bassanetti.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
}
],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": 0,
"Children": [
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "Program.cs",
"DocumentMoniker": "T:\\Verifica2_Bassanetti_for\\Program.cs",
"RelativeDocumentMoniker": "Program.cs",
"ToolTip": "T:\\Verifica2_Bassanetti_for\\Program.cs",
"RelativeToolTip": "Program.cs",
"ViewState": "AgIAAAYAAAAAAAAAAAAAAA0AAAAUAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2024-11-13T07:50:19.413Z",
"EditorCaption": ""
}
]
}
]
}
]
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "T:\\Verifica2_Bassanetti_for\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

View File

@@ -0,0 +1,37 @@
{
"Version": 1,
"WorkspaceRootPath": "T:\\Verifica2_Bassanetti_for\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}|Verifica2_Bassanetti_for.csproj|t:\\verifica2_bassanetti_for\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
"RelativeMoniker": "D:0:0:{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}|Verifica2_Bassanetti_for.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
}
],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": 0,
"Children": [
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "Program.cs",
"DocumentMoniker": "T:\\Verifica2_Bassanetti_for\\Program.cs",
"RelativeDocumentMoniker": "Program.cs",
"ToolTip": "T:\\Verifica2_Bassanetti_for\\Program.cs",
"RelativeToolTip": "Program.cs",
"ViewState": "AgIAAA8AAAAAAAAAAAAAABwAAAAMAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2024-11-13T09:01:22.708Z",
"EditorCaption": ""
}
]
}
]
}
]
}

View File

@@ -1,9 +1,31 @@
namespace Verifica2_Bassanetti_for; // See https://aka.ms/new-console-template for more information
// dichiarazione e inizializzazione variabili
int input, fattoriale;
fattoriale = 1;
class Program //input e input sanitization
do
{ {
static void Main(string[] args) Console.Write("Inserisci un numero: ");
input = Convert.ToInt32(Console.ReadLine());
if (input <= 0)
{ {
Console.WriteLine("Hello, World!"); Console.WriteLine("Il numero inserito non può essere né zero né negativo");
} }
} }
while (input <= 0);
//inizio calcolo
for (int i = 1; i <= input; i++){
if (i == 1){
fattoriale = 1;
}
else{
fattoriale = i;
for (int j = 1; i-j >= 2; j++)
{
fattoriale = fattoriale * (i-j);
}
}
//output
Console.WriteLine("Fattoriale di " +i + ": " +fattoriale);
}

View File

@@ -1,14 +1,21 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59 VisualStudioVersion = 17.11.35222.181
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Verifica2_Bassanetti_for", "Verifica2_Bassanetti_for.csproj", { Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Verifica2_Bassanetti_for", "Verifica2_Bassanetti_for.csproj", "{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{603A3B7B-1B12-450E-AE7F-72AAD809F7AD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
EndGlobalSection EndGlobalSection

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Verifica2_Bassanetti/1.0.0": {
"runtime": {
"Verifica2_Bassanetti.dll": {}
}
}
}
},
"libraries": {
"Verifica2_Bassanetti/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Verifica2_Bassanetti_for/1.0.0": {
"runtime": {
"Verifica2_Bassanetti_for.dll": {}
}
}
}
},
"libraries": {
"Verifica2_Bassanetti_for/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Il codice è stato generato da uno strumento.
// Versione runtime:4.0.30319.42000
//
// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Verifica2_Bassanetti")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Verifica2_Bassanetti")]
[assembly: System.Reflection.AssemblyTitleAttribute("Verifica2_Bassanetti")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generato dalla classe WriteCodeFragment di MSBuild.

View File

@@ -0,0 +1 @@
6460c39388226ec13e55d2efb68004630436528f24dda0866ff3dd363d1e22fa

View File

@@ -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 = Verifica2_Bassanetti
build_property.ProjectDir = T:\Verifica2_Bassanetti_for\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -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;

Binary file not shown.

View File

@@ -0,0 +1 @@
fc5fe4cca513b0c91cdb8e82e34abbb75ba03b8b76fad4e254bb719d7859ab13

View File

@@ -0,0 +1,14 @@
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.GeneratedMSBuildEditorConfig.editorconfig
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.AssemblyInfoInputs.cache
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.AssemblyInfo.cs
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.csproj.CoreCompileInputs.cache
T:\Verifica2_Bassanetti\bin\Debug\net8.0\Verifica2_Bassanetti.exe
T:\Verifica2_Bassanetti\bin\Debug\net8.0\Verifica2_Bassanetti.deps.json
T:\Verifica2_Bassanetti\bin\Debug\net8.0\Verifica2_Bassanetti.runtimeconfig.json
T:\Verifica2_Bassanetti\bin\Debug\net8.0\Verifica2_Bassanetti.dll
T:\Verifica2_Bassanetti\bin\Debug\net8.0\Verifica2_Bassanetti.pdb
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.dll
T:\Verifica2_Bassanetti\obj\Debug\net8.0\refint\Verifica2_Bassanetti.dll
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.pdb
T:\Verifica2_Bassanetti\obj\Debug\net8.0\Verifica2_Bassanetti.genruntimeconfig.cache
T:\Verifica2_Bassanetti\obj\Debug\net8.0\ref\Verifica2_Bassanetti.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
eb1c294fcd0e4fbf24ffefc89140702111650c663f983e8fc1cca418138fc07f

Binary file not shown.

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Il codice è stato generato da uno strumento.
// Versione runtime:4.0.30319.42000
//
// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
// il codice viene rigenerato.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Verifica2_Bassanetti_for")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Verifica2_Bassanetti_for")]
[assembly: System.Reflection.AssemblyTitleAttribute("Verifica2_Bassanetti_for")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generato dalla classe WriteCodeFragment di MSBuild.

View File

@@ -0,0 +1 @@
9cb28ee83d97b69e25948395814a3efa45e38734a9f382d234dc422387cdbc77

View File

@@ -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 = Verifica2_Bassanetti_for
build_property.ProjectDir = T:\Verifica2_Bassanetti_for\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -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;

Binary file not shown.

View File

@@ -0,0 +1 @@
4e8b5eac57e767ee7c67d9f542a9029c6e92729707af8f9b48f012ffe162a66c

View File

@@ -0,0 +1,14 @@
T:\Verifica2_Bassanetti_for\bin\Debug\net8.0\Verifica2_Bassanetti_for.exe
T:\Verifica2_Bassanetti_for\bin\Debug\net8.0\Verifica2_Bassanetti_for.deps.json
T:\Verifica2_Bassanetti_for\bin\Debug\net8.0\Verifica2_Bassanetti_for.runtimeconfig.json
T:\Verifica2_Bassanetti_for\bin\Debug\net8.0\Verifica2_Bassanetti_for.dll
T:\Verifica2_Bassanetti_for\bin\Debug\net8.0\Verifica2_Bassanetti_for.pdb
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.GeneratedMSBuildEditorConfig.editorconfig
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.AssemblyInfoInputs.cache
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.AssemblyInfo.cs
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.csproj.CoreCompileInputs.cache
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.dll
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\refint\Verifica2_Bassanetti_for.dll
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.pdb
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\Verifica2_Bassanetti_for.genruntimeconfig.cache
T:\Verifica2_Bassanetti_for\obj\Debug\net8.0\ref\Verifica2_Bassanetti_for.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
64f39bfe6f7525596777ca091fd730e5b39b1ddbd47b94af062e3a4228ab9cfb

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,68 @@
{
"format": 1,
"restore": {
"T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti.csproj": {}
},
"projects": {
"T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti.csproj",
"projectName": "Verifica2_Bassanetti",
"projectPath": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti.csproj",
"packagesPath": "C:\\Users\\alunno\\.nuget\\packages\\",
"outputPath": "T:\\Verifica2_Bassanetti_for\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\alunno\\AppData\\Roaming\\NuGet\\NuGet.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"
}
},
"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.400/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -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\alunno\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\alunno\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@@ -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" />

View File

@@ -1,25 +1,27 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj": {} "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj": {}
}, },
"projects": { "projects": {
"/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj": { "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", "projectUniqueName": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj",
"projectName": "Verifica2_Bassanetti_for", "projectName": "Verifica2_Bassanetti_for",
"projectPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", "projectPath": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj",
"packagesPath": "/home/BrainTheBest5/.nuget/packages/", "packagesPath": "C:\\Users\\alunno\\.nuget\\packages\\",
"outputPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/obj/", "outputPath": "T:\\Verifica2_Bassanetti_for\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/BrainTheBest5/.nuget/NuGet/NuGet.Config" "C:\\Users\\alunno\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
"originalTargetFrameworks": [ "originalTargetFrameworks": [
"net8.0" "net8.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
"frameworks": { "frameworks": {
@@ -53,18 +55,12 @@
], ],
"assetTargetFallback": true, "assetTargetFallback": true,
"warn": true, "warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[8.0.10, 8.0.10]"
}
],
"frameworkReferences": { "frameworkReferences": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"privateAssets": "all" "privateAssets": "all"
} }
}, },
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@@ -4,12 +4,12 @@
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/BrainTheBest5/.nuget/packages/</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/BrainTheBest5/.nuget/packages/</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\alunno\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/BrainTheBest5/.nuget/packages/" /> <SourceRoot Include="C:\Users\alunno\.nuget\packages\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -8,24 +8,26 @@
"net8.0": [] "net8.0": []
}, },
"packageFolders": { "packageFolders": {
"/home/BrainTheBest5/.nuget/packages/": {} "C:\\Users\\alunno\\.nuget\\packages\\": {}
}, },
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", "projectUniqueName": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj",
"projectName": "Verifica2_Bassanetti_for", "projectName": "Verifica2_Bassanetti_for",
"projectPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", "projectPath": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj",
"packagesPath": "/home/BrainTheBest5/.nuget/packages/", "packagesPath": "C:\\Users\\alunno\\.nuget\\packages\\",
"outputPath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/obj/", "outputPath": "T:\\Verifica2_Bassanetti_for\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/BrainTheBest5/.nuget/NuGet/NuGet.Config" "C:\\Users\\alunno\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
"originalTargetFrameworks": [ "originalTargetFrameworks": [
"net8.0" "net8.0"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
"frameworks": { "frameworks": {
@@ -59,18 +61,12 @@
], ],
"assetTargetFallback": true, "assetTargetFallback": true,
"warn": true, "warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[8.0.10, 8.0.10]"
}
],
"frameworkReferences": { "frameworkReferences": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"privateAssets": "all" "privateAssets": "all"
} }
}, },
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@@ -1,10 +1,8 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "I/u/Zg0kkyQ=", "dgSpecHash": "ZQFLybD+B30=",
"success": true, "success": true,
"projectFilePath": "/home/BrainTheBest5/git/Verifica2_Bassanetti_for/Verifica2_Bassanetti_for.csproj", "projectFilePath": "T:\\Verifica2_Bassanetti_for\\Verifica2_Bassanetti_for.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [],
"/home/BrainTheBest5/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.10/microsoft.aspnetcore.app.ref.8.0.10.nupkg.sha512"
],
"logs": [] "logs": []
} }