Init
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
113
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.Designer.cs
generated
Executable file
113
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.Designer.cs
generated
Executable file
@@ -0,0 +1,113 @@
|
||||
namespace lab_tutorial_2_1_Caleb_Fontenot
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.translationLabel = new System.Windows.Forms.TextBox();
|
||||
this.italianButton = new System.Windows.Forms.Button();
|
||||
this.spanishButton = new System.Windows.Forms.Button();
|
||||
this.germanButton = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(29, 19);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(253, 15);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "Select a language and I will say Good Morning.";
|
||||
this.label1.Click += new System.EventHandler(this.label1_Click);
|
||||
//
|
||||
// translationLabel
|
||||
//
|
||||
this.translationLabel.Location = new System.Drawing.Point(17, 47);
|
||||
this.translationLabel.Name = "translationLabel";
|
||||
this.translationLabel.Size = new System.Drawing.Size(278, 23);
|
||||
this.translationLabel.TabIndex = 1;
|
||||
this.translationLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
this.translationLabel.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
|
||||
//
|
||||
// italianButton
|
||||
//
|
||||
this.italianButton.Location = new System.Drawing.Point(32, 76);
|
||||
this.italianButton.Name = "italianButton";
|
||||
this.italianButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.italianButton.TabIndex = 2;
|
||||
this.italianButton.Text = "Italian";
|
||||
this.italianButton.UseVisualStyleBackColor = true;
|
||||
this.italianButton.Click += new System.EventHandler(this.italianButton_Click);
|
||||
//
|
||||
// spanishButton
|
||||
//
|
||||
this.spanishButton.Location = new System.Drawing.Point(113, 76);
|
||||
this.spanishButton.Name = "spanishButton";
|
||||
this.spanishButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.spanishButton.TabIndex = 3;
|
||||
this.spanishButton.Text = "Spanish";
|
||||
this.spanishButton.UseVisualStyleBackColor = true;
|
||||
this.spanishButton.Click += new System.EventHandler(this.spanishButton_Click);
|
||||
//
|
||||
// germanButton
|
||||
//
|
||||
this.germanButton.Location = new System.Drawing.Point(194, 76);
|
||||
this.germanButton.Name = "germanButton";
|
||||
this.germanButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.germanButton.TabIndex = 4;
|
||||
this.germanButton.Text = "German";
|
||||
this.germanButton.UseVisualStyleBackColor = true;
|
||||
this.germanButton.Click += new System.EventHandler(this.germanButton_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(306, 111);
|
||||
this.Controls.Add(this.germanButton);
|
||||
this.Controls.Add(this.spanishButton);
|
||||
this.Controls.Add(this.italianButton);
|
||||
this.Controls.Add(this.translationLabel);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Language Translator";
|
||||
this.Load += new System.EventHandler(this.Form1_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Label label1;
|
||||
private TextBox translationLabel;
|
||||
private Button italianButton;
|
||||
private Button spanishButton;
|
||||
private Button germanButton;
|
||||
}
|
||||
}
|
40
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.cs
Executable file
40
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.cs
Executable file
@@ -0,0 +1,40 @@
|
||||
namespace lab_tutorial_2_1_Caleb_Fontenot
|
||||
{
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void Form1_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label1_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void italianButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
translationLabel.Text = "Buongiorno";
|
||||
}
|
||||
|
||||
private void spanishButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
translationLabel.Text = "Buenos Dias";
|
||||
}
|
||||
private void germanButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
translationLabel.Text = "Guten Morgen";
|
||||
}
|
||||
private void textBox1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
60
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.resx
Executable file
60
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Form1.resx
Executable file
@@ -0,0 +1,60 @@
|
||||
<root>
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
17
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Program.cs
Executable file
17
lab_tutorial_2_1_Caleb Fontenot/lab_tutorial_2_1_Caleb Fontenot/Program.cs
Executable file
@@ -0,0 +1,17 @@
|
||||
namespace lab_tutorial_2_1_Caleb_Fontenot
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
// To customize application configuration such as set high DPI settings or default font,
|
||||
// see https://aka.ms/applicationconfiguration.
|
||||
ApplicationConfiguration.Initialize();
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>bin\Release\net6.0-windows\publish\</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
<_TargetId>Folder</_TargetId>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project>
|
||||
</Project>
|
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot/1.0.0": {
|
||||
"runtime": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot/1.0.0": {
|
||||
"runtime": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"lab_tutorial_2_1_Caleb Fontenot/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<RootNamespace>lab_tutorial_2_1_Caleb_Fontenot</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<_LastSelectedProfileId>Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Update="Form1.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
@@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.3.32804.467
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab_tutorial_2_1_Caleb Fontenot", "lab_tutorial_2_1_Caleb Fontenot.csproj", "{1E675636-3644-40C2-92A0-6FE97C82FFCB}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{1E675636-3644-40C2-92A0-6FE97C82FFCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1E675636-3644-40C2-92A0-6FE97C82FFCB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1E675636-3644-40C2-92A0-6FE97C82FFCB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1E675636-3644-40C2-92A0-6FE97C82FFCB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {EFCAA318-59F0-4E6A-A9FF-FD2B885F7643}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
Binary file not shown.
@@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@@ -0,0 +1 @@
|
||||
cf543067d53ed607bae7b74083c24dd89a7d8e24
|
@@ -0,0 +1,16 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = lab_tutorial_2_1_Caleb_Fontenot
|
||||
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\
|
@@ -0,0 +1,10 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.Drawing;
|
||||
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;
|
||||
global using global::System.Windows.Forms;
|
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
045af51410ce6c6784ce7b56e772c0ca3ae0b754
|
@@ -0,0 +1,34 @@
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.exe
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.deps.json
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.runtimeconfig.json
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.AssemblyReference.cache
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb_Fontenot.Form1.resources
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.GenerateResource.cache
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfoInputs.cache
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfo.cs
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.CoreCompileInputs.cache
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\refint\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.genruntimeconfig.cache
|
||||
C:\Users\caleb\Desktop\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\ref\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.exe
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.deps.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.runtimeconfig.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.AssemblyReference.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb_Fontenot.Form1.resources
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.GenerateResource.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfoInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfo.cs
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\refint\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.genruntimeconfig.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Debug\net6.0-windows\ref\lab_tutorial_2_1_Caleb Fontenot.dll
|
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {}
|
||||
},
|
||||
"libraries": {}
|
||||
}
|
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
],
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\caleb\\.nuget\\packages"
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
0e7dd186fddf13ca267e318add956ee00b7c4444
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
Binary file not shown.
@@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("lab_tutorial_2_1_Caleb Fontenot")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@@ -0,0 +1 @@
|
||||
cc498024aa839c5d755847053a7b00c971a3c791
|
@@ -0,0 +1,16 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = lab_tutorial_2_1_Caleb_Fontenot
|
||||
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\
|
@@ -0,0 +1,10 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.Drawing;
|
||||
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;
|
||||
global using global::System.Windows.Forms;
|
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
a417e84d3d59349502b1e26c386f1b9b42f49c7e
|
@@ -0,0 +1,17 @@
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.exe
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.deps.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.runtimeconfig.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\bin\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.AssemblyReference.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb_Fontenot.Form1.resources
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.GenerateResource.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfoInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.AssemblyInfo.cs
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\refint\lab_tutorial_2_1_Caleb Fontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\lab_tutorial_2_1_Caleb Fontenot.genruntimeconfig.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\lab_tutorial_2_1_Caleb Fontenot\lab_tutorial_2_1_Caleb Fontenot\obj\Release\net6.0-windows\ref\lab_tutorial_2_1_Caleb Fontenot.dll
|
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
d3d7c4589dce241b252b3c3f084166b519f0d48d
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj",
|
||||
"projectName": "lab_tutorial_2_1_Caleb Fontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -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\caleb\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\caleb\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@@ -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" />
|
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0-windows7.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0-windows7.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\caleb\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj",
|
||||
"projectName": "lab_tutorial_2_1_Caleb Fontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.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\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "AmGpc4CKTWvrdIpssqhc0twD1PVJxfj42kc0W5JCDetYdNzSwE3ZiTk/tcQurADy7JCim1BSkhfbbQABCKRnfQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot\\lab_tutorial_2_1_Caleb Fontenot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Binary file not shown.
Reference in New Issue
Block a user