diff --git a/.vs/module1constructs/DesignTimeBuild/.dtbcache.v2 b/.vs/module1constructs/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 0000000..795aee2
Binary files /dev/null and b/.vs/module1constructs/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/module1constructs/v17/.futdcache.v1 b/.vs/module1constructs/v17/.futdcache.v1
new file mode 100644
index 0000000..26d8fe6
Binary files /dev/null and b/.vs/module1constructs/v17/.futdcache.v1 differ
diff --git a/.vs/module1constructs/v17/.suo b/.vs/module1constructs/v17/.suo
new file mode 100644
index 0000000..ae4466f
Binary files /dev/null and b/.vs/module1constructs/v17/.suo differ
diff --git a/SimpleConsoleIOapp/Program.cs b/SimpleConsoleIOapp/Program.cs
index cef9476..770bb3d 100644
--- a/SimpleConsoleIOapp/Program.cs
+++ b/SimpleConsoleIOapp/Program.cs
@@ -4,9 +4,27 @@ namespace SimpleConsoleIOapp
{
class Program
{
+ //Define Main() method.
static void Main(string[] args)
- {
- Console.WriteLine("Hello World!");
- }
+ {// Begining of Main() method.
+ Console.WriteLine("**** Basic IO ****");
+
+ // Call GetUserData() method.
+ GetUserData();
+ Console.ReadLine();
+
+ // Define GetUserData() method.
+ static void GetUserData()
+ {// Begining of GetUserData() method.
+ // Get name and age.
+ Console.Write("What is your name: ");
+ string userName = Console.ReadLine();
+ Console.Write("What is your age: ");
+ string userAge = Console.ReadLine();
+
+ //Echo to the Console.
+ Console.WriteLine("Hello {0}! You are {1} years old." , userName , userAge);
+ }// End of GetUserData() method.
+ }// End of Main() method.
}
}
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.deps.json b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.deps.json
new file mode 100644
index 0000000..a2f86f0
--- /dev/null
+++ b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v5.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v5.0": {
+ "SimpleConsoleIOapp/1.0.0": {
+ "runtime": {
+ "SimpleConsoleIOapp.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "SimpleConsoleIOapp/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.dll b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.dll
new file mode 100644
index 0000000..ac3822b
Binary files /dev/null and b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.dll differ
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.exe b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.exe
new file mode 100644
index 0000000..2699ae2
Binary files /dev/null and b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.exe differ
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.pdb b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.pdb
new file mode 100644
index 0000000..2ad30a5
Binary files /dev/null and b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.pdb differ
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.dev.json b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.dev.json
new file mode 100644
index 0000000..df83a3a
--- /dev/null
+++ b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.dev.json
@@ -0,0 +1,8 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Admin\\.nuget\\packages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.json b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.json
new file mode 100644
index 0000000..a8e7e82
--- /dev/null
+++ b/SimpleConsoleIOapp/bin/Debug/net5.0/SimpleConsoleIOapp.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "net5.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "5.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/SimpleConsoleIOapp/bin/Debug/net5.0/ref/SimpleConsoleIOapp.dll b/SimpleConsoleIOapp/bin/Debug/net5.0/ref/SimpleConsoleIOapp.dll
new file mode 100644
index 0000000..9782e39
Binary files /dev/null and b/SimpleConsoleIOapp/bin/Debug/net5.0/ref/SimpleConsoleIOapp.dll differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/SimpleConsoleIOapp/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2f7e5ec
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfo.cs b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfo.cs
new file mode 100644
index 0000000..bc01b11
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// 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("SimpleConsoleIOapp")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("SimpleConsoleIOapp")]
+[assembly: System.Reflection.AssemblyTitleAttribute("SimpleConsoleIOapp")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfoInputs.cache b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..b84ec9a
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+f4caaf41d5a229c6f4178fa9c6bff763cb1be047
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.GeneratedMSBuildEditorConfig.editorconfig b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..eed89ef
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,10 @@
+is_global = true
+build_property.TargetFramework = net5.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 = SimpleConsoleIOapp
+build_property.ProjectDir = D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.assets.cache b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.assets.cache
new file mode 100644
index 0000000..09db5fb
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.assets.cache differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.AssemblyReference.cache b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..5718a4b
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.AssemblyReference.cache differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.CoreCompileInputs.cache b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ff5648a
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+938112769cc55b91e4598a87f008bfe035e28dae
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.FileListAbsolute.txt b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..bfff31f
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.csproj.FileListAbsolute.txt
@@ -0,0 +1,16 @@
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.exe
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.deps.json
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.runtimeconfig.json
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.runtimeconfig.dev.json
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.dll
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\ref\SimpleConsoleIOapp.dll
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\bin\Debug\net5.0\SimpleConsoleIOapp.pdb
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.csproj.AssemblyReference.cache
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.GeneratedMSBuildEditorConfig.editorconfig
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.AssemblyInfoInputs.cache
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.AssemblyInfo.cs
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.csproj.CoreCompileInputs.cache
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.dll
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\ref\SimpleConsoleIOapp.dll
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.pdb
+D:\Allfiles\Mod01\src\LAVTTA-Module1-Constructs\SimpleConsoleIOapp\obj\Debug\net5.0\SimpleConsoleIOapp.genruntimeconfig.cache
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.dll b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.dll
new file mode 100644
index 0000000..ac3822b
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.dll differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.genruntimeconfig.cache b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.genruntimeconfig.cache
new file mode 100644
index 0000000..7759287
--- /dev/null
+++ b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.genruntimeconfig.cache
@@ -0,0 +1 @@
+e9703dd6e7809e1d6a8c1b9e3ef84e66764babad
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.pdb b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.pdb
new file mode 100644
index 0000000..2ad30a5
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/SimpleConsoleIOapp.pdb differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/apphost.exe b/SimpleConsoleIOapp/obj/Debug/net5.0/apphost.exe
new file mode 100644
index 0000000..2699ae2
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/apphost.exe differ
diff --git a/SimpleConsoleIOapp/obj/Debug/net5.0/ref/SimpleConsoleIOapp.dll b/SimpleConsoleIOapp/obj/Debug/net5.0/ref/SimpleConsoleIOapp.dll
new file mode 100644
index 0000000..9782e39
Binary files /dev/null and b/SimpleConsoleIOapp/obj/Debug/net5.0/ref/SimpleConsoleIOapp.dll differ
diff --git a/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.dgspec.json b/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.dgspec.json
index 70c7614..260d9b5 100644
--- a/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.dgspec.json
+++ b/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.dgspec.json
@@ -1,28 +1,21 @@
{
"format": 1,
"restore": {
- "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj": {}
+ "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj": {}
},
"projects": {
- "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj": {
+ "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
+ "projectUniqueName": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
"projectName": "SimpleConsoleIOapp",
- "projectPath": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
- "packagesPath": "C:\\Users\\david\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\obj\\",
+ "projectPath": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
+ "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
+ "outputPath": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\obj\\",
"projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
- ],
"configFilePaths": [
- "C:\\Users\\david\\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",
- "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
@@ -57,9 +50,21 @@
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
{
"name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[5.0.17, 5.0.17]"
+ "version": "[5.0.13, 5.0.13]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
}
],
"frameworkReferences": {
@@ -67,7 +72,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.107\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.g.props b/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.g.props
index f81e677..00ec8ef 100644
--- a/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.g.props
+++ b/SimpleConsoleIOapp/obj/SimpleConsoleIOapp.csproj.nuget.g.props
@@ -5,14 +5,11 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\david\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ C:\Users\Admin\.nuget\packages\
PackageReference
- 6.0.2
+ 6.0.1
-
-
-
-
+
\ No newline at end of file
diff --git a/SimpleConsoleIOapp/obj/project.assets.json b/SimpleConsoleIOapp/obj/project.assets.json
index 768d312..2a53120 100644
--- a/SimpleConsoleIOapp/obj/project.assets.json
+++ b/SimpleConsoleIOapp/obj/project.assets.json
@@ -8,30 +8,20 @@
"net5.0": []
},
"packageFolders": {
- "C:\\Users\\david\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {},
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ "C:\\Users\\Admin\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
+ "projectUniqueName": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
"projectName": "SimpleConsoleIOapp",
- "projectPath": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
- "packagesPath": "C:\\Users\\david\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\obj\\",
+ "projectPath": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
+ "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
+ "outputPath": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\obj\\",
"projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
- ],
"configFilePaths": [
- "C:\\Users\\david\\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",
- "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
@@ -66,9 +56,21 @@
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
{
"name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[5.0.17, 5.0.17]"
+ "version": "[5.0.13, 5.0.13]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Ref",
+ "version": "[5.0.0, 5.0.0]"
}
],
"frameworkReferences": {
@@ -76,7 +78,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.107\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/SimpleConsoleIOapp/obj/project.nuget.cache b/SimpleConsoleIOapp/obj/project.nuget.cache
index 4dce4a7..112b76f 100644
--- a/SimpleConsoleIOapp/obj/project.nuget.cache
+++ b/SimpleConsoleIOapp/obj/project.nuget.cache
@@ -1,10 +1,13 @@
{
"version": 2,
- "dgSpecHash": "dyHziCys+siTedJDXNSFwWcJxUk9ftTL4JWj62fpxdAzjGfrpfQcu+3wmGUyBWIA6HlkiNZQSuvI2cox3+R3cg==",
+ "dgSpecHash": "ugnppGo+tZlWS3zmfxwjw9VULl8OGtWfxqxWh4jF9jMf8GHZqM2dYd2FMZojDMWVHViWNxvJvDOnDhYP04zTtQ==",
"success": true,
- "projectFilePath": "C:\\Users\\david\\Desktop\\JVCSoCal_Vet\\Programming\\IntroProgrammingC_v2\\Mod1\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
+ "projectFilePath": "D:\\Allfiles\\Mod01\\src\\LAVTTA-Module1-Constructs\\SimpleConsoleIOapp\\SimpleConsoleIOapp.csproj",
"expectedPackageFiles": [
- "C:\\Users\\david\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.17\\microsoft.netcore.app.host.win-x64.5.0.17.nupkg.sha512"
+ "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.13\\microsoft.netcore.app.host.win-x64.5.0.13.nupkg.sha512",
+ "C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512",
+ "C:\\Users\\Admin\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
+ "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file