Compare commits

...

No commits in common. "v1.0.0" and "master" have entirely different histories.

155 changed files with 56 additions and 3687 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
SendEmail/bin/
SendEmail/obj/

Binary file not shown.

Binary file not shown.

View File

@ -27,8 +27,8 @@ namespace SendEmail
private void PassButtonClick(object sender, EventArgs e)
{
string input = textBox1.Text;
string encryptedInput = Program.Encrypt(input); // Encrypt the user input
if (encryptedInput == Program.config_pass) // If encrypted password is correct
string decryptedConfigPass = Program.Decrypt(Program.config_pass);
if (input == decryptedConfigPass)
{
this.Hide(); // Hide Form2
var form3 = new Form3(); // Create Form3

View File

@ -132,10 +132,8 @@ namespace SendEmail
int cfg_port = Int32.Parse(string_cfg_port);
string cfg_public_key = Program.key_public; // Get public key
// Create a JSON object with the configuration data
Config cfg = new Config(cfg_host, cfg_port, cfg_user, cfg_pass, cfg_from, cfg_subject, cfg_body, cfg_extensions, cfg_config_pass, cfg_public_key);
Config cfg = new Config(cfg_host, cfg_port, cfg_user, cfg_pass, cfg_from, cfg_subject, cfg_body, cfg_extensions, cfg_config_pass);
// Serialize the JSON data so it can be written to a text file
string[] json = { JsonConvert.SerializeObject(cfg, Formatting.Indented) };
@ -202,7 +200,6 @@ namespace SendEmail
Program.config_pass = config.Config_Pass;
Program.file_extensions = config.File_Extensions;
Program.key_public = config.Key_Public; // Load public key
return true;
}
@ -274,7 +271,7 @@ namespace SendEmail
public string File_Extensions { get; set; }
public string Key_Public { get; set; } // New property
public Config(string smtp_host, int smtp_port, string smtp_user, string smtp_pass, string mail_from, string mail_subject, string mail_body, string file_extensions, string config_pass, string key_public)
public Config(string smtp_host, int smtp_port, string smtp_user, string smtp_pass, string mail_from, string mail_subject, string mail_body, string file_extensions, string config_pass)
{
SMTP_Host = smtp_host;
SMTP_Port = smtp_port;
@ -287,7 +284,6 @@ namespace SendEmail
File_Extensions = file_extensions;
Config_Pass = config_pass;
Key_Public = key_public; // New property
}
}
#endregion

View File

