Complete MP5
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -28,12 +28,90 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.openFileButton = new System.Windows.Forms.Button();
|
||||
this.exitButton = new System.Windows.Forms.Button();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.correctAnswersLabel = new System.Windows.Forms.Label();
|
||||
this.feedbackLabel = new System.Windows.Forms.Label();
|
||||
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// openFileButton
|
||||
//
|
||||
this.openFileButton.Location = new System.Drawing.Point(12, 106);
|
||||
this.openFileButton.Name = "openFileButton";
|
||||
this.openFileButton.Size = new System.Drawing.Size(93, 23);
|
||||
this.openFileButton.TabIndex = 0;
|
||||
this.openFileButton.Text = "Open File";
|
||||
this.openFileButton.UseVisualStyleBackColor = true;
|
||||
this.openFileButton.Click += new System.EventHandler(this.openFileButton_Click);
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(111, 106);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(97, 23);
|
||||
this.exitButton.TabIndex = 1;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.correctAnswersLabel);
|
||||
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(196, 54);
|
||||
this.groupBox1.TabIndex = 2;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Total Score";
|
||||
//
|
||||
// correctAnswersLabel
|
||||
//
|
||||
this.correctAnswersLabel.Location = new System.Drawing.Point(6, 19);
|
||||
this.correctAnswersLabel.Name = "correctAnswersLabel";
|
||||
this.correctAnswersLabel.Size = new System.Drawing.Size(184, 26);
|
||||
this.correctAnswersLabel.TabIndex = 0;
|
||||
this.correctAnswersLabel.Text = " ??/20";
|
||||
this.correctAnswersLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// feedbackLabel
|
||||
//
|
||||
this.feedbackLabel.Location = new System.Drawing.Point(12, 69);
|
||||
this.feedbackLabel.Name = "feedbackLabel";
|
||||
this.feedbackLabel.Size = new System.Drawing.Size(196, 34);
|
||||
this.feedbackLabel.TabIndex = 3;
|
||||
this.feedbackLabel.Text = "Please open a text file containing Letter answers. (A,B,C,D)";
|
||||
this.feedbackLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
||||
//
|
||||
// openFileDialog1
|
||||
//
|
||||
this.openFileDialog1.FileName = "openFileDialog1";
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Text = "Form1";
|
||||
this.ClientSize = new System.Drawing.Size(216, 136);
|
||||
this.Controls.Add(this.feedbackLabel);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.openFileButton);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Grading Tool - Caleb Fontenot";
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Button openFileButton;
|
||||
private Button exitButton;
|
||||
private GroupBox groupBox1;
|
||||
private Label correctAnswersLabel;
|
||||
private Label feedbackLabel;
|
||||
private OpenFileDialog openFileDialog1;
|
||||
}
|
||||
}
|
@@ -6,5 +6,80 @@ namespace DriversLicenseExam_CalebFontenot
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void exitButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void openFileButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
// Create variables
|
||||
string[] correctAnswers = new string[20],
|
||||
studentAnswers = new string[20];
|
||||
bool[] correctAnswerCompare = new bool[20];
|
||||
// Read the file with the correct answers.
|
||||
correctAnswers = readFiles("correctAnswers.txt");
|
||||
// Now read the file with the student answers.
|
||||
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
studentAnswers = readFiles(openFileDialog1.FileName);
|
||||
}
|
||||
|
||||
if (correctAnswers != null & studentAnswers != null)
|
||||
{
|
||||
for (int i = 0; i < correctAnswers.Length; i++)
|
||||
{
|
||||
if (correctAnswers[i] == studentAnswers[i])
|
||||
{
|
||||
correctAnswerCompare[i] = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
correctAnswerCompare[i] = false;
|
||||
}
|
||||
}
|
||||
// Count up the correct answers
|
||||
int numCorrect = 0;
|
||||
for (int i = 0; i < correctAnswerCompare.Length; i++)
|
||||
{
|
||||
if (correctAnswerCompare[i] == true)
|
||||
{
|
||||
numCorrect++;
|
||||
}
|
||||
}
|
||||
correctAnswersLabel.Text = numCorrect.ToString() + "/20";
|
||||
double gradePercentage = (numCorrect / 20.0);
|
||||
feedbackLabel.Text = "You scored a " + gradePercentage.ToString("P");
|
||||
} else
|
||||
{
|
||||
MessageBox.Show("Unable to open file(s).");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private string[] readFiles(string fileName)
|
||||
{
|
||||
try
|
||||
{
|
||||
// Create StreamReader to read the correct answers.
|
||||
StreamReader inputFile = File.OpenText(fileName);
|
||||
|
||||
string[] returnStringArray = new string[20];
|
||||
|
||||
int i = 0;
|
||||
while (!inputFile.EndOfStream)
|
||||
{
|
||||
returnStringArray[i] = inputFile.ReadLine();
|
||||
i++;
|
||||
}
|
||||
inputFile.Close();
|
||||
|
||||
return returnStringArray;
|
||||
} catch
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,64 +1,4 @@
|
||||
<?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.
|
||||
-->
|
||||
<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">
|
||||
@@ -117,4 +57,7 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="openFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"DriversLicenseExam_CalebFontenot/1.0.0": {
|
||||
"runtime": {
|
||||
"DriversLicenseExam_CalebFontenot.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DriversLicenseExam_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,20 @@
|
||||
B
|
||||
D
|
||||
A
|
||||
A
|
||||
C
|
||||
A
|
||||
B
|
||||
A
|
||||
C
|
||||
D
|
||||
B
|
||||
C
|
||||
D
|
||||
A
|
||||
D
|
||||
C
|
||||
C
|
||||
B
|
||||
D
|
||||
A
|
@@ -0,0 +1,20 @@
|
||||
B
|
||||
D
|
||||
A
|
||||
A
|
||||
C
|
||||
D
|
||||
K
|
||||
A
|
||||
H
|
||||
F
|
||||
C
|
||||
C
|
||||
D
|
||||
A
|
||||
D
|
||||
C
|
||||
C
|
||||
B
|
||||
D
|
||||
A
|
Binary file not shown.
@@ -13,4 +13,4 @@ build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = DriversLicenseExam_CalebFontenot
|
||||
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\MP5\DriversLicenseExam_CalebFontenot\
|
||||
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\
|
||||
|
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
1c3ba2a913437fb53dee2e287e591a451203a317
|
@@ -0,0 +1,17 @@
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.csproj.AssemblyReference.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.Form1.resources
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.csproj.GenerateResource.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.AssemblyInfoInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.AssemblyInfo.cs
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\bin\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.exe
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\bin\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.deps.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\bin\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.runtimeconfig.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\bin\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\bin\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\refint\DriversLicenseExam_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\DriversLicenseExam_CalebFontenot.genruntimeconfig.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP5\DriversLicenseExam_CalebFontenot\obj\Debug\net6.0-windows\ref\DriversLicenseExam_CalebFontenot.dll
|
Binary file not shown.
@@ -13,7 +13,8 @@
|
||||
],
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\caleb\\.nuget\\packages"
|
||||
"C:\\Users\\caleb\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
48d8f6f14c3c86b93f9c1f5ad25a0b780ceb356a
|
Binary file not shown.
BIN
MP5/DriversLicenseExam_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
BIN
MP5/DriversLicenseExam_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,20 +1,24 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj": {}
|
||||
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj": {
|
||||
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectName": "DriversLicenseExam_CalebFontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\obj\\",
|
||||
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\caleb\\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": [
|
||||
@@ -58,7 +62,7 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -5,11 +5,12 @@
|
||||
<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>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\caleb\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</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\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@@ -8,19 +8,24 @@
|
||||
"net6.0-windows7.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\caleb\\.nuget\\packages\\": {}
|
||||
"C:\\Users\\caleb\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectName": "DriversLicenseExam_CalebFontenot",
|
||||
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\obj\\",
|
||||
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\caleb\\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": [
|
||||
@@ -64,7 +69,7 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "u5f6c9gkZ0+XUku02V0PmkwNcneL/4DvtaE7gj5x9i2uhQHQNxIHbNkL2M+QKOqNqfWOjZoCIM1LRsVhZjgmvw==",
|
||||
"dgSpecHash": "y6TbHbwylq/Z2edPUMuehLuRkM7fvKo4n/8L6nfkAiqY9odYASJjOrsTP81UJrtnBjzv1LeAifVW3UpOG/S3bw==",
|
||||
"success": true,
|
||||
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP5\\DriversLicenseExam_CalebFontenot\\DriversLicenseExam_CalebFontenot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Reference in New Issue
Block a user