Lab 2
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/.vs/Lab3_CalebFontenot/v17/.suo
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/.vs/Lab3_CalebFontenot/v17/.suo
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
100
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.Designer.cs
generated
Executable file
100
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.Designer.cs
generated
Executable file
@@ -0,0 +1,100 @@
|
||||
namespace Lab3_CalebFontenot
|
||||
{
|
||||
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.instructionLabel = new System.Windows.Forms.Label();
|
||||
this.finlandPictureBox = new System.Windows.Forms.PictureBox();
|
||||
this.francePictureBox = new System.Windows.Forms.PictureBox();
|
||||
this.germanyPictureBox = new System.Windows.Forms.PictureBox();
|
||||
this.countryLabel = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.finlandPictureBox)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.francePictureBox)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.germanyPictureBox)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// instructionLabel
|
||||
//
|
||||
this.instructionLabel.AutoSize = true;
|
||||
this.instructionLabel.Location = new System.Drawing.Point(91, 9);
|
||||
this.instructionLabel.Name = "instructionLabel";
|
||||
this.instructionLabel.Size = new System.Drawing.Size(233, 15);
|
||||
this.instructionLabel.TabIndex = 0;
|
||||
this.instructionLabel.Text = "Click a flag to see the name of the country.";
|
||||
//
|
||||
// finlandPictureBox
|
||||
//
|
||||
this.finlandPictureBox.Location = new System.Drawing.Point(0, 0);
|
||||
this.finlandPictureBox.Name = "finlandPictureBox";
|
||||
this.finlandPictureBox.Size = new System.Drawing.Size(100, 50);
|
||||
this.finlandPictureBox.TabIndex = 0;
|
||||
this.finlandPictureBox.TabStop = false;
|
||||
//
|
||||
// francePictureBox
|
||||
//
|
||||
this.francePictureBox.Location = new System.Drawing.Point(0, 0);
|
||||
this.francePictureBox.Name = "francePictureBox";
|
||||
this.francePictureBox.Size = new System.Drawing.Size(100, 50);
|
||||
this.francePictureBox.TabIndex = 0;
|
||||
this.francePictureBox.TabStop = false;
|
||||
//
|
||||
// germanyPictureBox
|
||||
//
|
||||
this.germanyPictureBox.Location = new System.Drawing.Point(0, 0);
|
||||
this.germanyPictureBox.Name = "germanyPictureBox";
|
||||
this.germanyPictureBox.Size = new System.Drawing.Size(100, 50);
|
||||
this.germanyPictureBox.TabIndex = 0;
|
||||
this.germanyPictureBox.TabStop = false;
|
||||
//
|
||||
// countryLabel
|
||||
//
|
||||
this.countryLabel.Location = new System.Drawing.Point(0, 0);
|
||||
this.countryLabel.Name = "countryLabel";
|
||||
this.countryLabel.Size = new System.Drawing.Size(100, 23);
|
||||
this.countryLabel.TabIndex = 0;
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.ClientSize = new System.Drawing.Size(284, 261);
|
||||
this.Name = "Form1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.finlandPictureBox)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.francePictureBox)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.germanyPictureBox)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Label instructionLabel;
|
||||
private PictureBox finlandPictureBox;
|
||||
private PictureBox francePictureBox;
|
||||
private PictureBox germanyPictureBox;
|
||||
private Label countryLabel;
|
||||
}
|
||||
}
|
30
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.cs
Executable file
30
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.cs
Executable file
@@ -0,0 +1,30 @@
|
||||
namespace Lab3_CalebFontenot
|
||||
{
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void instructionLabel_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void francePictureBox_Click(object sender, EventArgs e)
|
||||
{
|
||||
countryLabel.Text = "France";
|
||||
}
|
||||
|
||||
private void finlandPictureBox_Click(object sender, EventArgs e)
|
||||
{
|
||||
countryLabel.Text = "Finland";
|
||||
}
|
||||
|
||||
private void germanyPictureBox_Click(object sender, EventArgs e)
|
||||
{
|
||||
countryLabel.Text = "Germany";
|
||||
}
|
||||
}
|
||||
}
|
60
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.resx
Executable file
60
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/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>
|
26
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Lab3_CalebFontenot.csproj
Executable file
26
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Lab3_CalebFontenot.csproj
Executable file
@@ -0,0 +1,26 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\Resources.Designer.cs">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Compile Update="Form1.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
25
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Lab3_CalebFontenot.sln
Executable file
25
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Lab3_CalebFontenot.sln
Executable file
@@ -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}") = "Lab3_CalebFontenot", "Lab3_CalebFontenot.csproj", "{06BFD30F-F48C-4BBC-A361-7C84E3F76682}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{06BFD30F-F48C-4BBC-A361-7C84E3F76682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{06BFD30F-F48C-4BBC-A361-7C84E3F76682}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{06BFD30F-F48C-4BBC-A361-7C84E3F76682}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{06BFD30F-F48C-4BBC-A361-7C84E3F76682}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {E63300B1-F89B-4AC5-94AD-03B940153585}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
17
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Program.cs
Executable file
17
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Program.cs
Executable file
@@ -0,0 +1,17 @@
|
||||
namespace Lab3_CalebFontenot
|
||||
{
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
103
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Properties/Resources.Designer.cs
generated
Executable file
103
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Properties/Resources.Designer.cs
generated
Executable file
@@ -0,0 +1,103 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Lab3_CalebFontenot.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Lab3_CalebFontenot.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap Finland {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("Finland", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap France {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("France", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap France1 {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("France1", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap Germany {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("Germany", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
133
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Properties/Resources.resx
Executable file
133
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Properties/Resources.resx
Executable file
@@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<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>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="France" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\France.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Finland" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Finland.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="France1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\France1.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Germany" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Germany.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/Finland.bmp
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/Finland.bmp
Executable file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/France.bmp
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/France.bmp
Executable file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/France1.bmp
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/France1.bmp
Executable file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/Germany.bmp
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Resources/Germany.bmp
Executable file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"Lab3_CalebFontenot/1.0.0": {
|
||||
"runtime": {
|
||||
"Lab3_CalebFontenot.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Lab3_CalebFontenot/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,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
@@ -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("Lab3_CalebFontenot")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Lab3_CalebFontenot")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Lab3_CalebFontenot")]
|
||||
[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 @@
|
||||
1709a2c729373e9bb48df1bbd2df1b69f1dc1af2
|
Binary file not shown.
@@ -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 = Lab3_CalebFontenot
|
||||
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\
|
@@ -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.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
a2cc5f031394e643317bf90ba1d29aafe22e6f6c
|
@@ -0,0 +1,18 @@
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.csproj.AssemblyReference.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.Form1.resources
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.csproj.GenerateResource.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\bin\Debug\net6.0-windows\Lab3_CalebFontenot.exe
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\bin\Debug\net6.0-windows\Lab3_CalebFontenot.deps.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\bin\Debug\net6.0-windows\Lab3_CalebFontenot.runtimeconfig.json
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\bin\Debug\net6.0-windows\Lab3_CalebFontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\bin\Debug\net6.0-windows\Lab3_CalebFontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.Properties.Resources.resources
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.AssemblyInfoInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.AssemblyInfo.cs
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab3_CalebFontenot.dll
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.pdb
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\Lab3_CalebFontenot.genruntimeconfig.cache
|
||||
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_CalebFontenot\Lab3_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab3_CalebFontenot.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 @@
|
||||
c38eaed1a73cd4981b250e7ee1f122603ca48d1f
|
Binary file not shown.
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
BIN
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
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#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj",
|
||||
"projectName": "Lab3_CalebFontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\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" />
|
71
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/project.assets.json
Executable file
71
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/project.assets.json
Executable file
@@ -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#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj",
|
||||
"projectName": "Lab3_CalebFontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
8
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/project.nuget.cache
Executable file
8
Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/obj/project.nuget.cache
Executable file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "cs+j84+hlDIDTaxddUNBvT2OWzZsy49avLEi6xEQf/m7nD6DPXZCC2xfXoKWqdBh4SpOOElAy+yXCihPa+pSEg==",
|
||||
"success": true,
|
||||
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_CalebFontenot\\Lab3_CalebFontenot\\Lab3_CalebFontenot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Reference in New Issue
Block a user