Complete MP3
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.
100
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.Designer.cs
generated
Executable file
100
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.Designer.cs
generated
Executable file
@@ -0,0 +1,100 @@
|
||||
namespace RandonNumberFileWriterOne_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.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.iterateTextBox = new System.Windows.Forms.TextBox();
|
||||
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
||||
this.executeButton = new System.Windows.Forms.Button();
|
||||
this.exitButton = new System.Windows.Forms.Button();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.iterateTextBox);
|
||||
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(212, 62);
|
||||
this.groupBox1.TabIndex = 0;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Enter the number of times to iterate";
|
||||
//
|
||||
// iterateTextBox
|
||||
//
|
||||
this.iterateTextBox.Location = new System.Drawing.Point(6, 22);
|
||||
this.iterateTextBox.Name = "iterateTextBox";
|
||||
this.iterateTextBox.Size = new System.Drawing.Size(200, 23);
|
||||
this.iterateTextBox.TabIndex = 0;
|
||||
//
|
||||
// executeButton
|
||||
//
|
||||
this.executeButton.Location = new System.Drawing.Point(12, 80);
|
||||
this.executeButton.Name = "executeButton";
|
||||
this.executeButton.Size = new System.Drawing.Size(100, 23);
|
||||
this.executeButton.TabIndex = 1;
|
||||
this.executeButton.Text = "Write to File";
|
||||
this.executeButton.UseVisualStyleBackColor = true;
|
||||
this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(124, 80);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(100, 23);
|
||||
this.exitButton.TabIndex = 2;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(236, 115);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.executeButton);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Random Number Generator - Caleb Fontenot";
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private GroupBox groupBox1;
|
||||
private TextBox iterateTextBox;
|
||||
private SaveFileDialog saveFileDialog1;
|
||||
private Button executeButton;
|
||||
private Button exitButton;
|
||||
}
|
||||
}
|
50
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.cs
Executable file
50
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.cs
Executable file
@@ -0,0 +1,50 @@
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace RandonNumberFileWriterOne_CalebFontenot
|
||||
{
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void exitButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void executeButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
//Get contents of textbox.
|
||||
int timesToIterate, random;
|
||||
if(!int.TryParse(iterateTextBox.Text, out timesToIterate))
|
||||
{
|
||||
MessageBox.Show("Invalid input");
|
||||
}
|
||||
|
||||
// Create a StreamWriter object.
|
||||
StreamWriter sw = null;
|
||||
|
||||
// Create rng object.
|
||||
Random rng = new Random();
|
||||
|
||||
// Summon the Save As Dialog.
|
||||
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
// Save target as a string for later usage.
|
||||
string target = saveFileDialog1.FileName;
|
||||
// Open a text file at our target.
|
||||
sw = File.CreateText(target);
|
||||
|
||||
// Write a specified number of random integers
|
||||
for (int i = 0; i < timesToIterate; i++)
|
||||
{
|
||||
random = rng.Next(1, 101);
|
||||
sw.WriteLine(random);
|
||||
}
|
||||
sw.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
63
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.resx
Executable file
63
MP3/RandomNumberFileWriterOne_CalebFontenot/Form1.resx
Executable file
@@ -0,0 +1,63 @@
|
||||
<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>
|
||||
<metadata name="saveFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
17
MP3/RandomNumberFileWriterOne_CalebFontenot/Program.cs
Executable file
17
MP3/RandomNumberFileWriterOne_CalebFontenot/Program.cs
Executable file
@@ -0,0 +1,17 @@
|
||||
namespace RandonNumberFileWriterOne_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());
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</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>
|
@@ -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}") = "RandonNumberFileWriterOne_CalebFontenot", "RandonNumberFileWriterOne_CalebFontenot.csproj", "{120C113D-8570-45DD-80B3-9720C055152F}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{120C113D-8570-45DD-80B3-9720C055152F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{120C113D-8570-45DD-80B3-9720C055152F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{120C113D-8570-45DD-80B3-9720C055152F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{120C113D-8570-45DD-80B3-9720C055152F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {5856C65E-920D-47F5-A5E4-8E2076F66F43}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"RandonNumberFileWriterOne_CalebFontenot/1.0.0": {
|
||||
"runtime": {
|
||||
"RandonNumberFileWriterOne_CalebFontenot.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"RandonNumberFileWriterOne_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("RandonNumberFileWriterOne_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("RandonNumberFileWriterOne_CalebFontenot")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("RandonNumberFileWriterOne_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 @@
|
||||
658c23dedc6cbae8cddd3e98189485b48f508230
|
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 = RandonNumberFileWriterOne_CalebFontenot
|
||||
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_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.
@@ -0,0 +1 @@
|
||||
502c038692252bb2b21f2202528f8eda7c538e40
|
@@ -0,0 +1,34 @@
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.exe
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.deps.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.runtimeconfig.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.AssemblyReference.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.Form1.resources
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.GenerateResource.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.AssemblyInfoInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.AssemblyInfo.cs
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\refint\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.genruntimeconfig.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandonNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\ref\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.exe
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.deps.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.runtimeconfig.json
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\bin\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.AssemblyReference.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.Form1.resources
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.GenerateResource.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.AssemblyInfoInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.AssemblyInfo.cs
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.csproj.CoreCompileInputs.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\refint\RandonNumberFileWriterOne_CalebFontenot.dll
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.pdb
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\RandonNumberFileWriterOne_CalebFontenot.genruntimeconfig.cache
|
||||
Z:\home\caleb\Documents\ASDV-C-Sharp\MP3\RandomNumberFileWriterOne_CalebFontenot\obj\Debug\net6.0-windows\ref\RandonNumberFileWriterOne_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,23 @@
|
||||
{
|
||||
"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",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
37b370dcbe32b5224000e4a690f056f15f619b9d
|
Binary file not shown.
BIN
MP3/RandomNumberFileWriterOne_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
BIN
MP3/RandomNumberFileWriterOne_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,70 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj",
|
||||
"projectName": "RandonNumberFileWriterOne_CalebFontenot",
|
||||
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_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": [
|
||||
"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.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,16 @@
|
||||
<?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\;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>
|
@@ -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" />
|
76
MP3/RandomNumberFileWriterOne_CalebFontenot/obj/project.assets.json
Executable file
76
MP3/RandomNumberFileWriterOne_CalebFontenot/obj/project.assets.json
Executable file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0-windows7.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0-windows7.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\caleb\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj",
|
||||
"projectName": "RandonNumberFileWriterOne_CalebFontenot",
|
||||
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj",
|
||||
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_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": [
|
||||
"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.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
8
MP3/RandomNumberFileWriterOne_CalebFontenot/obj/project.nuget.cache
Executable file
8
MP3/RandomNumberFileWriterOne_CalebFontenot/obj/project.nuget.cache
Executable file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "pXIh/izwWfMMkHOsTlNPgZ/n9IoWAAcljo9BfdcwM+dfOdgzTYZq2yCjN0cOQqZM8IUVEbAAhA1ad9iI+nGiMA==",
|
||||
"success": true,
|
||||
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP3\\RandomNumberFileWriterOne_CalebFontenot\\RandonNumberFileWriterOne_CalebFontenot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Reference in New Issue
Block a user