summary refs log tree commit diff
path: root/io
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-08 04:13:03 +0000
commit212a8c3926d835e3abe5abaf9744945ec78aa158 (patch)
tree895bec2e78bac7155fdd68f56b2aa5eb1abd85db /io
parentclicker (diff)
downloadcs-212a8c3926d835e3abe5abaf9744945ec78aa158.tar
cs-212a8c3926d835e3abe5abaf9744945ec78aa158.tar.gz
cs-212a8c3926d835e3abe5abaf9744945ec78aa158.tar.bz2
cs-212a8c3926d835e3abe5abaf9744945ec78aa158.tar.xz
cs-212a8c3926d835e3abe5abaf9744945ec78aa158.zip
io
Diffstat (limited to 'io')
-rw-r--r--io/IO.csproj10
-rw-r--r--io/Program.cs22
-rw-r--r--io/bin/Debug/net6.0/IO.deps.json23
-rw-r--r--io/bin/Debug/net6.0/IO.dllbin0 -> 4608 bytes
-rw-r--r--io/bin/Debug/net6.0/IO.exebin0 -> 147968 bytes
-rw-r--r--io/bin/Debug/net6.0/IO.pdbbin0 -> 10500 bytes
-rw-r--r--io/bin/Debug/net6.0/IO.runtimeconfig.json9
-rw-r--r--io/bin/Debug/net7.0/IO.deps.json23
-rw-r--r--io/bin/Debug/net7.0/IO.dllbin0 -> 5120 bytes
-rw-r--r--io/bin/Debug/net7.0/IO.exebin0 -> 154624 bytes
-rw-r--r--io/bin/Debug/net7.0/IO.pdbbin0 -> 10764 bytes
-rw-r--r--io/bin/Debug/net7.0/IO.runtimeconfig.json9
-rw-r--r--io/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs4
-rw-r--r--io/obj/Debug/net6.0/IO.AssemblyInfo.cs22
-rw-r--r--io/obj/Debug/net6.0/IO.AssemblyInfoInputs.cache1
-rw-r--r--io/obj/Debug/net6.0/IO.GeneratedMSBuildEditorConfig.editorconfig10
-rw-r--r--io/obj/Debug/net6.0/IO.GlobalUsings.g.cs8
-rw-r--r--io/obj/Debug/net6.0/IO.assets.cachebin0 -> 139 bytes
-rw-r--r--io/obj/Debug/net6.0/IO.csproj.AssemblyReference.cachebin0 -> 73508 bytes
-rw-r--r--io/obj/Debug/net6.0/IO.csproj.CoreCompileInputs.cache1
-rw-r--r--io/obj/Debug/net6.0/IO.csproj.FileListAbsolute.txt15
-rw-r--r--io/obj/Debug/net6.0/IO.dllbin0 -> 4608 bytes
-rw-r--r--io/obj/Debug/net6.0/IO.genruntimeconfig.cache1
-rw-r--r--io/obj/Debug/net6.0/IO.pdbbin0 -> 10500 bytes
-rw-r--r--io/obj/Debug/net6.0/apphost.exebin0 -> 147968 bytes
-rw-r--r--io/obj/Debug/net6.0/ref/IO.dllbin0 -> 5120 bytes
-rw-r--r--io/obj/Debug/net6.0/refint/IO.dllbin0 -> 5120 bytes
-rw-r--r--io/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs4
-rw-r--r--io/obj/Debug/net7.0/IO.AssemblyInfo.cs22
-rw-r--r--io/obj/Debug/net7.0/IO.AssemblyInfoInputs.cache1
-rw-r--r--io/obj/Debug/net7.0/IO.GeneratedMSBuildEditorConfig.editorconfig11
-rw-r--r--io/obj/Debug/net7.0/IO.GlobalUsings.g.cs8
-rw-r--r--io/obj/Debug/net7.0/IO.assets.cachebin0 -> 151 bytes
-rw-r--r--io/obj/Debug/net7.0/IO.csproj.AssemblyReference.cachebin0 -> 75259 bytes
-rw-r--r--io/obj/Debug/net7.0/IO.csproj.CoreCompileInputs.cache1
-rw-r--r--io/obj/Debug/net7.0/IO.csproj.FileListAbsolute.txt15
-rw-r--r--io/obj/Debug/net7.0/IO.dllbin0 -> 5120 bytes
-rw-r--r--io/obj/Debug/net7.0/IO.genruntimeconfig.cache1
-rw-r--r--io/obj/Debug/net7.0/IO.pdbbin0 -> 10764 bytes
-rw-r--r--io/obj/Debug/net7.0/apphost.exebin0 -> 154624 bytes
-rw-r--r--io/obj/Debug/net7.0/ref/IO.dllbin0 -> 5632 bytes
-rw-r--r--io/obj/Debug/net7.0/refint/IO.dllbin0 -> 5632 bytes
-rw-r--r--io/obj/IO.csproj.nuget.dgspec.json61
-rw-r--r--io/obj/IO.csproj.nuget.g.props15
-rw-r--r--io/obj/IO.csproj.nuget.g.targets2
-rw-r--r--io/obj/project.assets.json66
-rw-r--r--io/obj/project.nuget.cache8
47 files changed, 373 insertions, 0 deletions
diff --git a/io/IO.csproj b/io/IO.csproj
new file mode 100644
index 0000000..40c60dd
--- /dev/null
+++ b/io/IO.csproj
@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">

