gr606_sosan vor 2 Jahren
Commit
4c19051183
34 geänderte Dateien mit 550 neuen und 0 gelöschten Zeilen
  1. 13 0
      ConsoleApp1/.idea/.idea.ConsoleApp1/.idea/.gitignore
  2. 8 0
      ConsoleApp1/.idea/.idea.ConsoleApp1/.idea/indexLayout.xml
  3. 16 0
      ConsoleApp1/ConsoleApp1.sln
  4. 14 0
      ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj
  5. 156 0
      ConsoleApp1/ConsoleApp1/Program.cs
  6. 41 0
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.deps.json
  7. BIN
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.dll
  8. BIN
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.exe
  9. BIN
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.pdb
  10. 9 0
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.runtimeconfig.json
  11. BIN
      ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/Newtonsoft.Json.dll
  12. 73 0
      ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json
  13. 16 0
      ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props
  14. 2 0
      ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets
  15. 4 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
  16. 22 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.AssemblyInfo.cs
  17. 1 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.AssemblyInfoInputs.cache
  18. 10 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig
  19. 8 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.GlobalUsings.g.cs
  20. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.assets.cache
  21. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.AssemblyReference.cache
  22. 0 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.CopyComplete
  23. 1 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.CoreCompileInputs.cache
  24. 17 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.FileListAbsolute.txt
  25. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.dll
  26. 1 0
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.genruntimeconfig.cache
  27. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.pdb
  28. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/apphost.exe
  29. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ref/ConsoleApp1.dll
  30. BIN
      ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/refint/ConsoleApp1.dll
  31. 126 0
      ConsoleApp1/ConsoleApp1/obj/project.assets.json
  32. 10 0
      ConsoleApp1/ConsoleApp1/obj/project.nuget.cache
  33. 1 0
      ConsoleApp1/ConsoleApp1/obj/project.packagespec.json
  34. 1 0
      ConsoleApp1/ConsoleApp1/obj/rider.project.restore.info

+ 13 - 0
ConsoleApp1/.idea/.idea.ConsoleApp1/.idea/.gitignore

@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/projectSettingsUpdater.xml
+/contentModel.xml
+/modules.xml
+/.idea.ConsoleApp1.iml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml

+ 8 - 0
ConsoleApp1/.idea/.idea.ConsoleApp1/.idea/indexLayout.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="UserContentModel">
+    <attachedFolders />
+    <explicitIncludes />
+    <explicitExcludes />
+  </component>
+</project>

+ 16 - 0
ConsoleApp1/ConsoleApp1.sln

