diff --git a/Week 13/ApplicationEvents.vb b/Week 13/ApplicationEvents.vb new file mode 100644 index 0000000..f9974e1 --- /dev/null +++ b/Week 13/ApplicationEvents.vb @@ -0,0 +1,29 @@ +Imports Microsoft.VisualBasic.ApplicationServices + +Namespace My + ' The following events are available for MyApplication: + ' Startup: Raised when the application starts, before the startup form is created. + ' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally. + ' UnhandledException: Raised if the application encounters an unhandled exception. + ' StartupNextInstance: Raised when launching a single-instance application and the application is already active. + ' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected. + + ' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application. + + ' Example: + ' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults + ' + ' ' Setting the application-wide default Font: + ' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular) + ' + ' ' Setting the HighDpiMode for the Application: + ' e.HighDpiMode = HighDpiMode.PerMonitorV2 + ' + ' ' If a splash dialog is used, this sets the minimum display time: + ' e.MinimumSplashScreenDisplayTime = 4000 + ' End Sub + + Partial Friend Class MyApplication + + End Class +End Namespace diff --git a/Week 13/Form1.Designer.vb b/Week 13/Form1.Designer.vb new file mode 100644 index 0000000..5294489 --- /dev/null +++ b/Week 13/Form1.Designer.vb @@ -0,0 +1,62 @@ + +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + + Private Sub InitializeComponent() + Button1 = New Button() + TextBox1 = New TextBox() + SuspendLayout() + ' + ' Button1 + ' + Button1.Location = New Point(96, 88) + Button1.Name = "Button1" + Button1.Size = New Size(75, 23) + Button1.TabIndex = 0 + Button1.Text = "Save" + Button1.UseVisualStyleBackColor = True + ' + ' TextBox1 + ' + TextBox1.Location = New Point(0, 8) + TextBox1.Multiline = True + TextBox1.Name = "TextBox1" + TextBox1.Size = New Size(296, 48) + TextBox1.TabIndex = 1 + ' + ' Form1 + ' + AutoScaleDimensions = New SizeF(7F, 15F) + AutoScaleMode = AutoScaleMode.Font + ClientSize = New Size(297, 111) + Controls.Add(TextBox1) + Controls.Add(Button1) + Name = "Form1" + Text = "Form1" + ResumeLayout(False) + PerformLayout() + End Sub + + Friend WithEvents Button1 As Button + Friend WithEvents TextBox1 As TextBox + +End Class diff --git a/Week 13/Form1.resx b/Week 13/Form1.resx new file mode 100644 index 0000000..b92c163 --- /dev/null +++ b/Week 13/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Week 13/Form1.vb b/Week 13/Form1.vb new file mode 100644 index 0000000..4942f8c --- /dev/null +++ b/Week 13/Form1.vb @@ -0,0 +1,15 @@ +Public Class Form1 + Private datatable As New DataTable("YRC") + + + Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click + datatable.TableName = "YRC_Table" + datatable.Columns.Add("YRC_Column") + datatable.Rows.Add(TextBox1.Text) + datatable.WriteXml("YourRandomCrap.xml") + Using dataset As New DataSet + dataset.ReadXml("YourRandomCrap.xml") + datatable = dataset.Tables(0) + End Using + End Sub +End Class diff --git a/Week 13/My Project/Application.Designer.vb b/Week 13/My Project/Application.Designer.vb new file mode 100644 index 0000000..eb33ae6 --- /dev/null +++ b/Week 13/My Project/Application.Designer.vb @@ -0,0 +1,37 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = False + Me.EnableVisualStyles = True + Me.SaveMySettingsOnExit = True + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Form1 + End Sub + End Class +End Namespace diff --git a/Week 13/My Project/Application.myapp b/Week 13/My Project/Application.myapp new file mode 100644 index 0000000..fbb5858 --- /dev/null +++ b/Week 13/My Project/Application.myapp @@ -0,0 +1,10 @@ + + + true + Form1 + false + 0 + true + 0 + true + \ No newline at end of file diff --git a/Week 13/Week 13.sln b/Week 13/Week 13.sln new file mode 100644 index 0000000..80997f3 --- /dev/null +++ b/Week 13/Week 13.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Week 13", "Week 13.vbproj", "{DF776307-D13A-416D-8C32-975A4C38A23F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DF776307-D13A-416D-8C32-975A4C38A23F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF776307-D13A-416D-8C32-975A4C38A23F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF776307-D13A-416D-8C32-975A4C38A23F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF776307-D13A-416D-8C32-975A4C38A23F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {65159717-304B-461B-A948-8CA8FB518A69} + EndGlobalSection +EndGlobal diff --git a/Week 13/Week 13.vbproj b/Week 13/Week 13.vbproj new file mode 100644 index 0000000..a18304d --- /dev/null +++ b/Week 13/Week 13.vbproj @@ -0,0 +1,33 @@ + + + + WinExe + net8.0-windows + Week_13 + Sub Main + true + WindowsForms + + + + + + + + + + + True + True + Application.myapp + + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + + \ No newline at end of file diff --git a/Week 13/Week 13.vbproj.user b/Week 13/Week 13.vbproj.user new file mode 100644 index 0000000..2cfee94 --- /dev/null +++ b/Week 13/Week 13.vbproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + \ No newline at end of file diff --git a/Week 13/bin/Debug/net8.0-windows/Week 13.deps.json b/Week 13/bin/Debug/net8.0-windows/Week 13.deps.json new file mode 100644 index 0000000..37c2443 --- /dev/null +++ b/Week 13/bin/Debug/net8.0-windows/Week 13.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Week 13/1.0.0": { + "runtime": { + "Week 13.dll": {} + } + } + } + }, + "libraries": { + "Week 13/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Week 13/bin/Debug/net8.0-windows/Week 13.dll b/Week 13/bin/Debug/net8.0-windows/Week 13.dll new file mode 100644 index 0000000..c2cae7c Binary files /dev/null and b/Week 13/bin/Debug/net8.0-windows/Week 13.dll differ diff --git a/Week 13/bin/Debug/net8.0-windows/Week 13.exe b/Week 13/bin/Debug/net8.0-windows/Week 13.exe new file mode 100644 index 0000000..c8a4c59 Binary files /dev/null and b/Week 13/bin/Debug/net8.0-windows/Week 13.exe differ diff --git a/Week 13/bin/Debug/net8.0-windows/Week 13.pdb b/Week 13/bin/Debug/net8.0-windows/Week 13.pdb new file mode 100644 index 0000000..09e72df Binary files /dev/null and b/Week 13/bin/Debug/net8.0-windows/Week 13.pdb differ diff --git a/Week 13/bin/Debug/net8.0-windows/Week 13.runtimeconfig.json b/Week 13/bin/Debug/net8.0-windows/Week 13.runtimeconfig.json new file mode 100644 index 0000000..5a99533 --- /dev/null +++ b/Week 13/bin/Debug/net8.0-windows/Week 13.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + } + } +} \ No newline at end of file diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfo.vb b/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfo.vb new file mode 100644 index 0000000..f996aae --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfo.vb @@ -0,0 +1,26 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Reflection + + +'Generated by the MSBuild WriteCodeFragment class. diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfoInputs.cache b/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfoInputs.cache new file mode 100644 index 0000000..34943d7 --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f1164e5d756a5b91e661945ac01f6b9796b3068b3dcfa7ce2a1ec4c4dbf1c98b diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.GeneratedMSBuildEditorConfig.editorconfig b/Week 13/obj/Debug/net8.0-windows/Week 13.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fffd264 --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = Sub Main +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Week_13 +build_property.ProjectDir = C:\Users\jamil\source\repos\Week 13\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.assets.cache b/Week 13/obj/Debug/net8.0-windows/Week 13.assets.cache new file mode 100644 index 0000000..e2ad2fa Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/Week 13.assets.cache differ diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.designer.deps.json b/Week 13/obj/Debug/net8.0-windows/Week 13.designer.deps.json new file mode 100644 index 0000000..8e9be8a --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.designer.runtimeconfig.json b/Week 13/obj/Debug/net8.0-windows/Week 13.designer.runtimeconfig.json new file mode 100644 index 0000000..1fd957b --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.designer.runtimeconfig.json @@ -0,0 +1,24 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\jamil\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\jamil\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.dll b/Week 13/obj/Debug/net8.0-windows/Week 13.dll new file mode 100644 index 0000000..c2cae7c Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/Week 13.dll differ diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.genruntimeconfig.cache b/Week 13/obj/Debug/net8.0-windows/Week 13.genruntimeconfig.cache new file mode 100644 index 0000000..944a4ac --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.genruntimeconfig.cache @@ -0,0 +1 @@ +bcbae5f96d4f02914c7e065d2f2806a89d43e76db34fcf0a894dffd7a78a9e0b diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.pdb b/Week 13/obj/Debug/net8.0-windows/Week 13.pdb new file mode 100644 index 0000000..09e72df Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/Week 13.pdb differ diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.BuildWithSkipAnalyzers b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.CoreCompileInputs.cache b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c09c113 --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c7b68a9dccc67e82079a428c4f9500cefecc6445ae59e2dcd6588f71994fb175 diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.FileListAbsolute.txt b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..3c71088 --- /dev/null +++ b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +C:\Users\jamil\source\repos\Week 13\bin\Debug\net8.0-windows\Week 13.exe +C:\Users\jamil\source\repos\Week 13\bin\Debug\net8.0-windows\Week 13.deps.json +C:\Users\jamil\source\repos\Week 13\bin\Debug\net8.0-windows\Week 13.runtimeconfig.json +C:\Users\jamil\source\repos\Week 13\bin\Debug\net8.0-windows\Week 13.dll +C:\Users\jamil\source\repos\Week 13\bin\Debug\net8.0-windows\Week 13.pdb +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week_13.Form1.resources +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.vbproj.GenerateResource.cache +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.AssemblyInfoInputs.cache +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.AssemblyInfo.vb +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.vbproj.CoreCompileInputs.cache +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.dll +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\refint\Week 13.dll +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.pdb +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\Week 13.genruntimeconfig.cache +C:\Users\jamil\source\repos\Week 13\obj\Debug\net8.0-windows\ref\Week 13.dll diff --git a/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.GenerateResource.cache b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c71b587 Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/Week 13.vbproj.GenerateResource.cache differ diff --git a/Week 13/obj/Debug/net8.0-windows/Week_13.Form1.resources b/Week 13/obj/Debug/net8.0-windows/Week_13.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/Week_13.Form1.resources differ diff --git a/Week 13/obj/Debug/net8.0-windows/apphost.exe b/Week 13/obj/Debug/net8.0-windows/apphost.exe new file mode 100644 index 0000000..c8a4c59 Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/Week 13/obj/Debug/net8.0-windows/ref/Week 13.dll b/Week 13/obj/Debug/net8.0-windows/ref/Week 13.dll new file mode 100644 index 0000000..6798bfd Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/ref/Week 13.dll differ diff --git a/Week 13/obj/Debug/net8.0-windows/refint/Week 13.dll b/Week 13/obj/Debug/net8.0-windows/refint/Week 13.dll new file mode 100644 index 0000000..6798bfd Binary files /dev/null and b/Week 13/obj/Debug/net8.0-windows/refint/Week 13.dll differ diff --git a/Week 13/obj/Week 13.vbproj.nuget.dgspec.json b/Week 13/obj/Week 13.vbproj.nuget.dgspec.json new file mode 100644 index 0000000..457510d --- /dev/null +++ b/Week 13/obj/Week 13.vbproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj": {} + }, + "projects": { + "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj", + "projectName": "Week 13", + "projectPath": "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj", + "packagesPath": "C:\\Users\\jamil\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jamil\\source\\repos\\Week 13\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\jamil\\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": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.303/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Week 13/obj/Week 13.vbproj.nuget.g.props b/Week 13/obj/Week 13.vbproj.nuget.g.props new file mode 100644 index 0000000..1338756 --- /dev/null +++ b/Week 13/obj/Week 13.vbproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\jamil\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.2 + + + + + + \ No newline at end of file diff --git a/Week 13/obj/Week 13.vbproj.nuget.g.targets b/Week 13/obj/Week 13.vbproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/Week 13/obj/Week 13.vbproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Week 13/obj/project.assets.json b/Week 13/obj/project.assets.json new file mode 100644 index 0000000..39adb33 --- /dev/null +++ b/Week 13/obj/project.assets.json @@ -0,0 +1,82 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\jamil\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj", + "projectName": "Week 13", + "projectPath": "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj", + "packagesPath": "C:\\Users\\jamil\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jamil\\source\\repos\\Week 13\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\jamil\\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": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.303/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Week 13/obj/project.nuget.cache b/Week 13/obj/project.nuget.cache new file mode 100644 index 0000000..ce20976 --- /dev/null +++ b/Week 13/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "kfUAKEO8n0w=", + "success": true, + "projectFilePath": "C:\\Users\\jamil\\source\\repos\\Week 13\\Week 13.vbproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file