@ -6,6 +6,7 @@ using System.Globalization;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
namespace SendEmail
{
@ -36,8 +37,8 @@ namespace SendEmail
public static string config_pass;
// Encryption keys (8 bytes for DES)
public static string key_secret = "8byteKey";
public static string key_public; // Moved to config file
public static string EncryptionKey = "8byteKey";
#endregion
#region Main Method
@ -72,77 +73,66 @@ namespace SendEmail
#endregion
#region Encryption Methods
public static string Encrypt(string input)
public static string Encrypt(string plainText)
{
try
{
string textToEncrypt = input;
string ToReturn = "";
byte[] secretkeyByte = System.Text.Encoding.UTF8.GetBytes(key_secret);
byte[] publickeybyte = System.Text.Encoding.UTF8.GetBytes(key_public);
byte[] inputbyteArray = System.Text.Encoding.UTF8.GetBytes(textToEncrypt);
if (string.IsNullOrEmpty(plainText))
return string.Empty;
using (DESCryptoServiceProvider des = new DESCryptoServiceProvider())
using (Aes aes = Aes.Create())
{
aes.Key = DeriveKey(EncryptionKey);
aes.GenerateIV(); // Generate a unique IV
using (var encryptor = aes.CreateEncryptor(aes.Key, aes.IV))
using (var ms = new MemoryStream())
{
des.Mode = CipherMode.CBC;
des.Padding = PaddingMode.PKCS7;
des.Key = publickeybyte;
des.IV = secretkeyByte;
using (MemoryStream ms = new MemoryStream())
ms.Write(aes.IV, 0, aes.IV.Length); // Store IV at the start
using (var cryptoStream = new CryptoStream(ms, encryptor, CryptoStreamMode.Write))
using (var writer = new StreamWriter(cryptoStream))
{
using (CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write))
{
cs.Write(inputbyteArray, 0, inputbyteArray.Length);
cs.FlushFinalBlock();
ToReturn = Convert.ToBase64String(ms.ToArray());
}
writer.Write(plainText);
}
return Convert.ToBase64String(ms.ToArray());
}
return ToReturn;
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex.InnerException);
}
}
public static string Decrypt(string input)
public static string Decrypt(string encryptedText)
{
try
{
string textToDecrypt = input;
string ToReturn = "";
byte[] privatekeyByte = System.Text.Encoding.UTF8.GetBytes(key_secret);
byte[] publickeybyte = System.Text.Encoding.UTF8.GetBytes(key_public);
byte[] inputbyteArray = Convert.FromBase64String(textToDecrypt.Replace(" ", "+"));
if (string.IsNullOrEmpty(encryptedText))
return string.Empty;
using (DESCryptoServiceProvider des = new DESCryptoServiceProvider())
byte[] cipherTextBytes = Convert.FromBase64String(encryptedText);
using (Aes aes = Aes.Create())
{
aes.Key = DeriveKey(EncryptionKey);
byte[] iv = new byte[aes.BlockSize / 8];
if (cipherTextBytes.Length < iv.Length)
return string.Empty; // Prevents IV-related decryption errors
Array.Copy(cipherTextBytes, iv, iv.Length); // Extract stored IV
using (var decryptor = aes.CreateDecryptor(aes.Key, iv))
using (var ms = new MemoryStream(cipherTextBytes, iv.Length, cipherTextBytes.Length - iv.Length))
using (var cryptoStream = new CryptoStream(ms, decryptor, CryptoStreamMode.Read))
using (var reader = new StreamReader(cryptoStream))
{
des.Mode = CipherMode.CBC;
des.Padding = PaddingMode.PKCS7;
des.Key = publickeybyte;
des.IV = privatekeyByte;
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write))
{
cs.Write(inputbyteArray, 0, inputbyteArray.Length);
cs.FlushFinalBlock();
ToReturn = System.Text.Encoding.UTF8.GetString(ms.ToArray());
}
}
return reader.ReadToEnd();
}
return ToReturn;
}
catch (Exception ae)
{
throw new Exception(ae.Message, ae.InnerException);
}
}
private static byte[] DeriveKey(string passphrase)
{
using (SHA256 sha256 = SHA256.Create())
{
return sha256.ComputeHash(Encoding.UTF8.GetBytes(passphrase));
}
}
#endregion
#region Email Methods

View File

@ -2,7 +2,7 @@
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ShowAllFiles>true</ShowAllFiles>
<_LastSelectedProfileId>\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
<_LastSelectedProfileId>C:\Users\Dylan\Desktop\Send2Email\SendEmail\Properties\PublishProfiles\FolderProfile1.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="Form1.cs">

View File

@ -1,263 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Scan2Email/1.0.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
"Microsoft.Extensions.Configuration.UserSecrets": "3.1.13",
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"Scan2Email.dll": {}
}
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {}
}
},
"libraries": {
"Scan2Email/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
}
}
}

View File

@ -1,263 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"SendEmail/1.0.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
"Microsoft.Extensions.Configuration.UserSecrets": "3.1.13",
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"SendEmail.dll": {}
}
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {}
}
},
"libraries": {
"SendEmail/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
}
}
}

View File

@ -1,12 +0,0 @@
{
"SMTP_Host": "smtp.gmail.com",
"SMTP_Port": 587,
"SMTP_User": "email@company.com",
"SMTP_Pass": "",
"Mail_From": "email@company.com",
"Mail_Subject": "Mail Subject Text",
"Mail_Body": "Mail Body Text",
"Mail_Delivery": "Mail Delivery Text + {destination_email}",
"File_Extensions": "jpg, jpeg, png, gif, bmp, tif, pdf",
"Key_Public": "byte8Key"
}

View File

@ -1,263 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Scan2Email/1.0.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
"Microsoft.Extensions.Configuration.UserSecrets": "3.1.13",
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"Scan2Email.dll": {}
}
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {}
}
},
"libraries": {
"Scan2Email/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\Dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@ -1,12 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

View File

@ -1,263 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Send2Email/1.0.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
"Microsoft.Extensions.Configuration.UserSecrets": "3.1.13",
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"Send2Email.dll": {}
}
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {}
}
},
"libraries": {
"Send2Email/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,9 +0,0 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\Dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@ -1,12 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

View File

@ -1,12 +0,0 @@
{
"SMTP_Host": "smtp.gmail.com",
"SMTP_Port": 587,
"SMTP_User": "email@company.com",
"SMTP_Pass": "",
"Mail_From": "email@company.com",
"Mail_Subject": "Mail Subject Text",
"Mail_Body": "Mail Body Text",
"Config_Pass": "",
"File_Extensions": "jpg, jpeg, png, gif, bmp, tif, pdf",
"Key_Public": "byte8Key"
}

View File

@ -7,6 +7,5 @@
"Mail_Subject": "Mail Subject Text",
"Mail_Body": "Mail Body Text",
"Config_Pass": "",
"File_Extensions": "jpg, jpeg, png, gif, bmp, tif, pdf",
"Key_Public": "byte8Key"
"File_Extensions": "jpg, jpeg, png, gif, bmp, tif, pdf"
}