+

+  <PropertyGroup>

+    <OutputType>Exe</OutputType>

+    <TargetFramework>net6.0</TargetFramework>

+    <ImplicitUsings>enable</ImplicitUsings>

+    <Nullable>enable</Nullable>

+  </PropertyGroup>

+

+</Project>

diff --git a/io/Program.cs b/io/Program.cs
new file mode 100644
index 0000000..fce6910
--- /dev/null
+++ b/io/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.IO;

+

+string file = "C:/tmp/io.txt";

+

+StreamWriter writer = File.CreateText(file);

+for(int i=1; i<=50; i++)

+{

+	writer.WriteLine(i);

+}

+writer.Close();

+

+StreamReader reader = File.OpenText(file);

+string line = reader.ReadLine();

+for(int  i=0; line != null; i++, line = reader.ReadLine())

+{

+	if(i % 5 == 0)

+		Console.Read();

+	Console.WriteLine(line);

+}

+reader.Close();

+File.Delete(file);
\ No newline at end of file
diff --git a/io/bin/Debug/net6.0/IO.deps.json b/io/bin/Debug/net6.0/IO.deps.json
new file mode 100644
index 0000000..f67ea1f
--- /dev/null
+++ b/io/bin/Debug/net6.0/IO.deps.json
@@ -0,0 +1,23 @@
+{

+  "runtimeTarget": {

+    "name": ".NETCoreApp,Version=v6.0",

+    "signature": ""

+  },

+  "compilationOptions": {},

+  "targets": {

+    ".NETCoreApp,Version=v6.0": {

+      "IO/1.0.0": {

+        "runtime": {

+          "IO.dll": {}

+        }

+      }

+    }

+  },

+  "libraries": {

+    "IO/1.0.0": {

+      "type": "project",

+      "serviceable": false,

+      "sha512": ""

+    }

+  }

+}
\ No newline at end of file
diff --git a/io/bin/Debug/net6.0/IO.dll b/io/bin/Debug/net6.0/IO.dll
new file mode 100644
index 0000000..30a76cf
--- /dev/null
+++ b/io/bin/Debug/net6.0/IO.dll
Binary files differdiff --git a/io/bin/Debug/net6.0/IO.exe b/io/bin/Debug/net6.0/IO.exe
new file mode 100644
index 0000000..317d8a5
--- /dev/null
+++ b/io/bin/Debug/net6.0/IO.exe
Binary files differdiff --git a/io/bin/Debug/net6.0/IO.pdb b/io/bin/Debug/net6.0/IO.pdb
new file mode 100644
index 0000000..41f99ff
--- /dev/null
+++ b/io/bin/Debug/net6.0/IO.pdb
Binary files differdiff --git a/io/bin/Debug/net6.0/IO.runtimeconfig.json b/io/bin/Debug/net6.0/IO.runtimeconfig.json
new file mode 100644
index 0000000..4e96a56
--- /dev/null
+++ b/io/bin/Debug/net6.0/IO.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/io/bin/Debug/net7.0/IO.deps.json b/io/bin/Debug/net7.0/IO.deps.json
new file mode 100644
index 0000000..9d7c842
--- /dev/null
+++ b/io/bin/Debug/net7.0/IO.deps.json
@@ -0,0 +1,23 @@
+{

+  "runtimeTarget": {

+    "name": ".NETCoreApp,Version=v7.0",

+    "signature": ""

+  },

+  "compilationOptions": {},

+  "targets": {

+    ".NETCoreApp,Version=v7.0": {

+      "IO/1.0.0": {

+        "runtime": {

+          "IO.dll": {}

+        }

+      }

+    }

+  },

+  "libraries": {

+    "IO/1.0.0": {

+      "type": "project",

+      "serviceable": false,

+      "sha512": ""

+    }

+  }

+}
\ No newline at end of file
diff --git a/io/bin/Debug/net7.0/IO.dll b/io/bin/Debug/net7.0/IO.dll
new file mode 100644
index 0000000..c33e2d5
--- /dev/null
+++ b/io/bin/Debug/net7.0/IO.dll
Binary files differdiff --git a/io/bin/Debug/net7.0/IO.exe b/io/bin/Debug/net7.0/IO.exe
new file mode 100644
index 0000000..fc2851a
--- /dev/null
+++ b/io/bin/Debug/net7.0/IO.exe
Binary files differdiff --git a/io/bin/Debug/net7.0/IO.pdb b/io/bin/Debug/net7.0/IO.pdb
new file mode 100644
index 0000000..2cd6f0c
--- /dev/null
+++ b/io/bin/Debug/net7.0/IO.pdb
Binary files differdiff --git a/io/bin/Debug/net7.0/IO.runtimeconfig.json b/io/bin/Debug/net7.0/IO.runtimeconfig.json
new file mode 100644
index 0000000..f78f3ba
--- /dev/null
+++ b/io/bin/Debug/net7.0/IO.runtimeconfig.json
@@ -0,0 +1,9 @@
+{

+  "runtimeOptions": {

+    "tfm": "net7.0",

+    "framework": {

+      "name": "Microsoft.NETCore.App",

+      "version": "7.0.0"

+    }

+  }

+}
\ No newline at end of file
diff --git a/io/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/io/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..32c95f9
--- /dev/null
+++ b/io/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 = "")]