@@ -0,0 +1,16 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{9234BC38-4645-41CE-95C4-B898AA61B36C}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{9234BC38-4645-41CE-95C4-B898AA61B36C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{9234BC38-4645-41CE-95C4-B898AA61B36C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{9234BC38-4645-41CE-95C4-B898AA61B36C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{9234BC38-4645-41CE-95C4-B898AA61B36C}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+EndGlobal

+ 14 - 0
ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj

@@ -0,0 +1,14 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+    <PropertyGroup>
+        <OutputType>Exe</OutputType>
+        <TargetFramework>net6.0</TargetFramework>
+        <ImplicitUsings>enable</ImplicitUsings>
+        <Nullable>enable</Nullable>
+    </PropertyGroup>
+
+    <ItemGroup>
+      <PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
+    </ItemGroup>
+
+</Project>

+ 156 - 0
ConsoleApp1/ConsoleApp1/Program.cs

@@ -0,0 +1,156 @@
+using System;
+using System.Text;
+using System.Net.Http;
+using System.Net.Http.Headers;
+using System.Threading.Tasks;
+using Newtonsoft.Json;
+
+namespace ConsoleApp1
+{
+    /*public class OrdinaryUrl
+    {
+        public string? type { get; set; }
+        public string? url { get; set; }
+        public string? suggested_link_text { get; set; }
+
+        public OrdinaryUrl(string? type, string? url, string? suggested_link_text)
+        {
+            this.type = type;
+            this.url = url;
+            this.suggested_link_text = suggested_link_text;
+        }
+
+    }*/
+
+    /*
+    public class InformationCriminals
+    {
+
+
+       
+        [JsonProperty("@id")] public string?  Newid { get; set; }
+        [JsonProperty("title")] public string?  Title { get; set; }
+        [JsonProperty("field_offices")] public string? Office { get; set; }
+        [JsonProperty("details")] public string? Detail { get; set; }
+        [JsonProperty("sex")] public string? Pol { get; set; }
+        [JsonProperty("nationality")] public string? National { get; set; }
+        [JsonProperty("age_max")] public int? Age { get; set; }
+        [JsonProperty("height_max")] public int? Height { get; set; }
+        [JsonProperty("race_raw")] public string? Race  { get; set; }
+        [JsonProperty("hair_raw")] public string? Hair { get; set; }
+        [JsonProperty("languages")] public string? Language { get; set; }
+        [JsonProperty("files")] public string? Urlpdf { get; set; }
+
+
+
+        public InformationCriminals(string? underNewid, string? underTitle, string? underOffice, string?
+                underDetails, string? underPol, string? underNational, int? underAge, int? underHeight,
+            string? underRace,
+            string? underHair, string? underLanguage, string? underPdf)
+        {
+            this.Newid = underNewid;
+            this.Title = underTitle;
+            this.Office = underOffice;
+            this.Detail = underDetails;
+            this.Pol = underPol;
+            this.National = underNational;
+            this.Age = underAge;
+            this.Height = underHeight;
+            this.Race = underRace;
+            this.Hair = underHair;
+            this.Language = underLanguage;
+            this.Urlpdf = underPdf;
+         
+
+
+
+
+        }
+    }*/
+    
+    class Contributor
+    {
+        public string items { get; set; }
+        
+
+        public override string ToString()
+        {
+            return $"{items}  ";
+        }
+    }
+
+        class Program
+        {
+            private static async Task Main()
+            {
+                using var client = new HttpClient();
+
+                client.BaseAddress = new Uri("https://api.fbi.gov/wanted/v1/list");
+                
+                client.DefaultRequestHeaders.Accept.Add(
+                    new MediaTypeWithQualityHeaderValue("application/json"));
+
+                var url = "https://api.fbi.gov/wanted/v1/list";
+                HttpResponseMessage response = await client.GetAsync(url);
+                response.EnsureSuccessStatusCode();
+                var resp = await response.Content.ReadAsStringAsync();
+
+                List<Contributor> contributors =
+                    JsonConvert.DeserializeObject<List<Contributor>>(resp);
+                contributors.ForEach(Console.WriteLine);
+            }
+        }
+    
+}
+
+/*class WantedPersons
+{
+  public string title { get; set; }
+  public char dates_of_birth_used { get; set; }
+  public string nationality { get; set; }
+    public string race_raw { get; set; }
+    public string race { get; set; }
+    public string hair_raw { get; set; }
+    public string place_of_birth { get; set; }
+    public string person_classification { get; set; }
+    public string description { get; set; }
+    public int height_max { get; set; }
+    public int height_min { get; set; }
+
+    
+
+    public override string ToString()
+    {
+        return $"{title}: {dates_of_birth_used}: {nationality} nationality: {race_raw}:" +
+               $" {race}: {hair_raw}: {place_of_birth}: {person_classification}: {description}:" +
+               $"{height_max}: {height_min}";
+    }
+}
+
+class Program
+{
+     static async Task Main(string[] args)
+    {
+        
+        using var client = new HttpClient();
+
+        client.BaseAddress = new Uri("https://www.fbi.gov/wanted");
+        client.DefaultRequestHeaders.Add("MostWanted Persons", "");
+        client.DefaultRequestHeaders.Accept.Add(
+            new MediaTypeWithQualityHeaderValue("application/json"));
+
+        var url = "repos/symfony/symfony/persons";
+        HttpResponseMessage response = await client.GetAsync(url);
+        response.EnsureSuccessStatusCode();
+        var resp = await response.Content.ReadAsStringAsync();
+
+        List<WantedPersons> persons = JsonConvert.DeserializeObject<List<WantedPersons>>(resp);
+        persons.ForEach(Console.WriteLine);
+        
+        
+        
+        
+        
+    }*/
+    
+

+ 41 - 0
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.deps.json

@@ -0,0 +1,41 @@
+{
+  "runtimeTarget": {
+    "name": ".NETCoreApp,Version=v6.0",
+    "signature": ""
+  },
+  "compilationOptions": {},
+  "targets": {
+    ".NETCoreApp,Version=v6.0": {
+      "ConsoleApp1/1.0.0": {
+        "dependencies": {
+          "Newtonsoft.Json": "13.0.2"
+        },
+        "runtime": {
+          "ConsoleApp1.dll": {}
+        }
+      },
+      "Newtonsoft.Json/13.0.2": {
+        "runtime": {
+          "lib/net6.0/Newtonsoft.Json.dll": {
+            "assemblyVersion": "13.0.0.0",
+            "fileVersion": "13.0.2.27524"
+          }
+        }
+      }
+    }
+  },
+  "libraries": {
+    "ConsoleApp1/1.0.0": {
+      "type": "project",
+      "serviceable": false,
+      "sha512": ""
+    },
+    "Newtonsoft.Json/13.0.2": {
+      "type": "package",
+      "serviceable": true,
+      "sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
+      "path": "newtonsoft.json/13.0.2",
+      "hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
+    }
+  }
+}

BIN
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.dll


BIN
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.exe


BIN
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.pdb


+ 9 - 0
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/ConsoleApp1.runtimeconfig.json

@@ -0,0 +1,9 @@
+{
+  "runtimeOptions": {
+    "tfm": "net6.0",
+    "framework": {
+      "name": "Microsoft.NETCore.App",
+      "version": "6.0.0"
+    }
+  }
+}

BIN
ConsoleApp1/ConsoleApp1/bin/Debug/net6.0/Newtonsoft.Json.dll


+ 73 - 0
ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json

@@ -0,0 +1,73 @@
+{
+  "format": 1,
+  "restore": {
+    "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": {}
+  },
+  "projects": {
+    "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj": {
+      "version": "1.0.0",
+      "restore": {
+        "projectUniqueName": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
+        "projectName": "ConsoleApp1",
+        "projectPath": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
+        "packagesPath": "C:\\Users\\Papa\\.nuget\\packages\\",
+        "outputPath": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\obj\\",
+        "projectStyle": "PackageReference",
+        "fallbackFolders": [
+          "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+        ],
+        "configFilePaths": [
+          "C:\\Users\\Papa\\AppData\\Roaming\\NuGet\\NuGet.Config",
+          "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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",
+          "dependencies": {
+            "Newtonsoft.Json": {
+              "target": "Package",
+              "version": "[13.0.2, )"
+            }
+          },
+          "imports": [
+            "net461",
+            "net462",
+            "net47",
+            "net471",
+            "net472",
+            "net48",
+            "net481"
+          ],
+          "assetTargetFallback": true,
+          "warn": true,
+          "frameworkReferences": {
+            "Microsoft.NETCore.App": {
+              "privateAssets": "all"
+            }
+          },
+          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
+        }
+      }
+    }
+  }
+}

+ 16 - 0
ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props

@@ -0,0 +1,16 @@
+<?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\Papa\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
+  </PropertyGroup>
+  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
+    <SourceRoot Include="C:\Users\Papa\.nuget\packages\" />
+    <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
+  </ItemGroup>
+</Project>

+ 2 - 0
ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.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" />

+ 4 - 0
ConsoleApp1/ConsoleApp1/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 = "")]

+ 22 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.AssemblyInfo.cs

@@ -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")]
+
+// Создано классом WriteCodeFragment MSBuild.
+

+ 1 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.AssemblyInfoInputs.cache

@@ -0,0 +1 @@
+0cbac02cf6b33ab9449e1ec02e8dbba2474e8080

+ 10 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig

@@ -0,0 +1,10 @@
+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._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = ConsoleApp1
+build_property.ProjectDir = C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\

+ 8 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.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;

BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.assets.cache


BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.AssemblyReference.cache


+ 0 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.CopyComplete


+ 1 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.CoreCompileInputs.cache

@@ -0,0 +1 @@
+b689c671d604f81d36187e055d41acc3157c42ff

+ 17 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.csproj.FileListAbsolute.txt

@@ -0,0 +1,17 @@
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\ConsoleApp1.exe
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\ConsoleApp1.deps.json
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\ConsoleApp1.runtimeconfig.json
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\ConsoleApp1.dll
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\ConsoleApp1.pdb
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\bin\Debug\net6.0\Newtonsoft.Json.dll
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.csproj.AssemblyReference.cache
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.AssemblyInfoInputs.cache
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.AssemblyInfo.cs
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.csproj.CoreCompileInputs.cache
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.csproj.CopyComplete
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.dll
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\refint\ConsoleApp1.dll
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.pdb
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ConsoleApp1.genruntimeconfig.cache
+C:\Users\Papa\Desktop\Tested\ConsoleApp1\ConsoleApp1\obj\Debug\net6.0\ref\ConsoleApp1.dll

BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.dll


+ 1 - 0
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.genruntimeconfig.cache

@@ -0,0 +1 @@
+af0a81f20fc9e014781c5eb6bc1bbe418963cab4

BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ConsoleApp1.pdb


BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/apphost.exe


BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/ref/ConsoleApp1.dll


BIN
ConsoleApp1/ConsoleApp1/obj/Debug/net6.0/refint/ConsoleApp1.dll


+ 126 - 0
ConsoleApp1/ConsoleApp1/obj/project.assets.json

@@ -0,0 +1,126 @@
+{
+  "version": 3,
+  "targets": {
+    "net6.0": {
+      "Newtonsoft.Json/13.0.2": {
+        "type": "package",
+        "compile": {
+          "lib/net6.0/Newtonsoft.Json.dll": {
+            "related": ".xml"
+          }
+        },
+        "runtime": {
+          "lib/net6.0/Newtonsoft.Json.dll": {
+            "related": ".xml"
+          }
+        }
+      }
+    }
+  },
+  "libraries": {
+    "Newtonsoft.Json/13.0.2": {
+      "sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
+      "type": "package",
+      "path": "newtonsoft.json/13.0.2",
+      "files": [
+        ".nupkg.metadata",
+        ".signature.p7s",
+        "LICENSE.md",
+        "README.md",
+        "lib/net20/Newtonsoft.Json.dll",
+        "lib/net20/Newtonsoft.Json.xml",
+        "lib/net35/Newtonsoft.Json.dll",
+        "lib/net35/Newtonsoft.Json.xml",
+        "lib/net40/Newtonsoft.Json.dll",
+        "lib/net40/Newtonsoft.Json.xml",
+        "lib/net45/Newtonsoft.Json.dll",
+        "lib/net45/Newtonsoft.Json.xml",
+        "lib/net6.0/Newtonsoft.Json.dll",
+        "lib/net6.0/Newtonsoft.Json.xml",
+        "lib/netstandard1.0/Newtonsoft.Json.dll",
+        "lib/netstandard1.0/Newtonsoft.Json.xml",
+        "lib/netstandard1.3/Newtonsoft.Json.dll",
+        "lib/netstandard1.3/Newtonsoft.Json.xml",
+        "lib/netstandard2.0/Newtonsoft.Json.dll",
+        "lib/netstandard2.0/Newtonsoft.Json.xml",
+        "newtonsoft.json.13.0.2.nupkg.sha512",
+        "newtonsoft.json.nuspec",
+        "packageIcon.png"
+      ]
+    }
+  },
+  "projectFileDependencyGroups": {
+    "net6.0": [
+      "Newtonsoft.Json >= 13.0.2"
+    ]
+  },
+  "packageFolders": {
+    "C:\\Users\\Papa\\.nuget\\packages\\": {},
+    "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+  },
+  "project": {
+    "version": "1.0.0",
+    "restore": {
+      "projectUniqueName": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
+      "projectName": "ConsoleApp1",
+      "projectPath": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
+      "packagesPath": "C:\\Users\\Papa\\.nuget\\packages\\",
+      "outputPath": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\obj\\",
+      "projectStyle": "PackageReference",
+      "fallbackFolders": [
+        "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+      ],
+      "configFilePaths": [
+        "C:\\Users\\Papa\\AppData\\Roaming\\NuGet\\NuGet.Config",
+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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",
+        "dependencies": {
+          "Newtonsoft.Json": {
+            "target": "Package",
+            "version": "[13.0.2, )"
+          }
+        },
+        "imports": [
+          "net461",
+          "net462",
+          "net47",
+          "net471",
+          "net472",
+          "net48",
+          "net481"
+        ],
+        "assetTargetFallback": true,
+        "warn": true,
+        "frameworkReferences": {
+          "Microsoft.NETCore.App": {
+            "privateAssets": "all"
+          }
+        },
+        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
+      }
+    }
+  }
+}

+ 10 - 0
ConsoleApp1/ConsoleApp1/obj/project.nuget.cache

@@ -0,0 +1,10 @@
+{
+  "version": 2,
+  "dgSpecHash": "b3zmnIOXSYTJw9FymnzXrwxKQCjiqi2A2Qel055bB92keV9VYEy95JrsSb4mg8rPLC5Z0W2AQUN+Bj1Lmnlz/g==",
+  "success": true,
+  "projectFilePath": "C:\\Users\\Papa\\Desktop\\Tested\\ConsoleApp1\\ConsoleApp1\\ConsoleApp1.csproj",
+  "expectedPackageFiles": [
+    "C:\\Users\\Papa\\.nuget\\packages\\newtonsoft.json\\13.0.2\\newtonsoft.json.13.0.2.nupkg.sha512"
+  ],
+  "logs": []
+}

Datei-Diff unterdrückt, da er zu groß ist
+ 1 - 0
ConsoleApp1/ConsoleApp1/obj/project.packagespec.json


+ 1 - 0
ConsoleApp1/ConsoleApp1/obj/rider.project.restore.info

@@ -0,0 +1 @@
+16696481592648197