View File

@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]

View File

@ -1,24 +0,0 @@
//------------------------------------------------------------------------------
// <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: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("6daf7e52-c505-4d4e-9d5d-e220057a73ca")]
[assembly: System.Reflection.AssemblyCompanyAttribute("Scan2Email")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Scan2Email")]
[assembly: System.Reflection.AssemblyTitleAttribute("Scan2Email")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +0,0 @@
bb08e41742876eb7033195612b578fb1084351d9

View File

@ -1,3 +0,0 @@
is_global = true
build_property.RootNamespace = Scan2Email
build_property.ProjectDir = \\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\

View File

@ -1 +0,0 @@
4c359f6c2bb922ae1a164c05c6aac03b650ca60f

View File

@ -1,32 +0,0 @@
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.exe
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.deps.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.runtimeconfig.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.runtimeconfig.dev.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Scan2Email.pdb
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Http.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Http.Features.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.FileExtensions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Json.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.UserSecrets.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Physical.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileSystemGlobbing.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.csproj.AssemblyReference.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form1.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form2.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form3.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.csproj.GenerateResource.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.GeneratedMSBuildEditorConfig.editorconfig
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.AssemblyInfoInputs.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.AssemblyInfo.cs
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.csproj.CoreCompileInputs.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.csproj.CopyComplete
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.pdb
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\Scan2Email.genruntimeconfig.cache

View File

@ -1,254 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {
"runtime": {
"lib/netstandard2.0/System.Text.Encodings.Web.dll": {
"assemblyVersion": "4.0.3.0",
"fileVersion": "4.6.26515.6"
}
}
}
}
},
"libraries": {
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,17 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
},
"additionalProbingPaths": [
"C:\\Users\\dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@ -1 +0,0 @@
3816421fb6ad83599c18b582e47497ca8906c103

View File

@ -1,24 +0,0 @@
//------------------------------------------------------------------------------
// <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: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("6daf7e52-c505-4d4e-9d5d-e220057a73ca")]
[assembly: System.Reflection.AssemblyCompanyAttribute("Send2Email")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Send2Email")]
[assembly: System.Reflection.AssemblyTitleAttribute("Send2Email")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +0,0 @@
ca7784af72ed0a8b30b05d24058a41e1fdde09d1

View File

@ -1,9 +0,0 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.RootNamespace = Send2Email
build_property.ProjectDir = C:\Users\Dylan\Desktop\Send2Email\SendEmail\

View File

@ -1,24 +0,0 @@
//------------------------------------------------------------------------------
// <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: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("6daf7e52-c505-4d4e-9d5d-e220057a73ca")]
[assembly: System.Reflection.AssemblyCompanyAttribute("SendEmail")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("SendEmail")]
[assembly: System.Reflection.AssemblyTitleAttribute("SendEmail")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +0,0 @@
409e3c22c8dd3d1ffd89189db28c947400089bcf

View File

@ -1,3 +0,0 @@
is_global = true
build_property.RootNamespace = SendEmail
build_property.ProjectDir = \\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\

View File

@ -1 +0,0 @@
cd29a4c074dc86be4ca994e83f5b765e0a65465e

View File

@ -1,32 +0,0 @@
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.exe
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.deps.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.runtimeconfig.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.runtimeconfig.dev.json
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\SendEmail.pdb
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.csproj.GenerateResource.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.AssemblyInfoInputs.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.AssemblyInfo.cs
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.pdb
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.genruntimeconfig.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form1.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.csproj.CoreCompileInputs.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.csproj.CopyComplete
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.csproj.AssemblyReference.cache
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form2.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.GeneratedMSBuildEditorConfig.editorconfig
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\obj\Debug\netcoreapp3.1\SendEmail.Form3.resources
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Http.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Http.Features.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.FileExtensions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Json.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.UserSecrets.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Abstractions.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileProviders.Physical.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.FileSystemGlobbing.dll
\\mcls-DC03\users\dylan\GitHub\SendEmail\SendEmail\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll

View File

@ -1,254 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.AspNetCore.Http.Features": "2.2.0",
"System.Text.Encodings.Web": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18316"
}
}
},
"Microsoft.Extensions.Configuration/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.FileProviders.Physical": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration": "3.1.13",
"Microsoft.Extensions.Configuration.FileExtensions": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Configuration.Json": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.20.51904"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"dependencies": {
"Microsoft.Extensions.Primitives": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "3.1.13",
"Microsoft.Extensions.FileSystemGlobbing": "3.1.13"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Microsoft.Extensions.Primitives/3.1.13": {
"runtime": {
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "3.1.13.0",
"fileVersion": "3.100.1321.11604"
}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.Text.Encodings.Web/4.5.0": {
"runtime": {
"lib/netstandard2.0/System.Text.Encodings.Web.dll": {
"assemblyVersion": "4.0.3.0",
"fileVersion": "4.6.26515.6"
}
}
}
}
},
"libraries": {
"Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
"path": "microsoft.aspnetcore.http.abstractions/2.2.0",
"hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Http.Features/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
"path": "microsoft.aspnetcore.http.features/2.2.0",
"hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zuvjW34EpCfGrpDe6e9o/8xJ5idf2PnejmGiPjBQesdw32yBOaegTwLmPtoW70RUIYr58j8EDGf7yTaFSc6KXA==",
"path": "microsoft.extensions.configuration/3.1.13",
"hashPath": "microsoft.extensions.configuration.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WuU1zMRpNrRihLP0HAwm5rWqgdJUywESu3e38FDRsnx2V/FlN+tOf04bZNnimKmFfwF+wdsxlQjKBBye6EEOZw==",
"path": "microsoft.extensions.configuration.abstractions/3.1.13",
"hashPath": "microsoft.extensions.configuration.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3BghtPRGlXgNkTLI2o9kKgf7bG5F7F5YEUJ1nxvlG9Ri9udNTML9ItCpwQb+wX6Wgr8O9uFhlX7jD7oxBb8FRA==",
"path": "microsoft.extensions.configuration.fileextensions/3.1.13",
"hashPath": "microsoft.extensions.configuration.fileextensions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BIU+aJDx3gSe9fE4CmAfUrz6X0mHpFB1hIyS9z1MZqpn7e49uTZ1AH8XOu09YVsK3ceIYNINjJ5tkAi5ANIyQw==",
"path": "microsoft.extensions.configuration.json/3.1.13",
"hashPath": "microsoft.extensions.configuration.json.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s+L9eTjSDVHo3zeAI++KWmnZe3ijt840RHHjvICdCDiYdV3TNF6YduyweVK8KrYHaWLxaHL1GlF2Y/PezKafcA==",
"path": "microsoft.extensions.configuration.usersecrets/3.1.13",
"hashPath": "microsoft.extensions.configuration.usersecrets.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/sDiRV2TKE7hsgwsL+1w8Dz0Zu+41Dyu4zmO+PeYrdfBY5dXkE8kLKgRoVtg28LT6USJh0MLJtlzGco5bwc6bA==",
"path": "microsoft.extensions.fileproviders.abstractions/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k3GEtPSjvhd1/xlzt29e5pZWdbUHeG6swwizDgb0WGbOTUHnqU6xtM4r3RnlJLh7q5ZULT8+B51sssMXfk1xMQ==",
"path": "microsoft.extensions.fileproviders.physical/3.1.13",
"hashPath": "microsoft.extensions.fileproviders.physical.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqHzm/eljL8Kv7wRqGr7RtdJhwWge7+AzsuUOiDsylV3yDVZjyPYfdgvUc+AfGYRry+3DaKKFpEWkDptqkInyQ==",
"path": "microsoft.extensions.filesystemglobbing/3.1.13",
"hashPath": "microsoft.extensions.filesystemglobbing.3.1.13.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/3.1.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cZVp49xwQPVWs+utx6khnnECWQtkHaFXQnMg/odvy1RUumFUkO6h6C19fJd5zUclC4cS6aIfVJs7b1CDL1ep0A==",
"path": "microsoft.extensions.primitives/3.1.13",
"hashPath": "microsoft.extensions.primitives.3.1.13.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
},
"System.Text.Encodings.Web/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
"path": "system.text.encodings.web/4.5.0",
"hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
}
}
}

View File

@ -1,17 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
},
"additionalProbingPaths": [
"C:\\Users\\dylan\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\dylan\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

Some files were not shown because too many files have changed in this diff Show More