diff --git a/io/obj/Debug/net6.0/IO.AssemblyInfo.cs b/io/obj/Debug/net6.0/IO.AssemblyInfo.cs
new file mode 100644
index 0000000..6c8facf
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.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("IO")]

+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]

+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]

+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]

+[assembly: System.Reflection.AssemblyProductAttribute("IO")]

+[assembly: System.Reflection.AssemblyTitleAttribute("IO")]

+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

+

+// Generated by the MSBuild WriteCodeFragment class.

+

diff --git a/io/obj/Debug/net6.0/IO.AssemblyInfoInputs.cache b/io/obj/Debug/net6.0/IO.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..1ea3176
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+5b91be626b6d408b53a9585aee00258d98d3db6a

diff --git a/io/obj/Debug/net6.0/IO.GeneratedMSBuildEditorConfig.editorconfig b/io/obj/Debug/net6.0/IO.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..c188963
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.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 = IO

+build_property.ProjectDir = D:\User\source\repos\IO\

diff --git a/io/obj/Debug/net6.0/IO.GlobalUsings.g.cs b/io/obj/Debug/net6.0/IO.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.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;

diff --git a/io/obj/Debug/net6.0/IO.assets.cache b/io/obj/Debug/net6.0/IO.assets.cache
new file mode 100644
index 0000000..af2ef09
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.assets.cache
Binary files differdiff --git a/io/obj/Debug/net6.0/IO.csproj.AssemblyReference.cache b/io/obj/Debug/net6.0/IO.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..a13f1c6
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.csproj.AssemblyReference.cache
Binary files differdiff --git a/io/obj/Debug/net6.0/IO.csproj.CoreCompileInputs.cache b/io/obj/Debug/net6.0/IO.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..a9208a1
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+95b030ae943048f66b2da28a1b7965f860e68367

