From 28028184f0b2e066e05a06cc996e7c26e76b27da Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: hello
---
hello/Program.cs | 8 +++
hello/bin/Debug/net6.0/hello.deps.json | 23 +++++++
hello/bin/Debug/net6.0/hello.dll | Bin 0 -> 5120 bytes
hello/bin/Debug/net6.0/hello.exe | Bin 0 -> 147968 bytes
hello/bin/Debug/net6.0/hello.pdb | Bin 0 -> 10284 bytes
hello/bin/Debug/net6.0/hello.runtimeconfig.json | 9 +++
hello/hello.csproj | 10 +++
.../.NETCoreApp,Version=v6.0.AssemblyAttributes.cs | 4 ++
hello/obj/Debug/net6.0/apphost.exe | Bin 0 -> 147968 bytes
hello/obj/Debug/net6.0/hello.AssemblyInfo.cs | 22 +++++++
.../Debug/net6.0/hello.AssemblyInfoInputs.cache | 1 +
...hello.GeneratedMSBuildEditorConfig.editorconfig | 11 ++++
hello/obj/Debug/net6.0/hello.GlobalUsings.g.cs | 8 +++
hello/obj/Debug/net6.0/hello.assets.cache | Bin 0 -> 151 bytes
.../net6.0/hello.csproj.AssemblyReference.cache | Bin 0 -> 73508 bytes
.../net6.0/hello.csproj.CoreCompileInputs.cache | 1 +
.../Debug/net6.0/hello.csproj.FileListAbsolute.txt | 15 +++++
hello/obj/Debug/net6.0/hello.dll | Bin 0 -> 5120 bytes
.../obj/Debug/net6.0/hello.genruntimeconfig.cache | 1 +
hello/obj/Debug/net6.0/hello.pdb | Bin 0 -> 10284 bytes
hello/obj/Debug/net6.0/ref/hello.dll | Bin 0 -> 5632 bytes
hello/obj/Debug/net6.0/refint/hello.dll | Bin 0 -> 5632 bytes
hello/obj/hello.csproj.nuget.dgspec.json | 63 +++++++++++++++++++
hello/obj/hello.csproj.nuget.g.props | 15 +++++
hello/obj/hello.csproj.nuget.g.targets | 2 +
hello/obj/project.assets.json | 68 +++++++++++++++++++++
hello/obj/project.nuget.cache | 8 +++
27 files changed, 269 insertions(+)
create mode 100644 hello/Program.cs
create mode 100644 hello/bin/Debug/net6.0/hello.deps.json
create mode 100644 hello/bin/Debug/net6.0/hello.dll
create mode 100644 hello/bin/Debug/net6.0/hello.exe
create mode 100644 hello/bin/Debug/net6.0/hello.pdb
create mode 100644 hello/bin/Debug/net6.0/hello.runtimeconfig.json
create mode 100644 hello/hello.csproj
create mode 100644 hello/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
create mode 100644 hello/obj/Debug/net6.0/apphost.exe
create mode 100644 hello/obj/Debug/net6.0/hello.AssemblyInfo.cs
create mode 100644 hello/obj/Debug/net6.0/hello.AssemblyInfoInputs.cache
create mode 100644 hello/obj/Debug/net6.0/hello.GeneratedMSBuildEditorConfig.editorconfig
create mode 100644 hello/obj/Debug/net6.0/hello.GlobalUsings.g.cs
create mode 100644 hello/obj/Debug/net6.0/hello.assets.cache
create mode 100644 hello/obj/Debug/net6.0/hello.csproj.AssemblyReference.cache
create mode 100644 hello/obj/Debug/net6.0/hello.csproj.CoreCompileInputs.cache
create mode 100644 hello/obj/Debug/net6.0/hello.csproj.FileListAbsolute.txt
create mode 100644 hello/obj/Debug/net6.0/hello.dll
create mode 100644 hello/obj/Debug/net6.0/hello.genruntimeconfig.cache
create mode 100644 hello/obj/Debug/net6.0/hello.pdb
create mode 100644 hello/obj/Debug/net6.0/ref/hello.dll
create mode 100644 hello/obj/Debug/net6.0/refint/hello.dll
create mode 100644 hello/obj/hello.csproj.nuget.dgspec.json
create mode 100644 hello/obj/hello.csproj.nuget.g.props
create mode 100644 hello/obj/hello.csproj.nuget.g.targets
create mode 100644 hello/obj/project.assets.json
create mode 100644 hello/obj/project.nuget.cache
diff --git a/hello/Program.cs b/hello/Program.cs
new file mode 100644
index 0000000..9cd008e
--- /dev/null
+++ b/hello/Program.cs
@@ -0,0 +1,8 @@
+namespace hello;
+class Program
+{
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Hello, World!");
+ }
+}
diff --git a/hello/bin/Debug/net6.0/hello.deps.json b/hello/bin/Debug/net6.0/hello.deps.json
new file mode 100644
index 0000000..0780a90
--- /dev/null
+++ b/hello/bin/Debug/net6.0/hello.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {
+ "hello/1.0.0": {
+ "runtime": {
+ "hello.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "hello/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/hello/bin/Debug/net6.0/hello.dll b/hello/bin/Debug/net6.0/hello.dll
new file mode 100644
index 0000000..bd84544
Binary files /dev/null and b/hello/bin/Debug/net6.0/hello.dll differ
diff --git a/hello/bin/Debug/net6.0/hello.exe b/hello/bin/Debug/net6.0/hello.exe
new file mode 100644
index 0000000..b8da4de
Binary files /dev/null and b/hello/bin/Debug/net6.0/hello.exe differ
diff --git a/hello/bin/Debug/net6.0/hello.pdb b/hello/bin/Debug/net6.0/hello.pdb
new file mode 100644
index 0000000..7cc1bd5
Binary files /dev/null and b/hello/bin/Debug/net6.0/hello.pdb differ
diff --git a/hello/bin/Debug/net6.0/hello.runtimeconfig.json b/hello/bin/Debug/net6.0/hello.runtimeconfig.json
new file mode 100644
index 0000000..4e96a56
--- /dev/null
+++ b/hello/bin/Debug/net6.0/hello.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/hello/hello.csproj b/hello/hello.csproj
new file mode 100644
index 0000000..40c60dd
--- /dev/null
+++ b/hello/hello.csproj
@@ -0,0 +1,10 @@
+
+
+
+ Exe
+ net6.0
+ enable
+ enable
+
+
+
diff --git a/hello/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/hello/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..a8c10ef
--- /dev/null
+++ b/hello/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/hello/obj/Debug/net6.0/apphost.exe b/hello/obj/Debug/net6.0/apphost.exe
new file mode 100644
index 0000000..b8da4de
Binary files /dev/null and b/hello/obj/Debug/net6.0/apphost.exe differ
diff --git a/hello/obj/Debug/net6.0/hello.AssemblyInfo.cs b/hello/obj/Debug/net6.0/hello.AssemblyInfo.cs
new file mode 100644
index 0000000..4f39fca
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.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("hello")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("hello")]
+[assembly: System.Reflection.AssemblyTitleAttribute("hello")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/hello/obj/Debug/net6.0/hello.AssemblyInfoInputs.cache b/hello/obj/Debug/net6.0/hello.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..424332d
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+9d401f20790214b7c616303462e36f53696cfab4
diff --git a/hello/obj/Debug/net6.0/hello.GeneratedMSBuildEditorConfig.editorconfig b/hello/obj/Debug/net6.0/hello.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..4af0eaa
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+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.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = hello
+build_property.ProjectDir = C:\Users\User\source\repos\hello\
diff --git a/hello/obj/Debug/net6.0/hello.GlobalUsings.g.cs b/hello/obj/Debug/net6.0/hello.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.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/hello/obj/Debug/net6.0/hello.assets.cache b/hello/obj/Debug/net6.0/hello.assets.cache
new file mode 100644
index 0000000..4d75702
Binary files /dev/null and b/hello/obj/Debug/net6.0/hello.assets.cache differ
diff --git a/hello/obj/Debug/net6.0/hello.csproj.AssemblyReference.cache b/hello/obj/Debug/net6.0/hello.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..a888b89
Binary files /dev/null and b/hello/obj/Debug/net6.0/hello.csproj.AssemblyReference.cache differ
diff --git a/hello/obj/Debug/net6.0/hello.csproj.CoreCompileInputs.cache b/hello/obj/Debug/net6.0/hello.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..a65f116
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+40b071353a795eeafa17c7079ef6ead01391ac52
diff --git a/hello/obj/Debug/net6.0/hello.csproj.FileListAbsolute.txt b/hello/obj/Debug/net6.0/hello.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..d287f5e
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+C:\Users\User\source\repos\hello\bin\Debug\net6.0\hello.exe
+C:\Users\User\source\repos\hello\bin\Debug\net6.0\hello.deps.json
+C:\Users\User\source\repos\hello\bin\Debug\net6.0\hello.runtimeconfig.json
+C:\Users\User\source\repos\hello\bin\Debug\net6.0\hello.dll
+C:\Users\User\source\repos\hello\bin\Debug\net6.0\hello.pdb
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.csproj.AssemblyReference.cache
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.AssemblyInfoInputs.cache
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.AssemblyInfo.cs
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.csproj.CoreCompileInputs.cache
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.dll
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\refint\hello.dll
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.pdb
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\hello.genruntimeconfig.cache
+C:\Users\User\source\repos\hello\obj\Debug\net6.0\ref\hello.dll
diff --git a/hello/obj/Debug/net6.0/hello.dll b/hello/obj/Debug/net6.0/hello.dll
new file mode 100644
index 0000000..bd84544
Binary files /dev/null and b/hello/obj/Debug/net6.0/hello.dll differ
diff --git a/hello/obj/Debug/net6.0/hello.genruntimeconfig.cache b/hello/obj/Debug/net6.0/hello.genruntimeconfig.cache
new file mode 100644
index 0000000..5fa1061
--- /dev/null
+++ b/hello/obj/Debug/net6.0/hello.genruntimeconfig.cache
@@ -0,0 +1 @@
+46b9ef8de5ef4436fd345ad0f9fc7def4228dc69
diff --git a/hello/obj/Debug/net6.0/hello.pdb b/hello/obj/Debug/net6.0/hello.pdb
new file mode 100644
index 0000000..7cc1bd5
Binary files /dev/null and b/hello/obj/Debug/net6.0/hello.pdb differ
diff --git a/hello/obj/Debug/net6.0/ref/hello.dll b/hello/obj/Debug/net6.0/ref/hello.dll
new file mode 100644
index 0000000..83605ef
Binary files /dev/null and b/hello/obj/Debug/net6.0/ref/hello.dll differ
diff --git a/hello/obj/Debug/net6.0/refint/hello.dll b/hello/obj/Debug/net6.0/refint/hello.dll
new file mode 100644
index 0000000..83605ef
Binary files /dev/null and b/hello/obj/Debug/net6.0/refint/hello.dll differ
diff --git a/hello/obj/hello.csproj.nuget.dgspec.json b/hello/obj/hello.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..f42e964
--- /dev/null
+++ b/hello/obj/hello.csproj.nuget.dgspec.json
@@ -0,0 +1,63 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\User\\source\\repos\\hello\\hello.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\User\\source\\repos\\hello\\hello.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\User\\source\\repos\\hello\\hello.csproj",
+ "projectName": "hello",
+ "projectPath": "C:\\Users\\User\\source\\repos\\hello\\hello.csproj",
+ "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\User\\source\\repos\\hello\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.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",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/hello/obj/hello.csproj.nuget.g.props b/hello/obj/hello.csproj.nuget.g.props
new file mode 100644
index 0000000..23eadea
--- /dev/null
+++ b/hello/obj/hello.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\User\.nuget\packages\
+ PackageReference
+ 6.5.0
+
+
+
+
+
\ No newline at end of file
diff --git a/hello/obj/hello.csproj.nuget.g.targets b/hello/obj/hello.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/hello/obj/hello.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/hello/obj/project.assets.json b/hello/obj/project.assets.json
new file mode 100644
index 0000000..2c94f55
--- /dev/null
+++ b/hello/obj/project.assets.json
@@ -0,0 +1,68 @@
+{
+ "version": 3,
+ "targets": {
+ "net6.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net6.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\User\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\User\\source\\repos\\hello\\hello.csproj",
+ "projectName": "hello",
+ "projectPath": "C:\\Users\\User\\source\\repos\\hello\\hello.csproj",
+ "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\User\\source\\repos\\hello\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.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",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/hello/obj/project.nuget.cache b/hello/obj/project.nuget.cache
new file mode 100644
index 0000000..26a7ea9
--- /dev/null
+++ b/hello/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "ZsdbGZsQIyf5bxlQWNYvnZpr+joKFCVAzr0Wc9uVcsTi5X8B1uyX6E1gg4TXMxMJIHXB1PyRdYvsTPR2/2ehRA==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\User\\source\\repos\\hello\\hello.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
--
cgit 1.4.1