init
This commit is contained in:
13
.idea/.idea.ConsoleApp1/.idea/.gitignore
generated
vendored
Normal file
13
.idea/.idea.ConsoleApp1/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Rider ignored files
|
||||||
|
/modules.xml
|
||||||
|
/projectSettingsUpdater.xml
|
||||||
|
/.idea.ConsoleApp1.iml
|
||||||
|
/contentModel.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
4
.idea/.idea.ConsoleApp1/.idea/encodings.xml
generated
Normal file
4
.idea/.idea.ConsoleApp1/.idea/encodings.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||||
|
</project>
|
||||||
8
.idea/.idea.ConsoleApp1/.idea/indexLayout.xml
generated
Normal file
8
.idea/.idea.ConsoleApp1/.idea/indexLayout.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="UserContentModel">
|
||||||
|
<attachedFolders />
|
||||||
|
<explicitIncludes />
|
||||||
|
<explicitExcludes />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
6
.idea/.idea.ConsoleApp1/.idea/vcs.xml
generated
Normal file
6
.idea/.idea.ConsoleApp1/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
16
ConsoleApp1.sln
Normal file
16
ConsoleApp1.sln
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{6F923B6E-0CA3-4F02-B025-AF2CAEED8C78}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
10
ConsoleApp1/ConsoleApp1.csproj
Normal file
10
ConsoleApp1/ConsoleApp1.csproj
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
30
ConsoleApp1/Program.cs
Normal file
30
ConsoleApp1/Program.cs
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
Random dice = new Random();
|
||||||
|
|
||||||
|
int roll1 = dice.Next(1, 7);
|
||||||
|
int roll2 = dice.Next(1, 7);
|
||||||
|
int roll3 = dice.Next(1, 7);
|
||||||
|
int total = roll1 + roll2 + roll3;
|
||||||
|
|
||||||
|
Console.WriteLine($"Dice roll: {roll1} + {roll2} + {roll3}");
|
||||||
|
//bonus 6 poinst for two same dices
|
||||||
|
if (roll1 == roll2 || roll1 == roll3 || roll2 == roll3)
|
||||||
|
{
|
||||||
|
total += 2;
|
||||||
|
Console.WriteLine("Congratulations NIGGER you just won.......... 2 BONUS points!!!!");
|
||||||
|
}
|
||||||
|
//bonus 6 points for all the same dices
|
||||||
|
if (roll1 == roll2 && roll3 == roll1)
|
||||||
|
{
|
||||||
|
total += 6;
|
||||||
|
Console.WriteLine("You are a CHEATER!!!\n YOUR COMPUTER IS GOING TO KAPUT IN 60 SECONDS ");
|
||||||
|
}
|
||||||
|
|
||||||
|
const int WIN_POINTS = 15;
|
||||||
|
if (total >= WIN_POINTS)
|
||||||
|
{
|
||||||
|
Console.WriteLine("You win!");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.WriteLine("LOOSER!!! hahaha");
|
||||||
|
}
|
||||||
23
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.deps.json
Normal file
23
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.deps.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"ConsoleApp1/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"ConsoleApp1.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"ConsoleApp1/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.dll
Normal file
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.dll
Normal file
Binary file not shown.
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.exe
Normal file
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.exe
Normal file
Binary file not shown.
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.pdb
Normal file
BIN
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.pdb
Normal file
Binary file not shown.
12
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.runtimeconfig.json
Normal file
12
ConsoleApp1/bin/Debug/net8.0/ConsoleApp1.runtimeconfig.json
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
61
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json
Normal file
61
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
|
||||||
|
"projectName": "ConsoleApp1",
|
||||||
|
"projectPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\justg\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\justg\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"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.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props
Normal file
15
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props
Normal 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\justg\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\justg\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets
Normal file
2
ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets
Normal 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" />
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||||
22
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfo.cs
Normal file
22
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// 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("ConsoleApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("ConsoleApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("ConsoleApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
9b4e1ef5f091261e36ca58379f5aa497ab4a942f19c985f94bfc1a6e372da8c3
|
||||||
@@ -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 = ConsoleApp1
|
||||||
|
build_property.ProjectDir = D:\PROJECTS\ConsoleApp1\ConsoleApp1\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
@@ -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;
|
||||||
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.assets.cache
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
5a408287909f9d86dd4a37e405bcf8f81957fde10528eaa8ee2f4ab353567e8f
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.exe
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.deps.json
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.runtimeconfig.json
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.dll
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\bin\Debug\net8.0\ConsoleApp1.pdb
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.AssemblyInfoInputs.cache
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.AssemblyInfo.cs
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.csproj.CoreCompileInputs.cache
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.dll
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\refint\ConsoleApp1.dll
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.pdb
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ConsoleApp1.genruntimeconfig.cache
|
||||||
|
D:\PROJECTS\ConsoleApp1\ConsoleApp1\obj\Debug\net8.0\ref\ConsoleApp1.dll
|
||||||
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.dll
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
08b4183d467ed2883504d4f15669cf705eacfe9983dd8ef4a6c8eb82c6dd7b98
|
||||||
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.pdb
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/ConsoleApp1.pdb
Normal file
Binary file not shown.
BIN
ConsoleApp1/obj/Debug/net8.0/apphost.exe
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
ConsoleApp1/obj/Debug/net8.0/ref/ConsoleApp1.dll
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/ref/ConsoleApp1.dll
Normal file
Binary file not shown.
BIN
ConsoleApp1/obj/Debug/net8.0/refint/ConsoleApp1.dll
Normal file
BIN
ConsoleApp1/obj/Debug/net8.0/refint/ConsoleApp1.dll
Normal file
Binary file not shown.
66
ConsoleApp1/obj/project.assets.json
Normal file
66
ConsoleApp1/obj/project.assets.json
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\justg\\.nuget\\packages\\": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
|
||||||
|
"projectName": "ConsoleApp1",
|
||||||
|
"projectPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\justg\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\justg\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"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.200/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
ConsoleApp1/obj/project.nuget.cache
Normal file
8
ConsoleApp1/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "acY8hXP+NMk8D7ugrjq/k4t6l/mMQVhcBJux1eWCtKUctFTZWpLRk+mA+cet/FMgm3Ryu6+lNkBLM9xoR8UNEw==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
|
||||||
|
"expectedPackageFiles": [],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
1
ConsoleApp1/obj/project.packagespec.json
Normal file
1
ConsoleApp1/obj/project.packagespec.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
"restore":{"projectUniqueName":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj","projectName":"ConsoleApp1","projectPath":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj","outputPath":"D:\\PROJECTS\\ConsoleApp1\\ConsoleApp1\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"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.200/PortableRuntimeIdentifierGraph.json"}}
|
||||||
1
ConsoleApp1/obj/rider.project.model.nuget.info
Normal file
1
ConsoleApp1/obj/rider.project.model.nuget.info
Normal file
@@ -0,0 +1 @@
|
|||||||
|
17110403331778526
|
||||||
1
ConsoleApp1/obj/rider.project.restore.info
Normal file
1
ConsoleApp1/obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
|||||||
|
17110403331778526
|
||||||
Reference in New Issue
Block a user