diff --git a/io/obj/Debug/net6.0/IO.csproj.FileListAbsolute.txt b/io/obj/Debug/net6.0/IO.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..777ce32
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+D:\User\source\repos\IO\bin\Debug\net6.0\IO.exe

+D:\User\source\repos\IO\bin\Debug\net6.0\IO.deps.json

+D:\User\source\repos\IO\bin\Debug\net6.0\IO.runtimeconfig.json

+D:\User\source\repos\IO\bin\Debug\net6.0\IO.dll

+D:\User\source\repos\IO\bin\Debug\net6.0\IO.pdb

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.csproj.AssemblyReference.cache

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.GeneratedMSBuildEditorConfig.editorconfig

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.AssemblyInfoInputs.cache

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.AssemblyInfo.cs

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.csproj.CoreCompileInputs.cache

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.dll

+D:\User\source\repos\IO\obj\Debug\net6.0\refint\IO.dll

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.pdb

+D:\User\source\repos\IO\obj\Debug\net6.0\IO.genruntimeconfig.cache

+D:\User\source\repos\IO\obj\Debug\net6.0\ref\IO.dll

diff --git a/io/obj/Debug/net6.0/IO.dll b/io/obj/Debug/net6.0/IO.dll
new file mode 100644
index 0000000..30a76cf
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.dll
Binary files differdiff --git a/io/obj/Debug/net6.0/IO.genruntimeconfig.cache b/io/obj/Debug/net6.0/IO.genruntimeconfig.cache
new file mode 100644
index 0000000..43b6ba1
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.genruntimeconfig.cache
@@ -0,0 +1 @@
+d5b1a7547f6f2f866d4145fa3227533ba5f91d08

diff --git a/io/obj/Debug/net6.0/IO.pdb b/io/obj/Debug/net6.0/IO.pdb
new file mode 100644
index 0000000..41f99ff
--- /dev/null
+++ b/io/obj/Debug/net6.0/IO.pdb
Binary files differdiff --git a/io/obj/Debug/net6.0/apphost.exe b/io/obj/Debug/net6.0/apphost.exe
new file mode 100644
index 0000000..317d8a5
--- /dev/null
+++ b/io/obj/Debug/net6.0/apphost.exe
Binary files differdiff --git a/io/obj/Debug/net6.0/ref/IO.dll b/io/obj/Debug/net6.0/ref/IO.dll
new file mode 100644
index 0000000..fa1dfdc
--- /dev/null
+++ b/io/obj/Debug/net6.0/ref/IO.dll
Binary files differdiff --git a/io/obj/Debug/net6.0/refint/IO.dll b/io/obj/Debug/net6.0/refint/IO.dll
new file mode 100644
index 0000000..fa1dfdc
--- /dev/null
+++ b/io/obj/Debug/net6.0/refint/IO.dll
Binary files differdiff --git a/io/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/io/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..a9058da
--- /dev/null
+++ b/io/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+// <autogenerated />

+using System;

+using System.Reflection;

+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

diff --git a/io/obj/Debug/net7.0/IO.AssemblyInfo.cs b/io/obj/Debug/net7.0/IO.AssemblyInfo.cs
new file mode 100644
index 0000000..6c8facf
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.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("IO")]

+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]

+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]

+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]

+[assembly: System.Reflection.AssemblyProductAttribute("IO")]

+[assembly: System.Reflection.AssemblyTitleAttribute("IO")]

+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

+

+// Generated by the MSBuild WriteCodeFragment class.

+

