diff --git a/backendCs/Program.cs b/backendCS/Program.cs similarity index 92% rename from backendCs/Program.cs rename to backendCS/Program.cs index 8fb489e..9fda554 100644 --- a/backendCs/Program.cs +++ b/backendCS/Program.cs @@ -1,7 +1,7 @@ using System.Net; using System.Text; -namespace Server; +namespace TimelogBackend; class Program { @@ -38,6 +38,10 @@ class Program HttpListenerContext context = listener.GetContext(); HttpListenerRequest request = context.Request; HttpListenerResponse response = context.Response; + response.Headers.Add("Access-Control-Allow-Origin", "http://localhost:5173"); + response.Headers.Add("Access-Control-Allow-Methods", "GET, POST, OPTIONS"); + response.Headers.Add("Access-Control-Allow-Headers", "Content-Type, Authorization"); + // url after localhost:5000/ string uri; if (request != null && request.Url != null) @@ -53,8 +57,6 @@ class Program Reset.HandleRequest(response); break; case "/api/getall": - /* Thread clientThread = new Thread(() => Getall.HandleRequest(request, response)); */ - /* clientThread.Start(); */ Getall.HandleRequest(request, response); break; case "/api/gettopten": @@ -82,7 +84,7 @@ class Program Login.HandleRequest(request, response); break; case "/api/createlog": - CreateLog.HandleRequest(request, response, context); + CreateLog.HandleRequest(request, response); break; default: HandleMissingPath(response); diff --git a/backendCs/Route.cs b/backendCS/Route.cs similarity index 86% rename from backendCs/Route.cs rename to backendCS/Route.cs index 41d21f2..ad80a69 100644 --- a/backendCs/Route.cs +++ b/backendCS/Route.cs @@ -1,7 +1,8 @@ using System.Net; using System.Text; +using System.Text.RegularExpressions; -namespace Server; +namespace TimelogBackend; public abstract class Route { @@ -36,5 +37,11 @@ public abstract class Route response.OutputStream.Write(buffer, 0, buffer.Length); response.Close(); } + + public static bool ValidateDate(string date) + { + Regex regex = new(@"^\d{4}-\d{2}-\d{2}$"); + return regex.IsMatch(date); + } /* public virtual void run(MySqlConnection conn, HttpListenerRequest request, HttpListenerResponse response) { } */ } diff --git a/backendCs/TimelogBackend.csproj b/backendCS/TimelogBackend.csproj similarity index 100% rename from backendCs/TimelogBackend.csproj rename to backendCS/TimelogBackend.csproj diff --git a/backendCS/routes/CreateLog.cs b/backendCS/routes/CreateLog.cs new file mode 100644 index 0000000..be41d94 --- /dev/null +++ b/backendCS/routes/CreateLog.cs @@ -0,0 +1,134 @@ +using System.IdentityModel.Tokens.Jwt; +using System.Net; +using System.Text; +using System.Text.RegularExpressions; +using Microsoft.IdentityModel.Tokens; +using MySql.Data.MySqlClient; +using Newtonsoft.Json.Linq; + +namespace TimelogBackend; + +public class CreateLog : Route +{ + private static readonly string secretKey = + "stronk-key-much-sercret-much-more-stronk-stronk-key-much-sercret-much-more-stronk"; + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + try + { + // check header + var headers = request.Headers; + string token = headers["token"] ?? ""; + if (!string.IsNullOrEmpty(token) && !ValidateToken(token)) + { + throw new Exception("Invalid token"); + } + + MySqlCommand cmd = new(); + + string body; + using (StreamReader bodyReader = new(request.InputStream, request.ContentEncoding)) + { + body = bodyReader.ReadToEnd(); + } + JObject jsonObject = JObject.Parse(body); + string project = jsonObject["project"]?.ToString() ?? ""; + string time = jsonObject["time"]?.ToString() ?? ""; + string date = jsonObject["date"]?.ToString() ?? ""; + + // TODO check if the hours on given date don't combine to more + // than 8 + + if (!ValidateTime(time)) + { + throw new Exception("Incorrect date format"); + } + if (!ValidateDate(date)) + { + throw new Exception("Incorrect date format"); + } + // validate user + string? usernameClaim = GetUserFromToken(token); + if (string.IsNullOrEmpty(usernameClaim)) + { + throw new Exception("wrong user id"); + } + // validate project + // TODO better project validation + if (string.IsNullOrEmpty(project)) + { + throw new Exception("wrong project"); + } + SaveTimeLogToDatabase(usernameClaim, project, date, time); + SendSuccess(response); + } + catch (Exception ex) + { + SendError(response, ex); + } + } + + private static bool ValidateToken(string token) + { + try + { + var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(secretKey)); + var tokenHandler = new JwtSecurityTokenHandler(); + var validationParameters = new TokenValidationParameters + { + ValidateIssuer = true, + ValidateAudience = true, + ValidateLifetime = true, + ValidIssuer = "TimeLogServer", + ValidAudience = "TimeLogWebsite", + IssuerSigningKey = key, + }; + + var principal = tokenHandler.ValidateToken( + token, + validationParameters, + out SecurityToken validatedToken + ); + return validatedToken != null; + } + catch + { + return false; + } + } + + private static bool ValidateTime(string time) + { + return int.TryParse(time, out int myInt) && myInt >= 0 && myInt <= 8; + } + + private static string GetUserFromToken(string token) + { + var handler = new JwtSecurityTokenHandler(); + var jwtToken = handler.ReadJwtToken(token); + string? usernameClaim = jwtToken.Claims.FirstOrDefault(c => c.Type == "user")?.Value; + return string.IsNullOrEmpty(usernameClaim) ? "" : usernameClaim; + } + + private static void SaveTimeLogToDatabase( + string username, + string project, + string date, + string time + ) + { + using MySqlConnection conn = new(connectionString); + conn.Open(); + using MySqlCommand cmd = new( + @"INSERT INTO Timelog(user, project, date, time) + VALUES(@user, @project, @date, @time);", + conn + ); + cmd.Parameters.AddWithValue("@user", username); + cmd.Parameters.AddWithValue("@project", project); + cmd.Parameters.AddWithValue("@date", date); + cmd.Parameters.AddWithValue("@time", time); + cmd.ExecuteNonQuery(); + } +} diff --git a/backendCS/routes/CreateProcedure.cs b/backendCS/routes/CreateProcedure.cs new file mode 100644 index 0000000..074a2ff --- /dev/null +++ b/backendCS/routes/CreateProcedure.cs @@ -0,0 +1,126 @@ +using System.Net; +using MySql.Data.MySqlClient; + +namespace TimelogBackend; + +public class CreateProcedure : Route +{ + public static void HandleRequest(HttpListenerResponse response) + { + try + { + MySqlCommand cmd = new(); + + using MySqlConnection conn = new(connectionString); + conn.Open(); + cmd.Connection = conn; + cmd.CommandText = + @" CREATE PROCEDURE fill_timelog () + BEGIN + DECLARE j INT DEFAULT 1; + DECLARE users INT DEFAULT 1; + DECLARE logs INT; + DECLARE hours FLOAT; + DECLARE project INT; + DECLARE curDate DATE DEFAULT '2024-11-18'; + DECLARE h2 INT; + + WHILE users <= 100 DO + SET logs = FLOOR(1 + (RAND() * 20)); + SET j = 1; + WHILE j <= logs DO + SET project = FLOOR(1 + (RAND() * 3)); + SET curDate = DATE_ADD('2020-01-01', INTERVAL FLOOR(RAND() * DATEDIFF('2020-02-01', '2020-01-01')) DAY); + SET hours = (RAND() * (8 - 0.25)) + 0.25; + + SELECT SUM(time) INTO h2 + FROM Timelog + WHERE date = curdate && user = users; + + WHILE(h2 + hours) > 8 DO + SET curDate = DATE_ADD('2020-01-01', INTERVAL FLOOR(RAND() * DATEDIFF('2020-02-01', '2020-01-01')) DAY); + + SELECT SUM(time)INTO h2 + FROM Timelog + WHERE date = curdate && user = users; + + END WHILE; + INSERT INTO Timelog(user, project, date, time) VALUES(users, project, curDate, hours); + SET j = j + 1; + END WHILE; + SET users = users + 1; + END WHILE; + END;"; + cmd.ExecuteNonQuery(); + cmd.CommandText = + @"CREATE PROCEDURE InitDB() + BEGIN + DECLARE i INT DEFAULT 1; + TRUNCATE TABLE Timelog; + TRUNCATE TABLE Project; + SET foreign_key_checks = 0; + TRUNCATE TABLE User; + SET foreign_key_checks = 1; + + INSERT INTO Project(name) VALUES('My own'),('Outcons'),('Free Time'); + + CREATE TEMPORARY TABLE temp_fname (fname VARCHAR(255)); + INSERT INTO temp_fname (fname) VALUES + ( 'John' ), + ( 'Gringo' ), + ( 'Mark' ), + ( 'Lisa' ), + ( 'Maria' ), + ( 'Sonya' ), + ( 'Philip' ), + ( 'Jose' ), + ( 'Lorenzo' ), + ( 'George' ), + ( 'Justin' ); + + CREATE TEMPORARY TABLE temp_lname (lname VARCHAR(255)); + INSERT INTO temp_lname (lname) VALUES + ( 'Johnson' ), + ( 'Lamas' ), + ( 'Jackson' ), + ( 'Brown' ), + ( 'Mason' ), + ( 'Rodriguez' ), + ( 'Roberts' ), + ( 'Thomas' ), + ( 'Rose' ), + ( 'McDonalds' ); + + CREATE TEMPORARY TABLE temp_mail (mail VARCHAR(255)); + INSERT INTO temp_mail (mail) VALUES + ( 'hotmail.com' ), + ( 'gmail.com' ), + ( 'live.com' ); + + WHILE i <= 100 DO + INSERT INTO User (f_name, l_name, mail) + SELECT + (SELECT fname FROM temp_fname ORDER BY RAND() LIMIT 1), + (SELECT lname FROM temp_lname ORDER BY RAND() LIMIT 1), + (SELECT mail FROM temp_mail ORDER BY RAND() LIMIT 1); + SET i = i + 1; + END WHILE; + + UPDATE User + SET User.mail = CONCAT(User.f_name,'.', User.l_name,'@', User.mail); + + CALL fill_timelog(); + DROP TABLE temp_mail; + DROP TABLE temp_fname; + DROP TABLE temp_lname; + END;"; + cmd.ExecuteNonQuery(); + // prepare response + SendSuccess(response); + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Getall.cs b/backendCS/routes/Getall.cs new file mode 100644 index 0000000..c0cf49a --- /dev/null +++ b/backendCS/routes/Getall.cs @@ -0,0 +1,126 @@ +using System.Net; +using MySql.Data.MySqlClient; +using Newtonsoft.Json; + +namespace TimelogBackend; + +// there should be a better way to deal with data comming from sql +public class Log +{ + public object? FName { get; set; } + public object? LName { get; set; } + public object? Mail { get; set; } + public object? Name { get; set; } + public object? Time { get; set; } + public object? Date { get; set; } + public object? User { get; set; } +} + +public class Getall : Route +{ + private static string ConstructQuery( + string from, + string to, + string order, + string offset, + string sortby + ) + { + string mainQuery = + @"SELECT u.f_name,u.l_name,u.mail,p.name,t.time,t.date,t.user + FROM Timelog t + INNER JOIN Project p ON p.id=t.project + INNER JOIN User u ON u.id=t.user "; + // this shenanigan is needed to remove the "" around group by + string offsetQuery = " LIMIT 10 OFFSET " + offset + ";"; + // depending on the incoming parameters construct a Query + if (!string.IsNullOrEmpty(to) && !string.IsNullOrEmpty(from)) + { + mainQuery += AddWhereClause(from, to); + } + if (!string.IsNullOrEmpty(sortby)) + { + mainQuery += AddSortBy(sortby, order); + } + if (!int.TryParse(offset, out int myInt) || myInt < 0) + throw new Exception("Incorect offset"); + + return mainQuery + offsetQuery; + } + + private static string AddWhereClause(string from, string to) + { + if (!ValidateDate(to) || !ValidateDate(from)) + { + throw new Exception("Incorrect date format"); + } + string whereQuery = " WHERE t.date BETWEEN @from AND @to "; + return whereQuery; + } + + private static string AddSortBy(string sortby, string order) + { + List validSorting = ["f_name", "l_name", "mail", "time", "date", "user", "project"]; + if (!validSorting.Contains(sortby)) + { + throw new Exception("Incorrect sorting value"); + } + string orderQuery = " ORDER BY " + sortby + " " + order; + return orderQuery; + } + + private static List ExtractDataFromDB(MySqlCommand cmd) + { + using MySqlConnection conn = new(connectionString); + conn.Open(); + cmd.Connection = conn; + // execute query and read results + MySqlDataReader reader = cmd.ExecuteReader(); + + List entries = []; + while (reader.Read()) + { + entries.Add( + new Log + { + FName = reader["f_name"], + LName = reader["l_name"], + User = reader["user"], + Date = reader["date"], + Name = reader["name"], + Time = reader["time"], + Mail = reader["mail"], + } + ); + } + return entries; + } + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + try + { + // extract data from url + var queryString = request.QueryString; + string? from = queryString["from"] ?? ""; + string? to = queryString["to"] ?? ""; + string? sortby = queryString["sortby"] ?? ""; + string? offset = queryString["offset"] ?? ""; + string? order = queryString["order"] ?? ""; + order = order == "true" ? "ASC" : "DESC"; + // SQL + MySqlCommand cmd = new(ConstructQuery(from, to, order, offset, sortby)); + cmd.Parameters.AddWithValue("@from", from); + cmd.Parameters.AddWithValue("@to", to); + var entries = ExtractDataFromDB(cmd); + + // serialize JSON + string jsonResponse = JsonConvert.SerializeObject(entries); + SendSuccess(response, jsonResponse); + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Gettopten.cs b/backendCS/routes/Gettopten.cs new file mode 100644 index 0000000..7c1453a --- /dev/null +++ b/backendCS/routes/Gettopten.cs @@ -0,0 +1,98 @@ +using System.Net; +using MySql.Data.MySqlClient; +using Newtonsoft.Json; + +namespace TimelogBackend; + +public class TopTen +{ + public object? User { get; set; } + public object? Date { get; set; } + public object? Project { get; set; } + public object? FName { get; set; } + public object? LName { get; set; } + public object? Name { get; set; } + public object? TotalTime { get; set; } +} + +public class Gettopten : Route +{ + private static List ExtractDataFromDB(MySqlCommand cmd) + { + using MySqlConnection conn = new(connectionString); + cmd.Connection = conn; + conn.Open(); + // Execute the query and read the results + MySqlDataReader reader = cmd.ExecuteReader(); + List entries = []; + while (reader.Read()) + { + entries.Add( + new TopTen + { + User = reader["user"], + Date = reader["date"], + Project = reader["project"], + FName = reader["f_name"], + LName = reader["l_name"], + Name = reader["name"], + TotalTime = reader["total_time"], + } + ); + } + return entries; + } + + private static void ValidateQueryStrings(string from, string to, string filterBy) + { + if (!string.IsNullOrEmpty(to) && !string.IsNullOrEmpty(from)) + { + ValidateDate(to); + ValidateDate(from); + } + else + { + throw new Exception("Empty date format"); + } + if (string.IsNullOrEmpty(filterBy)) + { + throw new Exception("Empty filterby"); + } + if (filterBy != "user" && filterBy != "project") + { + throw new Exception("Incorrect filterby"); + } + } + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + try + { + var queryString = request.QueryString; + string? from = queryString["from"] ?? ""; + string? to = queryString["to"] ?? ""; + string? filterBy = queryString["filterBy"] ?? ""; + ValidateQueryStrings(from, to, filterBy); + string query = + @"SELECT t.user,t.date,t.project,u.f_name,u.l_name,p.name,SUM(t.time) as total_time + FROM Timelog t + INNER JOIN Project p ON p.id=t.project + INNER JOIN User u ON u.id=t.user + WHERE t.date BETWEEN @from AND @to + GROUP BY " + + filterBy + + " ORDER BY total_time DESC LIMIT 10;"; + MySqlCommand cmd = new(query); + cmd.Parameters.AddWithValue("@from", from); + cmd.Parameters.AddWithValue("@to", to); + + var entries = ExtractDataFromDB(cmd); + string jsonResponse = JsonConvert.SerializeObject(entries); + SendSuccess(response, jsonResponse); + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Getuser.cs b/backendCS/routes/Getuser.cs new file mode 100644 index 0000000..498a4d3 --- /dev/null +++ b/backendCS/routes/Getuser.cs @@ -0,0 +1,59 @@ +using System.Dynamic; +using System.Net; +using MySql.Data.MySqlClient; +using Newtonsoft.Json; + +namespace TimelogBackend; + +public class Getuser : Route +{ + private static dynamic ExtractDataFromDB(MySqlCommand cmd) + { + using MySqlConnection conn = new(connectionString); + conn.Open(); + cmd.Connection = conn; + // execute query and read results + MySqlDataReader reader = cmd.ExecuteReader(); + dynamic expando = new ExpandoObject(); + while (reader.Read()) + { + ((IDictionary)expando)[reader["name"].ToString()] = reader[ + "SUM(t.time)" + ]; + } + return expando; + } + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + try + { + var queryString = request.QueryString; + string? userid = queryString["userid"]; + if (string.IsNullOrEmpty(userid)) + { + throw new Exception("Missing userid"); + } + // prepare SQL query + string query = + @"SELECT p.name, SUM(t.time) + FROM Timelog t + INNER JOIN Project p ON p.id=t.project + INNER JOIN User u ON u.id=t.user + WHERE User = @userid + GROUP BY name;"; + MySqlCommand cmd = new(query); + cmd.Parameters.AddWithValue("@userid", userid); + + var expando = ExtractDataFromDB(cmd); + // serialize JSON + string jsonResponse = JsonConvert.SerializeObject(expando); + // prepare response + SendSuccess(response, jsonResponse); + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Login.cs b/backendCS/routes/Login.cs new file mode 100644 index 0000000..45347b6 --- /dev/null +++ b/backendCS/routes/Login.cs @@ -0,0 +1,119 @@ +using System.IdentityModel.Tokens.Jwt; +using System.Net; +using System.Security.Claims; +using System.Security.Cryptography; +using System.Text; +using Microsoft.IdentityModel.Tokens; +using MySql.Data.MySqlClient; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; + +namespace TimelogBackend; + +public class Login : Route +{ + private static readonly string secretKey = + "stronk-key-much-sercret-much-more-stronk-stronk-key-much-sercret-much-more-stronk"; + + public static string GenerateToken(string user) + { + var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(secretKey)); + var creds = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); + + var token = new JwtSecurityToken( + issuer: "TimeLogServer", + audience: "TimeLogWebsite", + claims: [new Claim("user", user)], + expires: DateTime.Now.AddHours(2), + signingCredentials: creds + ); + + return new JwtSecurityTokenHandler().WriteToken(token); + } + + public static bool VerifyPassword(string enteredPassword, string storedHash) + { + byte[] hashBytes = Convert.FromBase64String(storedHash); + + byte[] salt = new byte[16]; + Array.Copy(hashBytes, 0, salt, 0, 16); + + using var pbkdf2 = new Rfc2898DeriveBytes( + enteredPassword, + salt, + 10000, + HashAlgorithmName.SHA256 + ); + byte[] newHash = pbkdf2.GetBytes(32); + + for (int i = 0; i < 32; i++) + { + if (newHash[i] != hashBytes[i + 16]) + return false; + } + return true; + } + + private static string ExtractDataFromDB(MySqlCommand cmd, string password) + { + using MySqlConnection conn = new(connectionString); + cmd.Connection = conn; + conn.Open(); + // execute query and read results + MySqlDataReader reader = cmd.ExecuteReader(); + string? userId = ""; + string? hashedPass = ""; + while (reader.Read()) + { + userId = Convert.ToString(reader["id"]); + hashedPass = reader.GetString("password"); + } + // check username + if (string.IsNullOrEmpty(userId)) + { + throw new Exception("Invalid Username or Password"); + } + //check password + if ( + string.IsNullOrEmpty(password) + || string.IsNullOrEmpty(hashedPass) + || !VerifyPassword(password, hashedPass) + ) + { + throw new Exception("Invalid Username or Password"); + } + return userId; + } + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + try + { + // extract data from body + string body; + using (StreamReader bodyReader = new(request.InputStream, request.ContentEncoding)) + { + body = bodyReader.ReadToEnd(); + } + JObject jsonObject = JObject.Parse(body); + string mail = jsonObject["mail"]?.ToString() ?? ""; + string password = jsonObject["password"]?.ToString() ?? ""; + // prepare SQL query + string query = + @"SELECT u.id, password FROM User u + INNER JOIN Password p ON p.user=u.id + WHERE mail=@mail;"; + MySqlCommand cmd = new(query); + cmd.Parameters.AddWithValue("@mail", mail); + + var userId = ExtractDataFromDB(cmd, password); + string? jsonResponse = JsonConvert.SerializeObject(GenerateToken(userId)); + // prepare response + SendSuccess(response, jsonResponse); + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Register.cs b/backendCS/routes/Register.cs new file mode 100644 index 0000000..0157cd8 --- /dev/null +++ b/backendCS/routes/Register.cs @@ -0,0 +1,95 @@ +using System.Net; +using System.Security.Cryptography; +using MySql.Data.MySqlClient; +using Newtonsoft.Json.Linq; + +namespace TimelogBackend; + +public class Register : Route +{ + private static string HashPassword(string password) + { + byte[] salt = new byte[16]; + RandomNumberGenerator.Fill(salt); + + using var pbkdf2 = new Rfc2898DeriveBytes(password, salt, 10000, HashAlgorithmName.SHA256); + byte[] hash = pbkdf2.GetBytes(32); + + byte[] hashBytes = new byte[48]; // 16 (salt) + 32 (hash) + Array.Copy(salt, 0, hashBytes, 0, 16); + Array.Copy(hash, 0, hashBytes, 16, 32); + + return Convert.ToBase64String(hashBytes); + } + + public static void HandleRequest(HttpListenerRequest request, HttpListenerResponse response) + { + MySqlTransaction? transaction = null; + try + { + // extract parameters from req body + string body; + using (StreamReader bodyReader = new(request.InputStream, request.ContentEncoding)) + { + body = bodyReader.ReadToEnd(); + } + JObject jsonObject = JObject.Parse(body); + string f_name = jsonObject["f_name"]?.ToString() ?? ""; + string l_name = jsonObject["l_name"]?.ToString() ?? ""; + string password = jsonObject["password"]?.ToString() ?? ""; + string mail = jsonObject["mail"]?.ToString() ?? ""; + + // validate parameters + if ( + string.IsNullOrEmpty(f_name) + || f_name.Length > 30 + || f_name.Length < 2 + || string.IsNullOrEmpty(l_name) + || l_name.Length > 30 + || l_name.Length < 2 + || string.IsNullOrEmpty(mail) + || mail.Length > 50 + || mail.Length < 6 + || string.IsNullOrEmpty(password) + || password.Length > 30 + || password.Length < 10 + ) + { + throw new Exception("Wrong parameters"); + } + // TODO Validate dupes of email + string query = "INSERT INTO User(f_name,l_name,mail) VALUES(@f_name,@l_name,@mail)"; + MySqlCommand cmd = new(query); + cmd.Parameters.AddWithValue("@f_name", f_name); + cmd.Parameters.AddWithValue("@l_name", l_name); + cmd.Parameters.AddWithValue("@mail", mail); + + using MySqlConnection conn = new(connectionString); + conn.Open(); + transaction = conn.BeginTransaction(); + cmd.Connection = conn; + cmd.ExecuteNonQuery(); + + // Get user ID + cmd.CommandText = "SELECT id FROM User WHERE mail=@mail;"; + MySqlDataReader reader = cmd.ExecuteReader(); + reader.Read(); + var id = reader["id"]; + reader.Close(); + + // Insert into password + cmd.CommandText = "INSERT INTO Password(user,password) VALUES(@id,@password)"; + cmd.Parameters.AddWithValue("@password", HashPassword(password)); + cmd.Parameters.AddWithValue("@id", id); + cmd.ExecuteNonQuery(); + transaction.Commit(); + + SendSuccess(response); + } + catch (Exception ex) + { + transaction?.Rollback(); + SendError(response, ex); + } + } +} diff --git a/backendCS/routes/Reset.cs b/backendCS/routes/Reset.cs new file mode 100644 index 0000000..5c9e536 --- /dev/null +++ b/backendCS/routes/Reset.cs @@ -0,0 +1,30 @@ +using System.Net; +using MySql.Data.MySqlClient; + +namespace TimelogBackend; + +public class Reset : Route +{ + public static void HandleRequest(HttpListenerResponse response) + { + try + { + // prepare SQL query + MySqlCommand cmd = new() { CommandText = "CALL InitDB" }; + using (MySqlConnection conn = new MySqlConnection(connectionString)) + { + cmd.Connection = conn; + // open connection + conn.Open(); + // execute query + cmd.ExecuteNonQuery(); + // set up and send response + SendSuccess(response); + } + } + catch (Exception ex) + { + SendError(response, ex); + } + } +} diff --git a/backendCS/test.sh b/backendCS/test.sh new file mode 100755 index 0000000..147c453 --- /dev/null +++ b/backendCS/test.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +url="localhost:5000/" # Replace with your URL + +# Loop to send 1000 requests +for i in {1..10000} +do + curl -s $url > /dev/null & # Send the request in the background +done + +# Wait for all background processes to finish +wait +echo "1000 requests sent!" diff --git a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100755 index 432e72c..0000000 Binary files a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100755 index 82406ca..0000000 Binary files a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100755 index 8545af8..0000000 Binary files a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100755 index b2092e0..0000000 Binary files a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll deleted file mode 100755 index 0024bae..0000000 Binary files a/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backendCs.Tests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfo.cs b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfo.cs deleted file mode 100644 index ffb9955..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("backendCD.Test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4317abde8c48644e2bc317481f0f846c577d4b")] -[assembly: System.Reflection.AssemblyProductAttribute("backendCD.Test")] -[assembly: System.Reflection.AssemblyTitleAttribute("backendCD.Test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfoInputs.cache b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfoInputs.cache deleted file mode 100644 index e56ea14..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -97c3d488c3a40bac6ae269e98e288922fabb1a482ea48d99dd4334ffb529da64 diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GeneratedMSBuildEditorConfig.editorconfig b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0ee95f7..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = backendCD.Test -build_property.ProjectDir = /home/arch/projects/wip/timelog-interview-login/backendCD.Test/ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GlobalUsings.g.cs b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -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; diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.assets.cache b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.assets.cache deleted file mode 100644 index 79d8f0a..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.assets.cache and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.csproj.AssemblyReference.cache b/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.csproj.AssemblyReference.cache deleted file mode 100644 index 39116dd..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCD.Test.csproj.AssemblyReference.cache and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs deleted file mode 100644 index 0815d67..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("backendCs.Test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+926436860cd34dec9ccf3feac66e4c63bae7ba8f")] -[assembly: System.Reflection.AssemblyProductAttribute("backendCs.Test")] -[assembly: System.Reflection.AssemblyTitleAttribute("backendCs.Test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache deleted file mode 100644 index 747f64e..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -52cff86724d2fd2424e9f1d9a690fe3422a59e7c4c8fd9c4b99335b5ce7acb7f diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e1bc5d8..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = backendCs.Test -build_property.ProjectDir = /home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GlobalUsings.g.cs b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -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; diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.assets.cache b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.assets.cache deleted file mode 100644 index c496109..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.assets.cache and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache deleted file mode 100644 index 39116dd..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CopyComplete b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache deleted file mode 100644 index 16c8473..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e73502bf51dbb6a9c047031da6b3ecfb316bf43ac63f18dfd658d7b87521e4a3 diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.FileListAbsolute.txt b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.FileListAbsolute.txt deleted file mode 100644 index 0924981..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,330 +0,0 @@ -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/backendCs.Test.deps.json -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/backendCs.Test.runtimeconfig.json -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/testhost.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Newtonsoft.Json.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/NuGet.Frameworks.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.csproj.CopyComplete -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/refint/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache -/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/Debug/net8.0/ref/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.deps.json -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.runtimeconfig.json -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/testhost.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Newtonsoft.Json.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/NuGet.Frameworks.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CopyComplete -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/refint/backendCs.Test.dll -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache -/home/arch/projects/wip/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/ref/backendCs.Test.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.deps.json -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.runtimeconfig.json -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/testhost.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Newtonsoft.Json.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/NuGet.Frameworks.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.AssemblyReference.cache -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.GeneratedMSBuildEditorConfig.editorconfig -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfoInputs.cache -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.AssemblyInfo.cs -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CoreCompileInputs.cache -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.csproj.CopyComplete -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/refint/backendCs.Test.dll -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.pdb -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache -/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/Debug/net8.0/ref/backendCs.Test.dll diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.dll b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.dll deleted file mode 100644 index 092507c..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.dll and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache deleted file mode 100644 index ff9ae85..0000000 --- a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -44ffb3de93f5803a95865b1f18602ffa1a9e69b6b29642e60dde4719a8b98d5a diff --git a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.pdb b/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.pdb deleted file mode 100644 index 4985774..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/backendCs.Test.pdb and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/ref/backendCs.Test.dll b/backendCs.Tests/obj/Debug/net8.0/ref/backendCs.Test.dll deleted file mode 100644 index a6c57c6..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/ref/backendCs.Test.dll and /dev/null differ diff --git a/backendCs.Tests/obj/Debug/net8.0/refint/backendCs.Test.dll b/backendCs.Tests/obj/Debug/net8.0/refint/backendCs.Test.dll deleted file mode 100644 index a6c57c6..0000000 Binary files a/backendCs.Tests/obj/Debug/net8.0/refint/backendCs.Test.dll and /dev/null differ diff --git a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.dgspec.json b/backendCs.Tests/obj/backendCD.Test.csproj.nuget.dgspec.json deleted file mode 100644 index 8d1cd03..0000000 --- a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.dgspec.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "format": 1, - "restore": { - "/home/arch/projects/wip/timelog-interview-login/backendCD.Test/backendCD.Test.csproj": {} - }, - "projects": { - "/home/arch/projects/wip/timelog-interview-login/backendCD.Test/backendCD.Test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/home/arch/projects/wip/timelog-interview-login/backendCD.Test/backendCD.Test.csproj", - "projectName": "backendCD.Test", - "projectPath": "/home/arch/projects/wip/timelog-interview-login/backendCD.Test/backendCD.Test.csproj", - "packagesPath": "/home/arch/.nuget/packages/", - "outputPath": "/home/arch/projects/wip/timelog-interview-login/backendCD.Test/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/home/arch/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[3.0.4, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[3.0.4, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.6.0, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.110/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.props b/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.props deleted file mode 100644 index 28fe72c..0000000 --- a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.props +++ /dev/null @@ -1,21 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - /home/arch/.nuget/packages/ - /home/arch/.nuget/packages/ - PackageReference - 6.8.1 - - - - - - - - - - - \ No newline at end of file diff --git a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.targets b/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.targets deleted file mode 100644 index 32fe07c..0000000 --- a/backendCs.Tests/obj/backendCD.Test.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.dgspec.json b/backendCs.Tests/obj/backendCs.Test.csproj.nuget.dgspec.json deleted file mode 100644 index 7df9c3c..0000000 --- a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.dgspec.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "format": 1, - "restore": { - "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj": {} - }, - "projects": { - "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj", - "projectName": "backendCs.Test", - "projectPath": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj", - "packagesPath": "/home/arch/.nuget/packages/", - "outputPath": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/home/arch/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[3.0.4, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[3.0.4, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.6.0, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.110/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.props b/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.props deleted file mode 100644 index 28fe72c..0000000 --- a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.props +++ /dev/null @@ -1,21 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - /home/arch/.nuget/packages/ - /home/arch/.nuget/packages/ - PackageReference - 6.8.1 - - - - - - - - - - - \ No newline at end of file diff --git a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.targets b/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.targets deleted file mode 100644 index 32fe07c..0000000 --- a/backendCs.Tests/obj/backendCs.Test.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/backendCs.Tests/obj/project.assets.json b/backendCs.Tests/obj/project.assets.json deleted file mode 100644 index ec1da1c..0000000 --- a/backendCs.Tests/obj/project.assets.json +++ /dev/null @@ -1,1151 +0,0 @@ -{ - "version": 3, - "targets": { - "net8.0": { - "coverlet.collector/6.0.0": { - "type": "package", - "build": { - "build/netstandard1.0/coverlet.collector.targets": {} - } - }, - "Microsoft.CodeCoverage/17.6.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.NET.Test.Sdk/17.6.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.6.0", - "Microsoft.TestPlatform.TestHost": "17.6.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": {} - }, - "runtime": { - "lib/netcoreapp3.1/_._": {} - }, - "build": { - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.6.0": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "5.11.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.6.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.6.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "MSTest.TestAdapter/3.0.4": { - "type": "package", - "build": { - "build/net6.0/MSTest.TestAdapter.props": {}, - "build/net6.0/MSTest.TestAdapter.targets": {} - } - }, - "MSTest.TestFramework/3.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "cs" - }, - "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "de" - }, - "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "es" - }, - "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "fr" - }, - "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "it" - }, - "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "ja" - }, - "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "ko" - }, - "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "pl" - }, - "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "pt-BR" - }, - "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "ru" - }, - "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "tr" - }, - "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/net6.0/MSTest.TestFramework.targets": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "NuGet.Frameworks/5.11.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - } - } - } - }, - "libraries": { - "coverlet.collector/6.0.0": { - "sha512": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", - "type": "package", - "path": "coverlet.collector/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard1.0/Microsoft.Bcl.AsyncInterfaces.dll", - "build/netstandard1.0/Microsoft.CSharp.dll", - "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", - "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", - "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", - "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "build/netstandard1.0/Mono.Cecil.Mdb.dll", - "build/netstandard1.0/Mono.Cecil.Pdb.dll", - "build/netstandard1.0/Mono.Cecil.Rocks.dll", - "build/netstandard1.0/Mono.Cecil.dll", - "build/netstandard1.0/Newtonsoft.Json.dll", - "build/netstandard1.0/NuGet.Frameworks.dll", - "build/netstandard1.0/System.AppContext.dll", - "build/netstandard1.0/System.Collections.Immutable.dll", - "build/netstandard1.0/System.Dynamic.Runtime.dll", - "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", - "build/netstandard1.0/System.Linq.Expressions.dll", - "build/netstandard1.0/System.Linq.dll", - "build/netstandard1.0/System.ObjectModel.dll", - "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "build/netstandard1.0/System.Reflection.Emit.dll", - "build/netstandard1.0/System.Reflection.Metadata.dll", - "build/netstandard1.0/System.Reflection.TypeExtensions.dll", - "build/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "build/netstandard1.0/System.Text.RegularExpressions.dll", - "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "build/netstandard1.0/System.Threading.dll", - "build/netstandard1.0/System.Xml.ReaderWriter.dll", - "build/netstandard1.0/System.Xml.XDocument.dll", - "build/netstandard1.0/coverlet.collector.deps.json", - "build/netstandard1.0/coverlet.collector.dll", - "build/netstandard1.0/coverlet.collector.pdb", - "build/netstandard1.0/coverlet.collector.targets", - "build/netstandard1.0/coverlet.core.dll", - "build/netstandard1.0/coverlet.core.pdb", - "coverlet-icon.png", - "coverlet.collector.6.0.0.nupkg.sha512", - "coverlet.collector.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.6.0": { - "sha512": "5v2GwzpR7JEuQUzupjx3zLwn2FutADW/weLzLt726DR3WXxsM+ICPoJG6pxuKFsumtZp890UrVuudTUhsE8Qyg==", - "type": "package", - "path": "microsoft.codecoverage/17.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.6.0.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/17.6.0": { - "sha512": "tHyg4C6c89QvLv6Utz3xKlba4EeoyJyIz59Q1NrjRENV7gfGnSE6I+sYPIbVOzQttoo2zpHDgOK/p6Hw2OlD7A==", - "type": "package", - "path": "microsoft.net.test.sdk/17.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net462/_._", - "lib/netcoreapp3.1/_._", - "microsoft.net.test.sdk.17.6.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.6.0": { - "sha512": "AA/rrf5zwC5/OBLEOajkhjbVTM3SvxRXy8kcQ8e4mJKojbyZvqqhpfNg362N9vXU94DLg9NUTFOAnoYVT0pTJw==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.6.0": { - "sha512": "7YdgUcIeCPVKLC7n7LNKDiEHWc7z3brkkYPdUbDnFsvf6WvY9UfzS0VSUJ8P2NgN0CDSD223GCJFSjSBLZRqOQ==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp3.1/x64/testhost.dll", - "build/netcoreapp3.1/x64/testhost.exe", - "build/netcoreapp3.1/x86/testhost.x86.dll", - "build/netcoreapp3.1/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/testhost.deps.json", - "lib/netcoreapp3.1/testhost.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/x64/msdia140.dll", - "lib/netcoreapp3.1/x86/msdia140.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.6.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "MSTest.TestAdapter/3.0.4": { - "sha512": "18THEGVcU4fbAOZWvRtEyvQCnZ/o+3LFAiFbAkWYh63GC5TmHoJ10IUiF9L02SMmbLbWpH1/PxvO7mcInIY4/Q==", - "type": "package", - "path": "mstest.testadapter/3.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/_localization/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/_localization/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/_localization/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", - "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", - "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "build/net462/MSTest.TestAdapter.props", - "build/net462/MSTest.TestAdapter.targets", - "build/net462/Microsoft.TestPlatform.AdapterUtilities.dll", - "build/net462/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/net462/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/net462/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net462/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/MSTest.TestAdapter.props", - "build/net6.0/MSTest.TestAdapter.targets", - "build/net6.0/Microsoft.TestPlatform.AdapterUtilities.dll", - "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/net6.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/net6.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/net6.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/MSTest.TestAdapter.props", - "build/netcoreapp3.1/Microsoft.TestPlatform.AdapterUtilities.dll", - "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/netcoreapp3.1/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/MSTest.TestAdapter.props", - "build/netstandard2.0/Microsoft.TestPlatform.AdapterUtilities.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/netstandard2.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/MSTest.TestAdapter.props", - "build/uap10.0/MSTest.TestAdapter.targets", - "build/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll", - "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", - "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", - "build/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", - "mstest.testadapter.3.0.4.nupkg.sha512", - "mstest.testadapter.nuspec" - ] - }, - "MSTest.TestFramework/3.0.4": { - "sha512": "hYq5xOOr2k09rtXpmcHkJ4Tdt/yS4cy8jiFPNMdDJP+lB6OY8yekOmQC4Fsvug4rhLpXGDd6zbPWYeoewqfePA==", - "type": "package", - "path": "mstest.testframework/3.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net6.0/MSTest.TestFramework.targets", - "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", - "mstest.testframework.3.0.4.nupkg.sha512", - "mstest.testframework.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "NuGet.Frameworks/5.11.0": { - "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", - "type": "package", - "path": "nuget.frameworks/5.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net472/NuGet.Frameworks.dll", - "lib/net472/NuGet.Frameworks.xml", - "lib/netstandard2.0/NuGet.Frameworks.dll", - "lib/netstandard2.0/NuGet.Frameworks.xml", - "nuget.frameworks.5.11.0.nupkg.sha512", - "nuget.frameworks.nuspec" - ] - }, - "System.Reflection.Metadata/1.6.0": { - "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "type": "package", - "path": "system.reflection.metadata/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.6.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net8.0": [ - "MSTest.TestAdapter >= 3.0.4", - "MSTest.TestFramework >= 3.0.4", - "Microsoft.NET.Test.Sdk >= 17.6.0", - "coverlet.collector >= 6.0.0" - ] - }, - "packageFolders": { - "/home/arch/.nuget/packages/": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj", - "projectName": "backendCs.Test", - "projectPath": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj", - "packagesPath": "/home/arch/.nuget/packages/", - "outputPath": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/obj/", - "projectStyle": "PackageReference", - "configFilePaths": [ - "/home/arch/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "MSTest.TestAdapter": { - "target": "Package", - "version": "[3.0.4, )" - }, - "MSTest.TestFramework": { - "target": "Package", - "version": "[3.0.4, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.6.0, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.10, 8.0.10]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.110/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/backendCs.Tests/obj/project.nuget.cache b/backendCs.Tests/obj/project.nuget.cache deleted file mode 100644 index 065604d..0000000 --- a/backendCs.Tests/obj/project.nuget.cache +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "Vow09WffKk6/6DguUqZNKmUYQdDCPGVBuip3M7OhLkceXUGI4wJgx+a7soIu/yv29h91cY3hReluc8rAg5j2ug==", - "success": true, - "projectFilePath": "/home/arch/projects/unfinished/timelog-interview-login/backendCs.Tests/backendCs.Test.csproj", - "expectedPackageFiles": [ - "/home/arch/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512", - "/home/arch/.nuget/packages/microsoft.codecoverage/17.6.0/microsoft.codecoverage.17.6.0.nupkg.sha512", - "/home/arch/.nuget/packages/microsoft.net.test.sdk/17.6.0/microsoft.net.test.sdk.17.6.0.nupkg.sha512", - "/home/arch/.nuget/packages/microsoft.testplatform.objectmodel/17.6.0/microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512", - "/home/arch/.nuget/packages/microsoft.testplatform.testhost/17.6.0/microsoft.testplatform.testhost.17.6.0.nupkg.sha512", - "/home/arch/.nuget/packages/mstest.testadapter/3.0.4/mstest.testadapter.3.0.4.nupkg.sha512", - "/home/arch/.nuget/packages/mstest.testframework/3.0.4/mstest.testframework.3.0.4.nupkg.sha512", - "/home/arch/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", - "/home/arch/.nuget/packages/nuget.frameworks/5.11.0/nuget.frameworks.5.11.0.nupkg.sha512", - "/home/arch/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512", - "/home/arch/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.10/microsoft.aspnetcore.app.ref.8.0.10.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/backendCs/.vscode/launch.json b/backendCs/.vscode/launch.json deleted file mode 100644 index a5a4b05..0000000 --- a/backendCs/.vscode/launch.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/net8.0/HelloWorldApp.dll", - "args": [], - "cwd": "${workspaceFolder}", - // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console - "console": "internalConsole", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/backendCs/.vscode/tasks.json b/backendCs/.vscode/tasks.json deleted file mode 100644 index 45082e9..0000000 --- a/backendCs/.vscode/tasks.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/HelloWorldApp.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary;ForceNoAlign" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/HelloWorldApp.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary;ForceNoAlign" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "--project", - "${workspaceFolder}/HelloWorldApp.csproj" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/backendCs/bin/Debug/net8.0/BouncyCastle.Cryptography.dll b/backendCs/bin/Debug/net8.0/BouncyCastle.Cryptography.dll deleted file mode 100755 index 782adf4..0000000 Binary files a/backendCs/bin/Debug/net8.0/BouncyCastle.Cryptography.dll and /dev/null differ diff --git a/backendCs/bin/Debug/net8.0/Google.Protobuf.dll b/backendCs/bin/Debug/net8.0/Google.Protobuf.dll deleted file mode 100755 index 5363ce3..0000000 Binary files a/backendCs/bin/Debug/net8.0/Google.Protobuf.dll and /dev/null differ diff --git a/backendCs/bin/Debug/net8.0/HelloWorldApp b/backendCs/bin/Debug/net8.0/HelloWorldApp deleted file mode 100755 index 71a03d9..0000000 Binary files a/backendCs/bin/Debug/net8.0/HelloWorldApp and /dev/null differ diff --git a/backendCs/bin/Debug/net8.0/HelloWorldApp.deps.json b/backendCs/bin/Debug/net8.0/HelloWorldApp.deps.json deleted file mode 100644 index 63e4cd1..0000000 --- a/backendCs/bin/Debug/net8.0/HelloWorldApp.deps.json +++ /dev/null @@ -1,490 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "HelloWorldApp/1.0.0": { - "dependencies": { - "MySql.Data": "9.1.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "HelloWorldApp.dll": {} - } - }, - "BouncyCastle.Cryptography/2.3.1": { - "runtime": { - "lib/net6.0/BouncyCastle.Cryptography.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.3.1.17862" - } - } - }, - "Google.Protobuf/3.26.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.26.1.0", - "fileVersion": "3.26.1.0" - } - } - }, - "K4os.Compression.LZ4/1.3.8": { - "runtime": { - "lib/net6.0/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.8.0", - "fileVersion": "1.3.8.0" - } - } - }, - "K4os.Compression.LZ4.Streams/1.3.8": { - "dependencies": { - "K4os.Compression.LZ4": "1.3.8", - "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" - }, - "runtime": { - "lib/net6.0/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.8.0", - "fileVersion": "1.3.8.0" - } - } - }, - "K4os.Hash.xxHash/1.0.8": { - "runtime": { - "lib/net6.0/K4os.Hash.xxHash.dll": { - "assemblyVersion": "1.0.8.0", - "fileVersion": "1.0.8.0" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "MySql.Data/9.1.0": { - "dependencies": { - "BouncyCastle.Cryptography": "2.3.1", - "Google.Protobuf": "3.26.1", - "K4os.Compression.LZ4.Streams": "1.3.8", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "8.0.0", - "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "8.0.4", - "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.0" - }, - "runtime": { - "lib/net8.0/MySql.Data.dll": { - "assemblyVersion": "9.1.0.0", - "fileVersion": "9.1.0.0" - } - }, - "runtimeTargets": { - "runtimes/win-x64/native/comerr64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/gssapi64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/k5sprt64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/krb5_64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/krbcc64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.Configuration.ConfigurationManager/8.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "8.0.0", - "System.Security.Cryptography.ProtectedData": "8.0.0" - }, - "runtime": { - "lib/net8.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Diagnostics.EventLog/8.0.0": { - "runtime": { - "lib/net8.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - }, - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Pipelines/6.0.3": { - "runtime": { - "lib/net6.0/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/8.0.0": { - "runtime": { - "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Security.Permissions/8.0.0": { - "dependencies": { - "System.Windows.Extensions": "8.0.0" - }, - "runtime": { - "lib/net8.0/System.Security.Permissions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/8.0.0": {}, - "System.Text.Encodings.Web/8.0.0": {}, - "System.Text.Json/8.0.4": { - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Windows.Extensions/8.0.0": { - "runtime": { - "lib/net8.0/System.Windows.Extensions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "ZstdSharp.Port/0.8.0": { - "runtime": { - "lib/net8.0/ZstdSharp.dll": { - "assemblyVersion": "0.8.0.0", - "fileVersion": "0.8.0.0" - } - } - } - } - }, - "libraries": { - "HelloWorldApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BouncyCastle.Cryptography/2.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-buwoISwecYke3CmgG1AQSg+sNZjJeIb93vTAtJiHZX35hP/teYMxsfg0NDXGUKjGx6BKBTNKc77O2M3vKvlXZQ==", - "path": "bouncycastle.cryptography/2.3.1", - "hashPath": "bouncycastle.cryptography.2.3.1.nupkg.sha512" - }, - "Google.Protobuf/3.26.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CHZX8zXqhF/fdUtd+AYzew8T2HFkAoe5c7lbGxZY/qryAlQXckDvM5BfOJjXlMS7kyICqQTMszj4w1bX5uBJ/w==", - "path": "google.protobuf/3.26.1", - "hashPath": "google.protobuf.3.26.1.nupkg.sha512" - }, - "K4os.Compression.LZ4/1.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", - "path": "k4os.compression.lz4/1.3.8", - "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" - }, - "K4os.Compression.LZ4.Streams/1.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", - "path": "k4os.compression.lz4.streams/1.3.8", - "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" - }, - "K4os.Hash.xxHash/1.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==", - "path": "k4os.hash.xxhash/1.0.8", - "hashPath": "k4os.hash.xxhash.1.0.8.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "MySql.Data/9.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E4t/IQzcXg4nYGqrGkoGwwSWA1V2L+LKzVddPABAPcj2i6RESP2fcZQ4XFC0Wv+Cq4DlgR3DYhX/fGaZ3VxCPQ==", - "path": "mysql.data/9.1.0", - "hashPath": "mysql.data.9.1.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", - "path": "system.configuration.configurationmanager/8.0.0", - "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Diagnostics.EventLog/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", - "path": "system.diagnostics.eventlog/8.0.0", - "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/6.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", - "path": "system.security.cryptography.protecteddata/8.0.0", - "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" - }, - "System.Security.Permissions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", - "path": "system.security.permissions/8.0.0", - "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", - "path": "system.text.encoding.codepages/8.0.0", - "hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", - "path": "system.text.encodings.web/8.0.0", - "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" - }, - "System.Text.Json/8.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==", - "path": "system.text.json/8.0.4", - "hashPath": "system.text.json.8.0.4.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Windows.Extensions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Obg3a90MkOw9mYKxrardLpY2u0axDMrSmy4JCdq2cYbelM2cUwmUir5Bomvd1yxmPL9h5LVHU1tuKBZpUjfASg==", - "path": "system.windows.extensions/8.0.0", - "hashPath": "system.windows.extensions.8.0.0.nupkg.sha512" - }, - "ZstdSharp.Port/0.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z62eNBIu8E8YtbqlMy57tK3dV1+m2b9NhPeaYovB5exmLKvrGCqOhJTzrEUH5VyUWU6vwX3c1XHJGhW5HVs8dA==", - "path": "zstdsharp.port/0.8.0", - "hashPath": "zstdsharp.port.0.8.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/backendCs/bin/Debug/net8.0/HelloWorldApp.dll b/backendCs/bin/Debug/net8.0/HelloWorldApp.dll deleted file mode 100644 index 7c8cb85..0000000 Binary files a/backendCs/bin/Debug/net8.0/HelloWorldApp.dll and /dev/null differ