diff --git a/io/obj/Debug/net7.0/IO.AssemblyInfoInputs.cache b/io/obj/Debug/net7.0/IO.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..1ea3176
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+5b91be626b6d408b53a9585aee00258d98d3db6a

diff --git a/io/obj/Debug/net7.0/IO.GeneratedMSBuildEditorConfig.editorconfig b/io/obj/Debug/net7.0/IO.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..f5591d9
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,11 @@
+is_global = true

+build_property.TargetFramework = net7.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 = IO

+build_property.ProjectDir = C:\Users\user\source\repos\IO\

diff --git a/io/obj/Debug/net7.0/IO.GlobalUsings.g.cs b/io/obj/Debug/net7.0/IO.GlobalUsings.g.cs
new file mode 100644
index 0000000..ac22929
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.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;

diff --git a/io/obj/Debug/net7.0/IO.assets.cache b/io/obj/Debug/net7.0/IO.assets.cache
new file mode 100644
index 0000000..2972f68
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.assets.cache
Binary files differdiff --git a/io/obj/Debug/net7.0/IO.csproj.AssemblyReference.cache b/io/obj/Debug/net7.0/IO.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..194117d
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.csproj.AssemblyReference.cache
Binary files differdiff --git a/io/obj/Debug/net7.0/IO.csproj.CoreCompileInputs.cache b/io/obj/Debug/net7.0/IO.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..0c4203c
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+9ff3a370bb44da4162029ae05be8ab0086ba8601

diff --git a/io/obj/Debug/net7.0/IO.csproj.FileListAbsolute.txt b/io/obj/Debug/net7.0/IO.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..89bc9e6
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+C:\Users\User\source\repos\IO\bin\Debug\net7.0\IO.exe

+C:\Users\User\source\repos\IO\bin\Debug\net7.0\IO.deps.json

+C:\Users\User\source\repos\IO\bin\Debug\net7.0\IO.runtimeconfig.json

+C:\Users\User\source\repos\IO\bin\Debug\net7.0\IO.dll

+C:\Users\User\source\repos\IO\bin\Debug\net7.0\IO.pdb

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.csproj.AssemblyReference.cache

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.GeneratedMSBuildEditorConfig.editorconfig

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.AssemblyInfoInputs.cache

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.AssemblyInfo.cs

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.csproj.CoreCompileInputs.cache

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.dll

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\refint\IO.dll

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.pdb

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\IO.genruntimeconfig.cache

+C:\Users\User\source\repos\IO\obj\Debug\net7.0\ref\IO.dll

diff --git a/io/obj/Debug/net7.0/IO.dll b/io/obj/Debug/net7.0/IO.dll
new file mode 100644
index 0000000..c33e2d5
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.dll
Binary files differdiff --git a/io/obj/Debug/net7.0/IO.genruntimeconfig.cache b/io/obj/Debug/net7.0/IO.genruntimeconfig.cache
new file mode 100644
index 0000000..3f339db
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.genruntimeconfig.cache
@@ -0,0 +1 @@
+e7f9e26023222dc896872f7030283aeeeca84303

diff --git a/io/obj/Debug/net7.0/IO.pdb b/io/obj/Debug/net7.0/IO.pdb
new file mode 100644
index 0000000..2cd6f0c
--- /dev/null
+++ b/io/obj/Debug/net7.0/IO.pdb
Binary files differdiff --git a/io/obj/Debug/net7.0/apphost.exe b/io/obj/Debug/net7.0/apphost.exe
new file mode 100644
index 0000000..fc2851a
--- /dev/null
+++ b/io/obj/Debug/net7.0/apphost.exe
Binary files differdiff --git a/io/obj/Debug/net7.0/ref/IO.dll b/io/obj/Debug/net7.0/ref/IO.dll
new file mode 100644
index 0000000..30740b9
--- /dev/null
+++ b/io/obj/Debug/net7.0/ref/IO.dll
Binary files differdiff --git a/io/obj/Debug/net7.0/refint/IO.dll b/io/obj/Debug/net7.0/refint/IO.dll
new file mode 100644
index 0000000..30740b9
--- /dev/null
+++ b/io/obj/Debug/net7.0/refint/IO.dll
Binary files differdiff --git a/io/obj/IO.csproj.nuget.dgspec.json b/io/obj/IO.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..54f73d3
--- /dev/null
+++ b/io/obj/IO.csproj.nuget.dgspec.json
@@ -0,0 +1,61 @@
+{

+  "format": 1,

+  "restore": {

+    "D:\\User\\source\\repos\\IO\\IO.csproj": {}

+  },

+  "projects": {

+    "D:\\User\\source\\repos\\IO\\IO.csproj": {

+      "version": "1.0.0",

+      "restore": {

+        "projectUniqueName": "D:\\User\\source\\repos\\IO\\IO.csproj",

+        "projectName": "IO",

+        "projectPath": "D:\\User\\source\\repos\\IO\\IO.csproj",

+        "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",

+        "outputPath": "D:\\User\\source\\repos\\IO\\obj\\",

+        "projectStyle": "PackageReference",

+        "configFilePaths": [

+          "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config"

+        ],

+        "originalTargetFrameworks": [

+          "net6.0"

+        ],

+        "sources": {

+          "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\\6.0.407\\RuntimeIdentifierGraph.json"

+        }

+      }

+    }

+  }

+}
\ No newline at end of file
diff --git a/io/obj/IO.csproj.nuget.g.props b/io/obj/IO.csproj.nuget.g.props
new file mode 100644
index 0000000..dc9aeb7
--- /dev/null
+++ b/io/obj/IO.csproj.nuget.g.props
@@ -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\User\.nuget\packages\</NuGetPackageFolders>

+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>

+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.2</NuGetToolVersion>

+  </PropertyGroup>

+  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">

+    <SourceRoot Include="C:\Users\User\.nuget\packages\" />

+  </ItemGroup>

+</Project>
\ No newline at end of file
diff --git a/io/obj/IO.csproj.nuget.g.targets b/io/obj/IO.csproj.nuget.g.targets
new file mode 100644
index 0000000..35a7576
--- /dev/null
+++ b/io/obj/IO.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" />
\ No newline at end of file
diff --git a/io/obj/project.assets.json b/io/obj/project.assets.json
new file mode 100644
index 0000000..66906f7
--- /dev/null
+++ b/io/obj/project.assets.json
@@ -0,0 +1,66 @@
+{

+  "version": 3,

+  "targets": {

+    "net6.0": {}

+  },

+  "libraries": {},

+  "projectFileDependencyGroups": {

+    "net6.0": []

+  },

+  "packageFolders": {

+    "C:\\Users\\User\\.nuget\\packages\\": {}

+  },

+  "project": {

+    "version": "1.0.0",

+    "restore": {

+      "projectUniqueName": "D:\\User\\source\\repos\\IO\\IO.csproj",

+      "projectName": "IO",

+      "projectPath": "D:\\User\\source\\repos\\IO\\IO.csproj",

+      "packagesPath": "C:\\Users\\User\\.nuget\\packages\\",

+      "outputPath": "D:\\User\\source\\repos\\IO\\obj\\",

+      "projectStyle": "PackageReference",

+      "configFilePaths": [

+        "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config"

+      ],

+      "originalTargetFrameworks": [

+        "net6.0"

+      ],

+      "sources": {

+        "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\\6.0.407\\RuntimeIdentifierGraph.json"

+      }

+    }

+  }

+}
\ No newline at end of file
diff --git a/io/obj/project.nuget.cache b/io/obj/project.nuget.cache
new file mode 100644
index 0000000..d520d03
--- /dev/null
+++ b/io/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{

+  "version": 2,

+  "dgSpecHash": "HnEUrs1d4XYXZfhbZttdEhR5TRs9ZVv8NQyY7mdn3rGz90vXM++/0iW0gZ5D7F9UUnb7z7jrp89pxUB7aL1Tgg==",

+  "success": true,

+  "projectFilePath": "D:\\User\\source\\repos\\IO\\IO.csproj",

+  "expectedPackageFiles": [],

+  "logs": []

+}
\ No newline at end of file