diff --git a/Twitter/.vs/Twitter/DesignTimeBuild/.dtbcache.v2 b/.vs/Twitter/DesignTimeBuild/.dtbcache.v2 similarity index 100% rename from Twitter/.vs/Twitter/DesignTimeBuild/.dtbcache.v2 rename to .vs/Twitter/DesignTimeBuild/.dtbcache.v2 diff --git a/Twitter/.vs/Twitter/config/applicationhost.config b/.vs/Twitter/config/applicationhost.config similarity index 99% rename from Twitter/.vs/Twitter/config/applicationhost.config rename to .vs/Twitter/config/applicationhost.config index 8f9e7df..8746732 100644 --- a/Twitter/.vs/Twitter/config/applicationhost.config +++ b/.vs/Twitter/config/applicationhost.config @@ -157,7 +157,7 @@ - + diff --git a/.vs/Twitter/v16/.suo b/.vs/Twitter/v16/.suo new file mode 100644 index 0000000..1f060d4 Binary files /dev/null and b/.vs/Twitter/v16/.suo differ diff --git a/README.md b/README.md deleted file mode 100644 index c1fde37..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# Hackathon-Project diff --git a/Twitter/Twitter.sln b/Twitter.sln similarity index 100% rename from Twitter/Twitter.sln rename to Twitter.sln diff --git a/Twitter/.vs/Twitter/v16/.suo b/Twitter/.vs/Twitter/v16/.suo deleted file mode 100644 index af14d26..0000000 Binary files a/Twitter/.vs/Twitter/v16/.suo and /dev/null differ diff --git a/Twitter/Twitter/Areas/Identity/Pages/_ViewStart.cshtml b/Twitter/Areas/Identity/Pages/_ViewStart.cshtml similarity index 100% rename from Twitter/Twitter/Areas/Identity/Pages/_ViewStart.cshtml rename to Twitter/Areas/Identity/Pages/_ViewStart.cshtml diff --git a/Twitter/Controllers/FavouritesController .cs b/Twitter/Controllers/FavouritesController .cs new file mode 100644 index 0000000..60db90f --- /dev/null +++ b/Twitter/Controllers/FavouritesController .cs @@ -0,0 +1,54 @@ +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Twitter.Data; +using Twitter.Models; + +namespace Twitter.Controllers +{ + public class FavouritesController : Controller + { + private readonly ApplicationDbContext _db; + private readonly UserManager _userManager; + private object p; + [ActivatorUtilitiesConstructor] + public FavouritesController(ApplicationDbContext db, UserManager userManager) + { + _db = db; + _userManager = userManager; + } + public FavouritesController() + { + } + public IActionResult Index() + { + var userId = _userManager.GetUserId(User); + var favList = _db.Favorites.Where(f => f.UserId == userId) + .Include(f => f.Tweet).ToList(); + var favEvents = new List(); + foreach (var fav in favList) + favEvents.Add(fav.Tweet); + ViewData["favEvents"] = favEvents; + return View(); + } + // POST: /Events/delete/id + [HttpPost] + public IActionResult Delete(int? id) + { + var userId = _userManager.GetUserId(User); + var Favorits = _db.Favorites.First(f => f.TweetId == id && f.UserId == userId); + if (id == null || Favorits == null) + { + return View("_NotFound"); + } + _db.Favorites.Remove(Favorits); + _db.SaveChanges(); + return RedirectToAction("Index"); + } + } +} diff --git a/Twitter/Twitter/Controllers/HomeController.cs b/Twitter/Controllers/HomeController.cs similarity index 100% rename from Twitter/Twitter/Controllers/HomeController.cs rename to Twitter/Controllers/HomeController.cs diff --git a/Twitter/Twitter/Data/ApplicationDbContext.cs b/Twitter/Data/ApplicationDbContext.cs similarity index 100% rename from Twitter/Twitter/Data/ApplicationDbContext.cs rename to Twitter/Data/ApplicationDbContext.cs diff --git a/Twitter/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs b/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs rename to Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.cs b/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.cs rename to Twitter/Data/Migrations/00000000000000_CreateIdentitySchema.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620090525_AddTweetsTable.Designer.cs b/Twitter/Data/Migrations/20210620090525_AddTweetsTable.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620090525_AddTweetsTable.Designer.cs rename to Twitter/Data/Migrations/20210620090525_AddTweetsTable.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620090525_AddTweetsTable.cs b/Twitter/Data/Migrations/20210620090525_AddTweetsTable.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620090525_AddTweetsTable.cs rename to Twitter/Data/Migrations/20210620090525_AddTweetsTable.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620102738_EditTweet.Designer.cs b/Twitter/Data/Migrations/20210620102738_EditTweet.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620102738_EditTweet.Designer.cs rename to Twitter/Data/Migrations/20210620102738_EditTweet.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620102738_EditTweet.cs b/Twitter/Data/Migrations/20210620102738_EditTweet.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620102738_EditTweet.cs rename to Twitter/Data/Migrations/20210620102738_EditTweet.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620103340_SeedTestTweet.Designer.cs b/Twitter/Data/Migrations/20210620103340_SeedTestTweet.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620103340_SeedTestTweet.Designer.cs rename to Twitter/Data/Migrations/20210620103340_SeedTestTweet.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620103340_SeedTestTweet.cs b/Twitter/Data/Migrations/20210620103340_SeedTestTweet.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620103340_SeedTestTweet.cs rename to Twitter/Data/Migrations/20210620103340_SeedTestTweet.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620114500_DeleteSeeding.Designer.cs b/Twitter/Data/Migrations/20210620114500_DeleteSeeding.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620114500_DeleteSeeding.Designer.cs rename to Twitter/Data/Migrations/20210620114500_DeleteSeeding.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620114500_DeleteSeeding.cs b/Twitter/Data/Migrations/20210620114500_DeleteSeeding.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620114500_DeleteSeeding.cs rename to Twitter/Data/Migrations/20210620114500_DeleteSeeding.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620121825_TablesCreating.Designer.cs b/Twitter/Data/Migrations/20210620121825_TablesCreating.Designer.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620121825_TablesCreating.Designer.cs rename to Twitter/Data/Migrations/20210620121825_TablesCreating.Designer.cs diff --git a/Twitter/Twitter/Data/Migrations/20210620121825_TablesCreating.cs b/Twitter/Data/Migrations/20210620121825_TablesCreating.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/20210620121825_TablesCreating.cs rename to Twitter/Data/Migrations/20210620121825_TablesCreating.cs diff --git a/Twitter/Twitter/Data/Migrations/ApplicationDbContextModelSnapshot.cs b/Twitter/Data/Migrations/ApplicationDbContextModelSnapshot.cs similarity index 100% rename from Twitter/Twitter/Data/Migrations/ApplicationDbContextModelSnapshot.cs rename to Twitter/Data/Migrations/ApplicationDbContextModelSnapshot.cs diff --git a/Twitter/Hackathon-Project b/Twitter/Hackathon-Project new file mode 160000 index 0000000..6002973 --- /dev/null +++ b/Twitter/Hackathon-Project @@ -0,0 +1 @@ +Subproject commit 6002973e67cbbed37102eb033b7e95042dadddb0 diff --git a/Twitter/Twitter/Models/ErrorViewModel.cs b/Twitter/Models/ErrorViewModel.cs similarity index 100% rename from Twitter/Twitter/Models/ErrorViewModel.cs rename to Twitter/Models/ErrorViewModel.cs diff --git a/Twitter/Twitter/Models/FavoriteModel.cs b/Twitter/Models/FavoriteModel.cs similarity index 100% rename from Twitter/Twitter/Models/FavoriteModel.cs rename to Twitter/Models/FavoriteModel.cs diff --git a/Twitter/Twitter/Models/FolloingModel.cs b/Twitter/Models/FolloingModel.cs similarity index 100% rename from Twitter/Twitter/Models/FolloingModel.cs rename to Twitter/Models/FolloingModel.cs diff --git a/Twitter/Twitter/Models/TweetModel.cs b/Twitter/Models/TweetModel.cs similarity index 100% rename from Twitter/Twitter/Models/TweetModel.cs rename to Twitter/Models/TweetModel.cs diff --git a/Twitter/Twitter/Program.cs b/Twitter/Program.cs similarity index 100% rename from Twitter/Twitter/Program.cs rename to Twitter/Program.cs diff --git a/Twitter/Twitter/Properties/launchSettings.json b/Twitter/Properties/launchSettings.json similarity index 100% rename from Twitter/Twitter/Properties/launchSettings.json rename to Twitter/Properties/launchSettings.json diff --git a/Twitter/Twitter/Properties/serviceDependencies.json b/Twitter/Properties/serviceDependencies.json similarity index 100% rename from Twitter/Twitter/Properties/serviceDependencies.json rename to Twitter/Properties/serviceDependencies.json diff --git a/Twitter/Twitter/Properties/serviceDependencies.local.json b/Twitter/Properties/serviceDependencies.local.json similarity index 100% rename from Twitter/Twitter/Properties/serviceDependencies.local.json rename to Twitter/Properties/serviceDependencies.local.json diff --git a/Twitter/Twitter/Properties/serviceDependencies.local.json.user b/Twitter/Properties/serviceDependencies.local.json.user similarity index 100% rename from Twitter/Twitter/Properties/serviceDependencies.local.json.user rename to Twitter/Properties/serviceDependencies.local.json.user diff --git a/Twitter/Twitter/Startup.cs b/Twitter/Startup.cs similarity index 100% rename from Twitter/Twitter/Startup.cs rename to Twitter/Startup.cs diff --git a/Twitter/Twitter/Twitter.csproj b/Twitter/Twitter.csproj similarity index 100% rename from Twitter/Twitter/Twitter.csproj rename to Twitter/Twitter.csproj diff --git a/Twitter/Twitter/Twitter.csproj.user b/Twitter/Twitter.csproj.user similarity index 62% rename from Twitter/Twitter/Twitter.csproj.user rename to Twitter/Twitter.csproj.user index 4586055..9a3baee 100644 --- a/Twitter/Twitter/Twitter.csproj.user +++ b/Twitter/Twitter.csproj.user @@ -3,5 +3,7 @@ RazorViewEmptyScaffolder root/Common/MVC/View + MvcControllerEmptyScaffolder + root/Common/MVC/Controller \ No newline at end of file diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml b/Twitter/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml deleted file mode 100644 index 7551341..0000000 --- a/Twitter/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.dll b/Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.dll deleted file mode 100644 index e4cd8bd..0000000 Binary files a/Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.dll and /dev/null differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.dll b/Twitter/Twitter/bin/Debug/net5.0/Twitter.dll deleted file mode 100644 index d821677..0000000 Binary files a/Twitter/Twitter/bin/Debug/net5.0/Twitter.dll and /dev/null differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json b/Twitter/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json deleted file mode 100644 index 43abeb0..0000000 --- a/Twitter/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Samirah Alhusayni\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Twitter/Twitter/bin/Debug/net5.0/ref/Twitter.dll b/Twitter/Twitter/bin/Debug/net5.0/ref/Twitter.dll deleted file mode 100644 index 7f533a0..0000000 Binary files a/Twitter/Twitter/bin/Debug/net5.0/ref/Twitter.dll and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache b/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache deleted file mode 100644 index f310f2f..0000000 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache +++ /dev/null @@ -1 +0,0 @@ -a04ab5037d34bde269a500ffa35ce6c12cdff960 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.dll b/Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.dll deleted file mode 100644 index e4cd8bd..0000000 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.dll and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.assets.cache b/Twitter/Twitter/obj/Debug/net5.0/Twitter.assets.cache deleted file mode 100644 index 7afdd64..0000000 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.assets.cache and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache b/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache deleted file mode 100644 index 99038ad..0000000 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache b/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache deleted file mode 100644 index 81a306e..0000000 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -601557ad63a418ee89349e089bcb42838e5c2fe3 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.dll b/Twitter/Twitter/obj/Debug/net5.0/Twitter.dll deleted file mode 100644 index d821677..0000000 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.dll and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache b/Twitter/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache deleted file mode 100644 index 45727b5..0000000 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -4b216aff237a0bdc813bcbb0e57e72a80f2f2b69 diff --git a/Twitter/Twitter/obj/Debug/net5.0/ref/Twitter.dll b/Twitter/Twitter/obj/Debug/net5.0/ref/Twitter.dll deleted file mode 100644 index 7f533a0..0000000 Binary files a/Twitter/Twitter/obj/Debug/net5.0/ref/Twitter.dll and /dev/null differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache b/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache deleted file mode 100644 index c201cb3..0000000 --- a/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache +++ /dev/null @@ -1 +0,0 @@ -41b7058ed3577e84668c460b71e7b25cc6ce1f88 diff --git a/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml b/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml deleted file mode 100644 index 7551341..0000000 --- a/Twitter/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Twitter/Twitter/obj/project.nuget.cache b/Twitter/Twitter/obj/project.nuget.cache deleted file mode 100644 index 078317f..0000000 --- a/Twitter/Twitter/obj/project.nuget.cache +++ /dev/null @@ -1,126 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "mAD3M02PKYv/Y98/0SY69B+eGFOS17ejKUIo1IgTC/eURtLlADvsm0zCHmdSIG83XZF4WAcaYHZbn3dBuf1Aqw==", - "success": true, - "projectFilePath": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.7\\microsoft.aspnetcore.cryptography.internal.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.7\\microsoft.aspnetcore.cryptography.keyderivation.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.entityframeworkcore\\5.0.7\\microsoft.aspnetcore.diagnostics.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\5.0.7\\microsoft.aspnetcore.identity.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.identity.ui\\5.0.7\\microsoft.aspnetcore.identity.ui.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\5.0.7\\microsoft.aspnetcore.mvc.razor.extensions.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\5.0.7\\microsoft.aspnetcore.mvc.razor.runtimecompilation.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.7\\microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.7\\microsoft.codeanalysis.razor.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.data.sqlclient\\2.0.1\\microsoft.data.sqlclient.2.0.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.0.1\\microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.7\\microsoft.entityframeworkcore.design.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\5.0.7\\microsoft.entityframeworkcore.sqlserver.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\5.0.7\\microsoft.entityframeworkcore.tools.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\5.0.7\\microsoft.extensions.fileproviders.embedded.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.identity.core\\5.0.7\\microsoft.extensions.identity.core.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.identity.stores\\5.0.7\\microsoft.extensions.identity.stores.5.0.7.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identity.client\\4.14.0\\microsoft.identity.client.4.14.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.6.0\\microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identitymodel.logging\\5.6.0\\microsoft.identitymodel.logging.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.6.0\\microsoft.identitymodel.protocols.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.6.0\\microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.6.0\\microsoft.identitymodel.tokens.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.6.0\\system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Twitter/Views/Home/Delete.cshtml b/Twitter/Views/Home/Delete.cshtml new file mode 100644 index 0000000..7197b88 --- /dev/null +++ b/Twitter/Views/Home/Delete.cshtml @@ -0,0 +1 @@ +

Delete

\ No newline at end of file diff --git a/Twitter/Twitter/Views/Home/Index.cshtml b/Twitter/Views/Home/Index.cshtml similarity index 100% rename from Twitter/Twitter/Views/Home/Index.cshtml rename to Twitter/Views/Home/Index.cshtml diff --git a/Twitter/Views/Home/Privacy.cshtml b/Twitter/Views/Home/Privacy.cshtml new file mode 100644 index 0000000..af4fb19 --- /dev/null +++ b/Twitter/Views/Home/Privacy.cshtml @@ -0,0 +1,6 @@ +@{ + ViewData["Title"] = "Privacy Policy"; +} +

@ViewData["Title"]

+ +

Use this page to detail your site's privacy policy.

diff --git a/Twitter/Views/Home/Reply.cshtml b/Twitter/Views/Home/Reply.cshtml new file mode 100644 index 0000000..45d2ba7 --- /dev/null +++ b/Twitter/Views/Home/Reply.cshtml @@ -0,0 +1 @@ +

Reply

\ No newline at end of file diff --git a/Twitter/Views/Home/TweeT.cshtml b/Twitter/Views/Home/TweeT.cshtml new file mode 100644 index 0000000..ed239ae --- /dev/null +++ b/Twitter/Views/Home/TweeT.cshtml @@ -0,0 +1 @@ +

Tweet

\ No newline at end of file diff --git a/Twitter/Twitter/Views/Shared/Error.cshtml b/Twitter/Views/Shared/Error.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/Error.cshtml rename to Twitter/Views/Shared/Error.cshtml diff --git a/Twitter/Twitter/Views/Shared/_Layout.cshtml b/Twitter/Views/Shared/_Layout.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/_Layout.cshtml rename to Twitter/Views/Shared/_Layout.cshtml diff --git a/Twitter/Twitter/Views/Shared/_LoginPartial.cshtml b/Twitter/Views/Shared/_LoginPartial.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/_LoginPartial.cshtml rename to Twitter/Views/Shared/_LoginPartial.cshtml diff --git a/Twitter/Twitter/Views/Shared/_RightBar.cshtml b/Twitter/Views/Shared/_RightBar.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/_RightBar.cshtml rename to Twitter/Views/Shared/_RightBar.cshtml diff --git a/Twitter/Twitter/Views/Shared/_SideMenu.cshtml b/Twitter/Views/Shared/_SideMenu.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/_SideMenu.cshtml rename to Twitter/Views/Shared/_SideMenu.cshtml diff --git a/Twitter/Twitter/Views/Shared/_ValidationScriptsPartial.cshtml b/Twitter/Views/Shared/_ValidationScriptsPartial.cshtml similarity index 100% rename from Twitter/Twitter/Views/Shared/_ValidationScriptsPartial.cshtml rename to Twitter/Views/Shared/_ValidationScriptsPartial.cshtml diff --git a/Twitter/Twitter/Views/_ViewImports.cshtml b/Twitter/Views/_ViewImports.cshtml similarity index 100% rename from Twitter/Twitter/Views/_ViewImports.cshtml rename to Twitter/Views/_ViewImports.cshtml diff --git a/Twitter/Twitter/Views/_ViewStart.cshtml b/Twitter/Views/_ViewStart.cshtml similarity index 100% rename from Twitter/Twitter/Views/_ViewStart.cshtml rename to Twitter/Views/_ViewStart.cshtml diff --git a/Twitter/Twitter/appsettings.Development.json b/Twitter/appsettings.Development.json similarity index 100% rename from Twitter/Twitter/appsettings.Development.json rename to Twitter/appsettings.Development.json diff --git a/Twitter/Twitter/bin/Debug/net5.0/appsettings.json b/Twitter/appsettings.json similarity index 59% rename from Twitter/Twitter/bin/Debug/net5.0/appsettings.json rename to Twitter/appsettings.json index f4ffcdf..6cc290a 100644 --- a/Twitter/Twitter/bin/Debug/net5.0/appsettings.json +++ b/Twitter/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=LAPTOP-NHP8C8BL;Database=aspnet-Twitter;Trusted_Connection=True;MultipleActiveResultSets=true" + "DefaultConnection": "Server=DESKTOP-SP2UVRT\\SQLEXPRESS01;Database=aspnet-Twitter;Trusted_Connection=True;MultipleActiveResultSets=true" }, "Logging": { "LogLevel": { diff --git a/Twitter/Twitter/bin/Debug/net5.0/Humanizer.dll b/Twitter/bin/Debug/net5.0/Humanizer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Humanizer.dll rename to Twitter/bin/Debug/net5.0/Humanizer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.UI.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll b/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll rename to Twitter/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll b/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll rename to Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll b/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll rename to Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll b/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll rename to Twitter/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll b/Twitter/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll rename to Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll b/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll rename to Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll b/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll rename to Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll rename to Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll b/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll rename to Twitter/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll b/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll b/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll b/Twitter/bin/Debug/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll b/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll b/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.Identity.Client.dll b/Twitter/bin/Debug/net5.0/Microsoft.Identity.Client.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.Identity.Client.dll rename to Twitter/bin/Debug/net5.0/Microsoft.Identity.Client.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll rename to Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll b/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll rename to Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll rename to Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll b/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll rename to Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll b/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll rename to Twitter/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/Newtonsoft.Json.dll b/Twitter/bin/Debug/net5.0/Newtonsoft.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Newtonsoft.Json.dll rename to Twitter/bin/Debug/net5.0/Newtonsoft.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll b/Twitter/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll rename to Twitter/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll b/Twitter/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll rename to Twitter/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll b/Twitter/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll rename to Twitter/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/System.Runtime.Caching.dll b/Twitter/bin/Debug/net5.0/System.Runtime.Caching.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/System.Runtime.Caching.dll rename to Twitter/bin/Debug/net5.0/System.Runtime.Caching.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll b/Twitter/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll rename to Twitter/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll diff --git a/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml b/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml new file mode 100644 index 0000000..685b9b1 --- /dev/null +++ b/Twitter/bin/Debug/net5.0/Twitter.StaticWebAssets.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Twitter/bin/Debug/net5.0/Twitter.Views.dll b/Twitter/bin/Debug/net5.0/Twitter.Views.dll new file mode 100644 index 0000000..a9433c7 Binary files /dev/null and b/Twitter/bin/Debug/net5.0/Twitter.Views.dll differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.pdb b/Twitter/bin/Debug/net5.0/Twitter.Views.pdb similarity index 76% rename from Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.pdb rename to Twitter/bin/Debug/net5.0/Twitter.Views.pdb index b521813..c446428 100644 Binary files a/Twitter/Twitter/bin/Debug/net5.0/Twitter.Views.pdb and b/Twitter/bin/Debug/net5.0/Twitter.Views.pdb differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.deps.json b/Twitter/bin/Debug/net5.0/Twitter.deps.json similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Twitter.deps.json rename to Twitter/bin/Debug/net5.0/Twitter.deps.json diff --git a/Twitter/bin/Debug/net5.0/Twitter.dll b/Twitter/bin/Debug/net5.0/Twitter.dll new file mode 100644 index 0000000..12a51d5 Binary files /dev/null and b/Twitter/bin/Debug/net5.0/Twitter.dll differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.exe b/Twitter/bin/Debug/net5.0/Twitter.exe similarity index 98% rename from Twitter/Twitter/bin/Debug/net5.0/Twitter.exe rename to Twitter/bin/Debug/net5.0/Twitter.exe index 321bd57..5228f6d 100644 Binary files a/Twitter/Twitter/bin/Debug/net5.0/Twitter.exe and b/Twitter/bin/Debug/net5.0/Twitter.exe differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.pdb b/Twitter/bin/Debug/net5.0/Twitter.pdb similarity index 69% rename from Twitter/Twitter/bin/Debug/net5.0/Twitter.pdb rename to Twitter/bin/Debug/net5.0/Twitter.pdb index 9dafc75..fff4039 100644 Binary files a/Twitter/Twitter/bin/Debug/net5.0/Twitter.pdb and b/Twitter/bin/Debug/net5.0/Twitter.pdb differ diff --git a/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json b/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json new file mode 100644 index 0000000..675db10 --- /dev/null +++ b/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\WIN\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\WIN\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/Twitter/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.json b/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.json similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.json rename to Twitter/bin/Debug/net5.0/Twitter.runtimeconfig.json diff --git a/Twitter/Twitter/bin/Debug/net5.0/appsettings.Development.json b/Twitter/bin/Debug/net5.0/appsettings.Development.json similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/appsettings.Development.json rename to Twitter/bin/Debug/net5.0/appsettings.Development.json diff --git a/Twitter/Twitter/appsettings.json b/Twitter/bin/Debug/net5.0/appsettings.json similarity index 59% rename from Twitter/Twitter/appsettings.json rename to Twitter/bin/Debug/net5.0/appsettings.json index f4ffcdf..6cc290a 100644 --- a/Twitter/Twitter/appsettings.json +++ b/Twitter/bin/Debug/net5.0/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=LAPTOP-NHP8C8BL;Database=aspnet-Twitter;Trusted_Connection=True;MultipleActiveResultSets=true" + "DefaultConnection": "Server=DESKTOP-SP2UVRT\\SQLEXPRESS01;Database=aspnet-Twitter;Trusted_Connection=True;MultipleActiveResultSets=true" }, "Logging": { "LogLevel": { diff --git a/Twitter/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/bin/Debug/net5.0/ref/Twitter.dll b/Twitter/bin/Debug/net5.0/ref/Twitter.dll new file mode 100644 index 0000000..d9f5259 Binary files /dev/null and b/Twitter/bin/Debug/net5.0/ref/Twitter.dll differ diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Antiforgery.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Antiforgery.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Antiforgery.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Core.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authentication.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Authorization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Authorization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Authorization.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Authorization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Forms.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Forms.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Forms.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Server.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Server.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Server.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Server.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Web.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Web.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Web.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.Web.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Components.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.CookiePolicy.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.CookiePolicy.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.CookiePolicy.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Cors.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Cors.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Cors.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Cors.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.DataProtection.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Diagnostics.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HostFiltering.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HostFiltering.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HostFiltering.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Hosting.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Connections.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Features.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Features.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Features.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.Features.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Http.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpOverrides.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpOverrides.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpOverrides.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Identity.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Identity.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Identity.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Identity.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.Routing.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.Routing.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.Routing.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Localization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Metadata.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Metadata.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Metadata.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Metadata.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Core.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Mvc.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Razor.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCaching.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCompression.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCompression.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.ResponseCompression.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Rewrite.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Rewrite.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Rewrite.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Rewrite.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Routing.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IIS.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IIS.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IIS.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Session.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Session.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Session.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.Session.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Common.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Common.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Common.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Core.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.SignalR.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.StaticFiles.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.StaticFiles.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.StaticFiles.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebSockets.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebSockets.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebSockets.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebSockets.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebUtilities.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebUtilities.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.WebUtilities.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.AspNetCore.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.CSharp.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.CSharp.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.CSharp.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.CSharp.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Memory.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Memory.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Memory.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Caching.Memory.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Binder.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Binder.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Binder.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Binder.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Ini.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Ini.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Ini.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Json.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Json.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Xml.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Xml.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.Xml.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Configuration.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Composite.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Composite.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Composite.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Physical.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Physical.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Physical.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileProviders.Physical.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Hosting.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Http.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Http.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Http.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Http.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Localization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Abstractions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Abstractions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Abstractions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Abstractions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Configuration.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Configuration.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Configuration.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Configuration.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Console.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Console.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Console.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Console.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Debug.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Debug.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Debug.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.Debug.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventLog.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventLog.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventLog.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventLog.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventSource.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventSource.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventSource.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.EventSource.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.TraceSource.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.TraceSource.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.TraceSource.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Logging.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.ObjectPool.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.ObjectPool.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.ObjectPool.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.ObjectPool.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Options.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.WebEncoders.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.WebEncoders.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.WebEncoders.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Extensions.WebEncoders.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.JSInterop.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.JSInterop.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.JSInterop.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.JSInterop.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Net.Http.Headers.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Net.Http.Headers.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Net.Http.Headers.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Net.Http.Headers.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.Core.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.Core.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.VisualBasic.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Registry.dll b/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Registry.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Registry.dll rename to Twitter/bin/Debug/net5.0/refs/Microsoft.Win32.Registry.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.AppContext.dll b/Twitter/bin/Debug/net5.0/refs/System.AppContext.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.AppContext.dll rename to Twitter/bin/Debug/net5.0/refs/System.AppContext.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Buffers.dll b/Twitter/bin/Debug/net5.0/refs/System.Buffers.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Buffers.dll rename to Twitter/bin/Debug/net5.0/refs/System.Buffers.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Concurrent.dll b/Twitter/bin/Debug/net5.0/refs/System.Collections.Concurrent.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Concurrent.dll rename to Twitter/bin/Debug/net5.0/refs/System.Collections.Concurrent.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Immutable.dll b/Twitter/bin/Debug/net5.0/refs/System.Collections.Immutable.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Immutable.dll rename to Twitter/bin/Debug/net5.0/refs/System.Collections.Immutable.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.NonGeneric.dll b/Twitter/bin/Debug/net5.0/refs/System.Collections.NonGeneric.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.NonGeneric.dll rename to Twitter/bin/Debug/net5.0/refs/System.Collections.NonGeneric.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Specialized.dll b/Twitter/bin/Debug/net5.0/refs/System.Collections.Specialized.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.Specialized.dll rename to Twitter/bin/Debug/net5.0/refs/System.Collections.Specialized.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.dll b/Twitter/bin/Debug/net5.0/refs/System.Collections.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Collections.dll rename to Twitter/bin/Debug/net5.0/refs/System.Collections.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Annotations.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Annotations.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Annotations.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Annotations.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.DataAnnotations.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.DataAnnotations.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.DataAnnotations.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.DataAnnotations.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.EventBasedAsync.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.EventBasedAsync.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.EventBasedAsync.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.EventBasedAsync.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.TypeConverter.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.TypeConverter.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.TypeConverter.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.TypeConverter.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.dll b/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ComponentModel.dll rename to Twitter/bin/Debug/net5.0/refs/System.ComponentModel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Configuration.dll b/Twitter/bin/Debug/net5.0/refs/System.Configuration.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Configuration.dll rename to Twitter/bin/Debug/net5.0/refs/System.Configuration.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Console.dll b/Twitter/bin/Debug/net5.0/refs/System.Console.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Console.dll rename to Twitter/bin/Debug/net5.0/refs/System.Console.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Core.dll b/Twitter/bin/Debug/net5.0/refs/System.Core.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Core.dll rename to Twitter/bin/Debug/net5.0/refs/System.Core.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.Common.dll b/Twitter/bin/Debug/net5.0/refs/System.Data.Common.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.Common.dll rename to Twitter/bin/Debug/net5.0/refs/System.Data.Common.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.DataSetExtensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Data.DataSetExtensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.DataSetExtensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Data.DataSetExtensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.dll b/Twitter/bin/Debug/net5.0/refs/System.Data.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Data.dll rename to Twitter/bin/Debug/net5.0/refs/System.Data.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Contracts.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Contracts.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Contracts.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Contracts.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Debug.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Debug.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Debug.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Debug.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.EventLog.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.EventLog.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.EventLog.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.EventLog.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.FileVersionInfo.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.FileVersionInfo.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.FileVersionInfo.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.FileVersionInfo.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Process.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Process.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Process.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Process.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.StackTrace.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.StackTrace.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.StackTrace.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.StackTrace.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TextWriterTraceListener.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TextWriterTraceListener.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TextWriterTraceListener.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tools.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tools.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tools.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tools.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TraceSource.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TraceSource.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TraceSource.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.TraceSource.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tracing.dll b/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tracing.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tracing.dll rename to Twitter/bin/Debug/net5.0/refs/System.Diagnostics.Tracing.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Drawing.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.Drawing.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Drawing.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.Drawing.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Drawing.dll b/Twitter/bin/Debug/net5.0/refs/System.Drawing.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Drawing.dll rename to Twitter/bin/Debug/net5.0/refs/System.Drawing.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Dynamic.Runtime.dll b/Twitter/bin/Debug/net5.0/refs/System.Dynamic.Runtime.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Dynamic.Runtime.dll rename to Twitter/bin/Debug/net5.0/refs/System.Dynamic.Runtime.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Formats.Asn1.dll b/Twitter/bin/Debug/net5.0/refs/System.Formats.Asn1.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Formats.Asn1.dll rename to Twitter/bin/Debug/net5.0/refs/System.Formats.Asn1.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.Calendars.dll b/Twitter/bin/Debug/net5.0/refs/System.Globalization.Calendars.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.Calendars.dll rename to Twitter/bin/Debug/net5.0/refs/System.Globalization.Calendars.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Globalization.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Globalization.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.dll b/Twitter/bin/Debug/net5.0/refs/System.Globalization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Globalization.dll rename to Twitter/bin/Debug/net5.0/refs/System.Globalization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.Brotli.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.Brotli.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.Brotli.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Compression.Brotli.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.FileSystem.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.FileSystem.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.FileSystem.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Compression.FileSystem.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.ZipFile.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.ZipFile.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.ZipFile.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Compression.ZipFile.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Compression.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Compression.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.DriveInfo.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.DriveInfo.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.DriveInfo.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.DriveInfo.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Watcher.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Watcher.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Watcher.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.Watcher.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.FileSystem.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.IsolatedStorage.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.IsolatedStorage.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.IsolatedStorage.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.IsolatedStorage.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.MemoryMappedFiles.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.MemoryMappedFiles.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.MemoryMappedFiles.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.MemoryMappedFiles.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Pipelines.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Pipelines.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Pipelines.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Pipelines.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Pipes.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.Pipes.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.Pipes.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.Pipes.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.UnmanagedMemoryStream.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.UnmanagedMemoryStream.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.UnmanagedMemoryStream.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.UnmanagedMemoryStream.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.dll b/Twitter/bin/Debug/net5.0/refs/System.IO.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.IO.dll rename to Twitter/bin/Debug/net5.0/refs/System.IO.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Expressions.dll b/Twitter/bin/Debug/net5.0/refs/System.Linq.Expressions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Expressions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Linq.Expressions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Parallel.dll b/Twitter/bin/Debug/net5.0/refs/System.Linq.Parallel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Parallel.dll rename to Twitter/bin/Debug/net5.0/refs/System.Linq.Parallel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Queryable.dll b/Twitter/bin/Debug/net5.0/refs/System.Linq.Queryable.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.Queryable.dll rename to Twitter/bin/Debug/net5.0/refs/System.Linq.Queryable.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.dll b/Twitter/bin/Debug/net5.0/refs/System.Linq.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Linq.dll rename to Twitter/bin/Debug/net5.0/refs/System.Linq.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Memory.dll b/Twitter/bin/Debug/net5.0/refs/System.Memory.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Memory.dll rename to Twitter/bin/Debug/net5.0/refs/System.Memory.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Http.Json.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Http.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Http.Json.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Http.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Http.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Http.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Http.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Http.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.HttpListener.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.HttpListener.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.HttpListener.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.HttpListener.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Mail.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Mail.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Mail.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Mail.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.NameResolution.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.NameResolution.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.NameResolution.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.NameResolution.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.NetworkInformation.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.NetworkInformation.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.NetworkInformation.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.NetworkInformation.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Ping.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Ping.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Ping.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Ping.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Requests.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Requests.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Requests.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Requests.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Security.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Security.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Security.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Security.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.ServicePoint.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.ServicePoint.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.ServicePoint.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.ServicePoint.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Sockets.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.Sockets.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.Sockets.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.Sockets.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebClient.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.WebClient.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebClient.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.WebClient.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebHeaderCollection.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.WebHeaderCollection.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebHeaderCollection.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.WebHeaderCollection.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebProxy.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.WebProxy.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebProxy.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.WebProxy.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.Client.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.Client.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.Client.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.Client.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.WebSockets.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.dll b/Twitter/bin/Debug/net5.0/refs/System.Net.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Net.dll rename to Twitter/bin/Debug/net5.0/refs/System.Net.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Numerics.Vectors.dll b/Twitter/bin/Debug/net5.0/refs/System.Numerics.Vectors.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Numerics.Vectors.dll rename to Twitter/bin/Debug/net5.0/refs/System.Numerics.Vectors.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Numerics.dll b/Twitter/bin/Debug/net5.0/refs/System.Numerics.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Numerics.dll rename to Twitter/bin/Debug/net5.0/refs/System.Numerics.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ObjectModel.dll b/Twitter/bin/Debug/net5.0/refs/System.ObjectModel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ObjectModel.dll rename to Twitter/bin/Debug/net5.0/refs/System.ObjectModel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.DispatchProxy.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.DispatchProxy.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.DispatchProxy.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.DispatchProxy.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.ILGeneration.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.ILGeneration.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.ILGeneration.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.ILGeneration.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.Lightweight.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.Lightweight.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.Lightweight.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.Lightweight.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Emit.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Metadata.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Metadata.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Metadata.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Metadata.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.TypeExtensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.TypeExtensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.TypeExtensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.TypeExtensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.dll b/Twitter/bin/Debug/net5.0/refs/System.Reflection.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Reflection.dll rename to Twitter/bin/Debug/net5.0/refs/System.Reflection.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.Reader.dll b/Twitter/bin/Debug/net5.0/refs/System.Resources.Reader.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.Reader.dll rename to Twitter/bin/Debug/net5.0/refs/System.Resources.Reader.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.ResourceManager.dll b/Twitter/bin/Debug/net5.0/refs/System.Resources.ResourceManager.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.ResourceManager.dll rename to Twitter/bin/Debug/net5.0/refs/System.Resources.ResourceManager.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.Writer.dll b/Twitter/bin/Debug/net5.0/refs/System.Resources.Writer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Resources.Writer.dll rename to Twitter/bin/Debug/net5.0/refs/System.Resources.Writer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.Unsafe.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.Unsafe.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.Unsafe.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.VisualC.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.VisualC.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.VisualC.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.CompilerServices.VisualC.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Handles.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Handles.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Handles.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Handles.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.InteropServices.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Intrinsics.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Intrinsics.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Intrinsics.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Intrinsics.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Loader.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Loader.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Loader.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Loader.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Numerics.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Numerics.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Numerics.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Numerics.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Formatters.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Formatters.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Formatters.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Formatters.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Json.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Json.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Xml.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Xml.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Xml.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.Xml.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.Serialization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.dll b/Twitter/bin/Debug/net5.0/refs/System.Runtime.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Runtime.dll rename to Twitter/bin/Debug/net5.0/refs/System.Runtime.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.AccessControl.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.AccessControl.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.AccessControl.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.AccessControl.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Claims.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Claims.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Claims.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Claims.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Algorithms.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Algorithms.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Algorithms.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Algorithms.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Cng.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Cng.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Cng.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Cng.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Csp.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Csp.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Csp.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Csp.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Encoding.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Encoding.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Encoding.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Encoding.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Primitives.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Primitives.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Primitives.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Primitives.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.X509Certificates.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.X509Certificates.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.X509Certificates.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.X509Certificates.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Xml.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Xml.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Xml.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Cryptography.Xml.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Permissions.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Permissions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Permissions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Permissions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.Windows.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.Windows.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.Windows.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Principal.Windows.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.Principal.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.Principal.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.SecureString.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.SecureString.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.SecureString.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.SecureString.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.dll b/Twitter/bin/Debug/net5.0/refs/System.Security.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Security.dll rename to Twitter/bin/Debug/net5.0/refs/System.Security.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ServiceModel.Web.dll b/Twitter/bin/Debug/net5.0/refs/System.ServiceModel.Web.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ServiceModel.Web.dll rename to Twitter/bin/Debug/net5.0/refs/System.ServiceModel.Web.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ServiceProcess.dll b/Twitter/bin/Debug/net5.0/refs/System.ServiceProcess.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ServiceProcess.dll rename to Twitter/bin/Debug/net5.0/refs/System.ServiceProcess.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.CodePages.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.CodePages.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.CodePages.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.CodePages.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.Encoding.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encodings.Web.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.Encodings.Web.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Encodings.Web.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.Encodings.Web.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Json.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.Json.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.Json.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.Json.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.RegularExpressions.dll b/Twitter/bin/Debug/net5.0/refs/System.Text.RegularExpressions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Text.RegularExpressions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Text.RegularExpressions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Channels.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Channels.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Channels.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Channels.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Overlapped.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Overlapped.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Overlapped.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Overlapped.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Dataflow.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Dataflow.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Dataflow.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Dataflow.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Parallel.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Parallel.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Parallel.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.Parallel.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Tasks.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Thread.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Thread.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Thread.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Thread.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.ThreadPool.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.ThreadPool.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.ThreadPool.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.ThreadPool.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Timer.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.Timer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.Timer.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.Timer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.dll b/Twitter/bin/Debug/net5.0/refs/System.Threading.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Threading.dll rename to Twitter/bin/Debug/net5.0/refs/System.Threading.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Transactions.Local.dll b/Twitter/bin/Debug/net5.0/refs/System.Transactions.Local.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Transactions.Local.dll rename to Twitter/bin/Debug/net5.0/refs/System.Transactions.Local.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Transactions.dll b/Twitter/bin/Debug/net5.0/refs/System.Transactions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Transactions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Transactions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.ValueTuple.dll b/Twitter/bin/Debug/net5.0/refs/System.ValueTuple.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.ValueTuple.dll rename to Twitter/bin/Debug/net5.0/refs/System.ValueTuple.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Web.HttpUtility.dll b/Twitter/bin/Debug/net5.0/refs/System.Web.HttpUtility.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Web.HttpUtility.dll rename to Twitter/bin/Debug/net5.0/refs/System.Web.HttpUtility.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Web.dll b/Twitter/bin/Debug/net5.0/refs/System.Web.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Web.dll rename to Twitter/bin/Debug/net5.0/refs/System.Web.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Windows.Extensions.dll b/Twitter/bin/Debug/net5.0/refs/System.Windows.Extensions.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Windows.Extensions.dll rename to Twitter/bin/Debug/net5.0/refs/System.Windows.Extensions.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Windows.dll b/Twitter/bin/Debug/net5.0/refs/System.Windows.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Windows.dll rename to Twitter/bin/Debug/net5.0/refs/System.Windows.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.Linq.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.Linq.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.Linq.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.Linq.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.ReaderWriter.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.ReaderWriter.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.ReaderWriter.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.ReaderWriter.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.Serialization.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.Serialization.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.Serialization.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.Serialization.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XDocument.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.XDocument.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XDocument.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.XDocument.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.XDocument.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.XDocument.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.XDocument.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.XDocument.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.XPath.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlDocument.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlDocument.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlDocument.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.XmlDocument.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlSerializer.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlSerializer.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.XmlSerializer.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.XmlSerializer.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.dll b/Twitter/bin/Debug/net5.0/refs/System.Xml.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.Xml.dll rename to Twitter/bin/Debug/net5.0/refs/System.Xml.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/System.dll b/Twitter/bin/Debug/net5.0/refs/System.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/System.dll rename to Twitter/bin/Debug/net5.0/refs/System.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/WindowsBase.dll b/Twitter/bin/Debug/net5.0/refs/WindowsBase.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/WindowsBase.dll rename to Twitter/bin/Debug/net5.0/refs/WindowsBase.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/mscorlib.dll b/Twitter/bin/Debug/net5.0/refs/mscorlib.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/mscorlib.dll rename to Twitter/bin/Debug/net5.0/refs/mscorlib.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/refs/netstandard.dll b/Twitter/bin/Debug/net5.0/refs/netstandard.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/refs/netstandard.dll rename to Twitter/bin/Debug/net5.0/refs/netstandard.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/Twitter/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll rename to Twitter/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll rename to Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb b/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb rename to Twitter/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll rename to Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb b/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb rename to Twitter/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll rename to Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb b/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb rename to Twitter/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll rename to Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb b/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb rename to Twitter/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/Twitter/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll rename to Twitter/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll rename to Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll rename to Twitter/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll rename to Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/Twitter/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll similarity index 100% rename from Twitter/Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll rename to Twitter/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/Twitter/Twitter/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Twitter/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs rename to Twitter/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs similarity index 83% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs index f7efe33..13bcc04 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Areas/Identity/Pages/_ViewStart.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Areas\Identity\Pages\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "13b82ef97968a56a4de533f67cf3e21d662f41aa" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Areas\Identity\Pages\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "330a635f71f47285eacb2484685031fe87558a73" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Areas_Identity_Pages__ViewStart), @"mvc.1.0.view", @"/Areas/Identity/Pages/_ViewStart.cshtml")] @@ -12,14 +12,14 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"13b82ef97968a56a4de533f67cf3e21d662f41aa", @"/Areas/Identity/Pages/_ViewStart.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"330a635f71f47285eacb2484685031fe87558a73", @"/Areas/Identity/Pages/_ViewStart.cshtml")] public class Areas_Identity_Pages__ViewStart : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Areas\Identity\Pages\_ViewStart.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Areas\Identity\Pages\_ViewStart.cshtml" Layout = "/Views/Shared/_Layout.cshtml"; diff --git a/Twitter/obj/Debug/net5.0/Razor/Views/Favourites/Index.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Favourites/Index.cshtml.g.cs new file mode 100644 index 0000000..794ede8 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Favourites/Index.cshtml.g.cs @@ -0,0 +1,181 @@ +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "de9893f6945260038c9dbff12f761c94095b345c" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Favourites_Index), @"mvc.1.0.view", @"/Views/Favourites/Index.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter; + +#line default +#line hidden +#nullable disable +#nullable restore +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"de9893f6945260038c9dbff12f761c94095b345c", @"/Views/Favourites/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] + public class Views_Favourites_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + { + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Delete", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + #line hidden + #pragma warning disable 0649 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext; + #pragma warning restore 0649 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner(); + #pragma warning disable 0169 + private string __tagHelperStringValueBuffer; + #pragma warning restore 0169 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager + { + get + { + if (__backed__tagHelperScopeManager == null) + { + __backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope); + } + return __backed__tagHelperScopeManager; + } + } + private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper; + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + + var favEvents = (List)ViewData["favEvents"]; + var count = 0; + +#line default +#line hidden +#nullable disable + WriteLiteral(@" + + + + + + + + + + + + +"); +#nullable restore +#line 18 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + foreach (var Event in favEvents) + { + +#line default +#line hidden +#nullable disable + WriteLiteral(" \r\n"); +#nullable restore +#line 21 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + count++; + +#line default +#line hidden +#nullable disable + WriteLiteral(" \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n \r\n"); +#nullable restore +#line 35 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + } + +#line default +#line hidden +#nullable disable + WriteLiteral("\r\n \r\n
NumberNameDate
"); +#nullable restore +#line 22 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + Write(count); + +#line default +#line hidden +#nullable disable + WriteLiteral(""); +#nullable restore +#line 23 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + Write(Event.Content); + +#line default +#line hidden +#nullable disable + WriteLiteral(""); +#nullable restore +#line 24 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + Write(Event.Time); + +#line default +#line hidden +#nullable disable + WriteLiteral("\r\n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "de9893f6945260038c9dbff12f761c94095b345c5792", async() => { + WriteLiteral("\r\n \r\n "); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Action = (string)__tagHelperAttribute_0.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); + if (__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues == null) + { + throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "RouteValues")); + } + BeginWriteTagHelperAttribute(); +#nullable restore +#line 29 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Favourites\Index.cshtml" + WriteLiteral(Event.Id); + +#line default +#line hidden +#nullable disable + __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; + __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + WriteLiteral("\r\n
\r\n"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/Twitter/obj/Debug/net5.0/Razor/Views/Home/Delete.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Delete.cshtml.g.cs new file mode 100644 index 0000000..40e951b --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Delete.cshtml.g.cs @@ -0,0 +1,51 @@ +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Delete.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ac61577b5ffc60c66f26415c023f10a4079512bc" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Delete), @"mvc.1.0.view", @"/Views/Home/Delete.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter; + +#line default +#line hidden +#nullable disable +#nullable restore +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ac61577b5ffc60c66f26415c023f10a4079512bc", @"/Views/Home/Delete.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] + public class Views_Home_Delete : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + { + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { + WriteLiteral("

Delete

"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs similarity index 79% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs index c9b5fcd..1248c7d 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Index.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "79d6c3f6601f94cdfc95c4460874353fcb784f24" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "87a9496a9058a4e9d803f571305d97077a58a055" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")] @@ -13,21 +13,21 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"79d6c3f6601f94cdfc95c4460874353fcb784f24", @"/Views/Home/Index.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"87a9496a9058a4e9d803f571305d97077a58a055", @"/Views/Home/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("name", "_SideMenu", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); @@ -63,20 +63,20 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage public async override global::System.Threading.Tasks.Task ExecuteAsync() { #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Home\Index.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Index.cshtml" ViewData["Title"] = "Home Page"; #line default #line hidden #nullable disable - WriteLiteral("\r\n"); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79d6c3f6601f94cdfc95c4460874353fcb784f245304", async() => { - WriteLiteral("\r\n \r\n { + WriteLiteral("\n \n \r\n
\r\n\r\n
\r\n \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "79d6c3f6601f94cdfc95c4460874353fcb784f245915", async() => { + WriteLiteral(">\n
\n\n
\n \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "87a9496a9058a4e9d803f571305d97077a58a0555853", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper(); @@ -103,12 +103,12 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage
- +
@@ -116,11 +116,11 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage
\r\n \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79d6c3f6601f94cdfc95c4460874353fcb784f249167", async() => { - WriteLiteral("\r\n
\r\n
\r\n \r\n \"",\n \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "87a9496a9058a4e9d803f571305d97077a58a0559080", async() => { + WriteLiteral("\n
\n
\n \n \"",
@@ -138,8 +138,8 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage
@@ -149,8 +149,8 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage
- "); - WriteLiteral(@"
+
@@ -158,8 +158,8 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage
@@ -189,21 +189,18 @@ public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
\r\n\r\n
\r\n\r\n
\r\n\r\n"); + WriteLiteral("\n
\n\n
\n\n
\n\n"); WriteLiteral(@"
\"",\r\n
\r\n
\r\n

\r\n - Sonali Hirave - - \r\n "); + WriteLiteral(" />\n

\n
\n

\n \n Sonali Hirave\n \n \n "); WriteLiteral(@"@ShonaDesign . 16 April

@@ -228,8 +225,8 @@ Sonali Hirave
@@ -239,8 +236,8 @@ Sonali Hirave
- "); - WriteLiteral(@"
+
@@ -248,8 +245,8 @@ Sonali Hirave @@ -263,8 +260,8 @@ Sonali Hirave
"); - WriteLiteral("\r\n
\r\n \r\n\r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "79d6c3f6601f94cdfc95c4460874353fcb784f2421089", async() => { + WriteLiteral("\n
\n \n\n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "87a9496a9058a4e9d803f571305d97077a58a05520856", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper(); @@ -278,7 +275,7 @@ Sonali Hirave } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
\r\n\r\n
\r\n\r\n
\r\n"); + WriteLiteral("\n
\n\n
\n\n
\n"); } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper = CreateTagHelper(); @@ -291,7 +288,7 @@ Sonali Hirave } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n\r\n\r\n"); + WriteLiteral("\n\n\n"); } #pragma warning restore 1998 [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] diff --git a/Twitter/obj/Debug/net5.0/Razor/Views/Home/Privacy.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Privacy.cshtml.g.cs new file mode 100644 index 0000000..2b75505 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Privacy.cshtml.g.cs @@ -0,0 +1,67 @@ +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0aa07997cef09066f0c784721652eef4b38cfb35" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Privacy), @"mvc.1.0.view", @"/Views/Home/Privacy.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter; + +#line default +#line hidden +#nullable disable +#nullable restore +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"0aa07997cef09066f0c784721652eef4b38cfb35", @"/Views/Home/Privacy.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] + public class Views_Home_Privacy : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + { + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Privacy.cshtml" + + ViewData["Title"] = "Privacy Policy"; + +#line default +#line hidden +#nullable disable + WriteLiteral("

"); +#nullable restore +#line 4 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Privacy.cshtml" +Write(ViewData["Title"]); + +#line default +#line hidden +#nullable disable + WriteLiteral("

\n\n

Use this page to detail your site\'s privacy policy.

\n"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/Twitter/obj/Debug/net5.0/Razor/Views/Home/Reply.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Reply.cshtml.g.cs new file mode 100644 index 0000000..090d208 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Home/Reply.cshtml.g.cs @@ -0,0 +1,51 @@ +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\Reply.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "129fa0ae5a9021b6cbe107206b7474262ea310fd" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Reply), @"mvc.1.0.view", @"/Views/Home/Reply.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter; + +#line default +#line hidden +#nullable disable +#nullable restore +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"129fa0ae5a9021b6cbe107206b7474262ea310fd", @"/Views/Home/Reply.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] + public class Views_Home_Reply : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + { + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { + WriteLiteral("

Reply

"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/Twitter/obj/Debug/net5.0/Razor/Views/Home/TweeT.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Home/TweeT.cshtml.g.cs new file mode 100644 index 0000000..33b46a5 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Home/TweeT.cshtml.g.cs @@ -0,0 +1,51 @@ +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Home\TweeT.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8a50d5b747879ee45e96eec55a0f692bf3424d03" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_TweeT), @"mvc.1.0.view", @"/Views/Home/TweeT.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter; + +#line default +#line hidden +#nullable disable +#nullable restore +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" +using Twitter.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"8a50d5b747879ee45e96eec55a0f692bf3424d03", @"/Views/Home/TweeT.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] + public class Views_Home_TweeT : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + { + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { + WriteLiteral("

Tweet

"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs similarity index 70% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs index 3b0e37a..448cef0 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/Error.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\Error.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d6a5625cc8fb4476f348b0fe9041c550465d8bf9" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\Error.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4ecc4d2bcad30a6aee551879bc7e7094ebb4184d" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared_Error), @"mvc.1.0.view", @"/Views/Shared/Error.cshtml")] @@ -13,54 +13,54 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d6a5625cc8fb4476f348b0fe9041c550465d8bf9", @"/Views/Shared/Error.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4ecc4d2bcad30a6aee551879bc7e7094ebb4184d", @"/Views/Shared/Error.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Shared_Error : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\Error.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\Error.cshtml" ViewData["Title"] = "Error"; #line default #line hidden #nullable disable - WriteLiteral("\r\n

Error.

\r\n

An error occurred while processing your request.

\r\n\r\n"); + WriteLiteral("\n

Error.

\n

An error occurred while processing your request.

\n\n"); #nullable restore -#line 9 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\Error.cshtml" +#line 9 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\Error.cshtml" if (Model.ShowRequestId) { #line default #line hidden #nullable disable - WriteLiteral("

\r\n Request ID: "); + WriteLiteral("

\n Request ID: "); #nullable restore -#line 12 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\Error.cshtml" +#line 12 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\Error.cshtml" Write(Model.RequestId); #line default #line hidden #nullable disable - WriteLiteral("\r\n

\r\n"); + WriteLiteral("\n

\n"); #nullable restore -#line 14 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\Error.cshtml" +#line 14 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\Error.cshtml" } #line default diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs similarity index 81% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs index af15226..a83d360 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_Layout.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "538116940f765b6c356f4e280410c42c2e8ae9db" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d256bf01003e27fa3853b57aa8286b4e54d02c02" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__Layout), @"mvc.1.0.view", @"/Views/Shared/_Layout.cshtml")] @@ -13,21 +13,21 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"538116940f765b6c356f4e280410c42c2e8ae9db", @"/Views/Shared/_Layout.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d256bf01003e27fa3853b57aa8286b4e54d02c02", @"/Views/Shared/_Layout.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("rel", new global::Microsoft.AspNetCore.Html.HtmlString("stylesheet"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); @@ -61,24 +61,24 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { - WriteLiteral("\r\n\r\n"); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "538116940f765b6c356f4e280410c42c2e8ae9db4971", async() => { - WriteLiteral("\r\n \r\n \r\n "); + WriteLiteral("<!DOCTYPE html>\n<html lang=\"en\">\n"); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d256bf01003e27fa3853b57aa8286b4e54d02c024934", async() => { + WriteLiteral("\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n <title>"); #nullable restore -#line 6 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_Layout.cshtml" +#line 6 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_Layout.cshtml" Write(ViewData["Title"]); #line default #line hidden #nullable disable - WriteLiteral(" - Twitter\r\n \n \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "538116940f765b6c356f4e280410c42c2e8ae9db6035", async() => { + WriteLiteral(" rel=\"stylesheet\">\n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "d256bf01003e27fa3853b57aa8286b4e54d02c025977", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -92,7 +92,7 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n"); + WriteLiteral("\n"); } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper = CreateTagHelper(); @@ -104,18 +104,18 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n"); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "538116940f765b6c356f4e280410c42c2e8ae9db7917", async() => { - WriteLiteral("\r\n\r\n
\r\n
\r\n "); + WriteLiteral("\n"); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d256bf01003e27fa3853b57aa8286b4e54d02c027855", async() => { + WriteLiteral("\n\n
\n
\n "); #nullable restore -#line 14 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_Layout.cshtml" +#line 14 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_Layout.cshtml" Write(RenderBody()); #line default #line hidden #nullable disable - WriteLiteral("\r\n
\r\n
\r\n\r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "538116940f765b6c356f4e280410c42c2e8ae9db8525", async() => { + WriteLiteral("\n
\n
\n\n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d256bf01003e27fa3853b57aa8286b4e54d02c028436", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -128,8 +128,8 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "538116940f765b6c356f4e280410c42c2e8ae9db9624", async() => { + WriteLiteral("\n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d256bf01003e27fa3853b57aa8286b4e54d02c029533", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -139,7 +139,7 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_3.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); #nullable restore -#line 19 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_Layout.cshtml" +#line 19 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_Layout.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true; #line default @@ -153,15 +153,15 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n "); + WriteLiteral("\n "); #nullable restore -#line 20 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_Layout.cshtml" +#line 20 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_Layout.cshtml" Write(await RenderSectionAsync("Scripts", required: false)); #line default #line hidden #nullable disable - WriteLiteral("\r\n"); + WriteLiteral("\n"); } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper = CreateTagHelper(); @@ -173,7 +173,7 @@ public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n\r\n"); + WriteLiteral("\n\n"); } #pragma warning restore 1998 [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs similarity index 86% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs index bcc2386..0a00c34 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_LoginPartial.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "eb6b06876c970ec21dbfdcf2953e86f4184913c4" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4bfc9f1e24eb792546881136ea6b495b321d0367" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__LoginPartial), @"mvc.1.0.view", @"/Views/Shared/_LoginPartial.cshtml")] @@ -13,28 +13,28 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" using Microsoft.AspNetCore.Identity; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"eb6b06876c970ec21dbfdcf2953e86f4184913c4", @"/Views/Shared/_LoginPartial.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4bfc9f1e24eb792546881136ea6b495b321d0367", @"/Views/Shared/_LoginPartial.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link text-dark"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); @@ -71,20 +71,20 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { - WriteLiteral("\r\n
    \r\n"); + WriteLiteral("\n
      \n"); #nullable restore -#line 6 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 6 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" if (SignInManager.IsSignedIn(User)) { #line default #line hidden #nullable disable - WriteLiteral("
    • \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "eb6b06876c970ec21dbfdcf2953e86f4184913c46581", async() => { + WriteLiteral("
    • \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4bfc9f1e24eb792546881136ea6b495b321d03676518", async() => { WriteLiteral("Hello "); #nullable restore -#line 9 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 9 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" Write(User.Identity.Name); #line default @@ -108,9 +108,9 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
    • \r\n
    • \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "eb6b06876c970ec21dbfdcf2953e86f4184913c48509", async() => { - WriteLiteral("\r\n \r\n "); + WriteLiteral("\n
    • \n
    • \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4bfc9f1e24eb792546881136ea6b495b321d03678429", async() => { + WriteLiteral("\n \n "); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper(); @@ -128,7 +128,7 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor } BeginWriteTagHelperAttribute(); #nullable restore -#line 12 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 12 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" WriteLiteral(Url.Action("Index", "Home", new { area = "" })); #line default @@ -144,9 +144,9 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
    • \r\n"); + WriteLiteral("\n \n"); #nullable restore -#line 16 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 16 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" } else { @@ -154,8 +154,8 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor #line default #line hidden #nullable disable - WriteLiteral("
    • \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "eb6b06876c970ec21dbfdcf2953e86f4184913c411736", async() => { + WriteLiteral("
    • \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4bfc9f1e24eb792546881136ea6b495b321d036711621", async() => { WriteLiteral("Register"); } ); @@ -173,8 +173,8 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
    • \r\n
    • \r\n "); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "eb6b06876c970ec21dbfdcf2953e86f4184913c413227", async() => { + WriteLiteral("\n
    • \n
    • \n "); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4bfc9f1e24eb792546881136ea6b495b321d036713106", async() => { WriteLiteral("Login"); } ); @@ -192,15 +192,15 @@ public class Views_Shared__LoginPartial : global::Microsoft.AspNetCore.Mvc.Razor } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n
    • \r\n"); + WriteLiteral("\n \n"); #nullable restore -#line 25 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" +#line 25 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_LoginPartial.cshtml" } #line default #line hidden #nullable disable - WriteLiteral("
    \r\n"); + WriteLiteral("
\n"); } #pragma warning restore 1998 [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs similarity index 83% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs index 15cf151..d306beb 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_RightBar.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_RightBar.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5d0d7046584b98e6e8c7b6893a492c6749a597cc" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_RightBar.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8e049f106c3ab2fe92777b00b67421cb731736d3" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__RightBar), @"mvc.1.0.view", @"/Views/Shared/_RightBar.cshtml")] @@ -13,21 +13,21 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"5d0d7046584b98e6e8c7b6893a492c6749a597cc", @"/Views/Shared/_RightBar.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"8e049f106c3ab2fe92777b00b67421cb731736d3", @"/Views/Shared/_RightBar.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { #pragma warning disable 1998 @@ -40,8 +40,8 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz - +
@@ -55,7 +55,7 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz
@@ -69,15 +69,15 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz
-

1 . Trending

+

1 . Trending

#Microsoft363

5,466 Tweets

@@ -97,7 +97,7 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz
@@ -117,7 +117,7 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz
@@ -153,12 +153,10 @@ public class Views_Shared__RightBar : global::Microsoft.AspNetCore.Mvc.Razor.Raz
- <"); - WriteLiteral(@"div class=""flex-1 ""> -
-
- \"", + <"); + WriteLiteral("div class=\"flex items-center w-48\">\n
\n \"",
@@ -168,8 +166,8 @@ Sonali Hirave

"); - WriteLiteral("@ShonaDesign\r\n

\r\n
\r\n
\r\n\r\n
\r\n
\r\n \n
\n
\n\n
\n
\n
\r\n\r\n
\r\n
\r\n \n
\n
\n\n
\n
\n
\r\n \r\n
\r\n
"); + WriteLiteral("@ShonaDesign\n

\n
\n \n \n \n"); } #pragma warning restore 1998 [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs similarity index 88% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs index c62d40f..9a6a8af 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\Shared\_ValidationScriptsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4b5e5ef4ebf7354cc35c7dacddd6bc3068f19a47" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\Shared\_ValidationScriptsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5a2a59b56ea0549b30f2b9bfacb92db68c75233d" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__ValidationScriptsPartial), @"mvc.1.0.view", @"/Views/Shared/_ValidationScriptsPartial.cshtml")] @@ -13,21 +13,21 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4b5e5ef4ebf7354cc35c7dacddd6bc3068f19a47", @"/Views/Shared/_ValidationScriptsPartial.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"5a2a59b56ea0549b30f2b9bfacb92db68c75233d", @"/Views/Shared/_ValidationScriptsPartial.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views_Shared__ValidationScriptsPartial : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery-validation/dist/jquery.validate.min.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); @@ -56,7 +56,7 @@ public class Views_Shared__ValidationScriptsPartial : global::Microsoft.AspNetCo #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4b5e5ef4ebf7354cc35c7dacddd6bc3068f19a474004", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "5a2a59b56ea0549b30f2b9bfacb92db68c75233d3971", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -69,8 +69,8 @@ public class Views_Shared__ValidationScriptsPartial : global::Microsoft.AspNetCo } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n"); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4b5e5ef4ebf7354cc35c7dacddd6bc3068f19a475043", async() => { + WriteLiteral("\n"); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "5a2a59b56ea0549b30f2b9bfacb92db68c75233d5008", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -83,7 +83,7 @@ public class Views_Shared__ValidationScriptsPartial : global::Microsoft.AspNetCo } Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); - WriteLiteral("\r\n"); + WriteLiteral("\n"); } #pragma warning restore 1998 [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs similarity index 80% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs index 53d132d..3274e70 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/_ViewImports.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "912945e901cd67c2d01c83c3ab047288bff92a67" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d45b91a0ccfe04db1d4c94f21c5aac96345dfa10" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views__ViewImports), @"mvc.1.0.view", @"/Views/_ViewImports.cshtml")] @@ -13,20 +13,20 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views__ViewImports : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { #pragma warning disable 1998 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs b/Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs similarity index 77% rename from Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs rename to Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs index fe90c45..9670c04 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs +++ b/Twitter/obj/Debug/net5.0/Razor/Views/_ViewStart.cshtml.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7091c65830b0329e613be026ede8a57552863778" +#pragma checksum "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "f400a24e4f1c1f8dbc87c0f761266a45e781e06b" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views__ViewStart), @"mvc.1.0.view", @"/Views/_ViewStart.cshtml")] @@ -13,28 +13,28 @@ namespace AspNetCore using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter; #line default #line hidden #nullable disable #nullable restore -#line 2 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewImports.cshtml" +#line 2 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewImports.cshtml" using Twitter.Models; #line default #line hidden #nullable disable - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"7091c65830b0329e613be026ede8a57552863778", @"/Views/_ViewStart.cshtml")] - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"912945e901cd67c2d01c83c3ab047288bff92a67", @"/Views/_ViewImports.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f400a24e4f1c1f8dbc87c0f761266a45e781e06b", @"/Views/_ViewStart.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d45b91a0ccfe04db1d4c94f21c5aac96345dfa10", @"/Views/_ViewImports.cshtml")] public class Views__ViewStart : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { #nullable restore -#line 1 "C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\Views\_ViewStart.cshtml" +#line 1 "C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\Twitter\Views\_ViewStart.cshtml" Layout = "_Layout"; diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfo.cs b/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfo.cs similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfo.cs rename to Twitter/obj/Debug/net5.0/Twitter.AssemblyInfo.cs diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfoInputs.cache b/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfoInputs.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.AssemblyInfoInputs.cache rename to Twitter/obj/Debug/net5.0/Twitter.AssemblyInfoInputs.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.GeneratedMSBuildEditorConfig.editorconfig b/Twitter/obj/Debug/net5.0/Twitter.GeneratedMSBuildEditorConfig.editorconfig similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.GeneratedMSBuildEditorConfig.editorconfig rename to Twitter/obj/Debug/net5.0/Twitter.GeneratedMSBuildEditorConfig.editorconfig diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cache b/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cache rename to Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs b/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs similarity index 95% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs rename to Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs index 70cf779..e756c70 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs +++ b/Twitter/obj/Debug/net5.0/Twitter.MvcApplicationPartsAssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cache b/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cache rename to Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cs b/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cs similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cs rename to Twitter/obj/Debug/net5.0/Twitter.RazorAssemblyInfo.cs diff --git a/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache b/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache new file mode 100644 index 0000000..ef28c7b --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Twitter.RazorCoreGenerate.cache @@ -0,0 +1 @@ +caed39ecfa8ed7006fbff2f6c4955047ee81d9e8 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cache b/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cache rename to Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs b/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs similarity index 96% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs rename to Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs index 9df90eb..10014f4 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs +++ b/Twitter/obj/Debug/net5.0/Twitter.RazorTargetAssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.input.cache b/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.input.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.input.cache rename to Twitter/obj/Debug/net5.0/Twitter.TagHelpers.input.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.output.cache b/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.output.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.TagHelpers.output.cache rename to Twitter/obj/Debug/net5.0/Twitter.TagHelpers.output.cache diff --git a/Twitter/obj/Debug/net5.0/Twitter.Views.dll b/Twitter/obj/Debug/net5.0/Twitter.Views.dll new file mode 100644 index 0000000..a9433c7 Binary files /dev/null and b/Twitter/obj/Debug/net5.0/Twitter.Views.dll differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.pdb b/Twitter/obj/Debug/net5.0/Twitter.Views.pdb similarity index 76% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.pdb rename to Twitter/obj/Debug/net5.0/Twitter.Views.pdb index b521813..c446428 100644 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.Views.pdb and b/Twitter/obj/Debug/net5.0/Twitter.Views.pdb differ diff --git a/Twitter/obj/Debug/net5.0/Twitter.assets.cache b/Twitter/obj/Debug/net5.0/Twitter.assets.cache new file mode 100644 index 0000000..139dee3 Binary files /dev/null and b/Twitter/obj/Debug/net5.0/Twitter.assets.cache differ diff --git a/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache b/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache new file mode 100644 index 0000000..2654d3d Binary files /dev/null and b/Twitter/obj/Debug/net5.0/Twitter.csproj.AssemblyReference.cache differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.CopyComplete b/Twitter/obj/Debug/net5.0/Twitter.csproj.CopyComplete similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.CopyComplete rename to Twitter/obj/Debug/net5.0/Twitter.csproj.CopyComplete diff --git a/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache b/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d10572d --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Twitter.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +cc245a0fb0baf20d798ca627e8f781d935f60f81 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt b/Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt similarity index 80% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt rename to Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt index 8643e5b..fb27777 100644 --- a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt +++ b/Twitter/obj/Debug/net5.0/Twitter.csproj.FileListAbsolute.txt @@ -1578,3 +1578,403 @@ C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\obj\Debug C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\obj\Debug\net5.0\ref\Twitter.dll C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\obj\Debug\net5.0\Twitter.pdb C:\Users\Samirah Alhusayni\Documents\Hackathon-Project\Twitter\Twitter\obj\Debug\net5.0\Twitter.genruntimeconfig.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\appsettings.Development.json +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\appsettings.json +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.StaticWebAssets.xml +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.exe +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.deps.json +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.runtimeconfig.json +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.runtimeconfig.dev.json +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ref\Twitter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Antiforgery.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authentication.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authentication.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authorization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Authorization.Policy.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Components.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Components.Server.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Components.Web.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.CookiePolicy.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Cors.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.DataProtection.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Diagnostics.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.HostFiltering.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Hosting.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Html.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.Connections.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Http.Features.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.HttpOverrides.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.HttpsPolicy.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Identity.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Localization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Localization.Routing.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Metadata.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Cors.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Localization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.Razor.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Razor.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Razor.Runtime.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.ResponseCaching.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.ResponseCompression.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Rewrite.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Routing.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.HttpSys.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.IIS.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.Kestrel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.Session.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.SignalR.Common.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.SignalR.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.SignalR.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.StaticFiles.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.WebSockets.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.CSharp.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Caching.Memory.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.CommandLine.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.Ini.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Configuration.Xml.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.FileProviders.Composite.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Hosting.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Http.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Localization.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Localization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.Configuration.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.Console.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.Debug.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.EventLog.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.EventSource.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Logging.TraceSource.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.ObjectPool.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Options.DataAnnotations.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Options.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Extensions.WebEncoders.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.JSInterop.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Net.Http.Headers.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.VisualBasic.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.VisualBasic.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Win32.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\Microsoft.Win32.Registry.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\mscorlib.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\netstandard.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.AppContext.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Buffers.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Collections.Concurrent.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Collections.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Collections.Immutable.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Collections.NonGeneric.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Collections.Specialized.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.Annotations.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.DataAnnotations.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.EventBasedAsync.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ComponentModel.TypeConverter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Configuration.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Console.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Data.Common.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Data.DataSetExtensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Data.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.Contracts.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.Debug.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.EventLog.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.FileVersionInfo.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.Process.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.StackTrace.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.Tools.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.TraceSource.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Diagnostics.Tracing.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Drawing.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Drawing.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Dynamic.Runtime.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Formats.Asn1.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Globalization.Calendars.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Globalization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Globalization.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Compression.Brotli.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Compression.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Compression.FileSystem.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Compression.ZipFile.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.FileSystem.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.FileSystem.DriveInfo.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.FileSystem.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.FileSystem.Watcher.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.IsolatedStorage.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.MemoryMappedFiles.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Pipelines.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.Pipes.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.IO.UnmanagedMemoryStream.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Linq.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Linq.Expressions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Linq.Parallel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Linq.Queryable.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Memory.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Http.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Http.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.HttpListener.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Mail.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.NameResolution.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.NetworkInformation.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Ping.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Requests.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Security.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.ServicePoint.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.Sockets.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.WebClient.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.WebHeaderCollection.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.WebProxy.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.WebSockets.Client.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Net.WebSockets.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Numerics.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Numerics.Vectors.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ObjectModel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.DispatchProxy.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Emit.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Emit.ILGeneration.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Emit.Lightweight.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Metadata.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Reflection.TypeExtensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Resources.Reader.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Resources.ResourceManager.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Resources.Writer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.CompilerServices.VisualC.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Handles.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.InteropServices.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Intrinsics.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Loader.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Numerics.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Serialization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Serialization.Formatters.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Serialization.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Serialization.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Runtime.Serialization.Xml.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.AccessControl.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Claims.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Algorithms.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Cng.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Csp.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Encoding.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Primitives.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.X509Certificates.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Cryptography.Xml.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Permissions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Principal.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.Principal.Windows.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Security.SecureString.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ServiceModel.Web.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ServiceProcess.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.Encoding.CodePages.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.Encoding.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.Encoding.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.Encodings.Web.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Text.RegularExpressions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Channels.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Overlapped.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Tasks.Dataflow.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Tasks.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Tasks.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Tasks.Parallel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Thread.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.ThreadPool.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Threading.Timer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Transactions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Transactions.Local.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.ValueTuple.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Web.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Web.HttpUtility.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Windows.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Windows.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.Linq.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.ReaderWriter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.Serialization.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.XDocument.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.XmlDocument.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.XmlSerializer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.XPath.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\System.Xml.XPath.XDocument.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\refs\WindowsBase.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.Views.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Twitter.Views.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Humanizer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Identity.UI.Views.V4.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Identity.UI.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.AspNetCore.Razor.Language.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.CodeAnalysis.Razor.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Data.SqlClient.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.SqlServer.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Extensions.FileProviders.Embedded.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Extensions.Identity.Core.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Extensions.Identity.Stores.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.Identity.Client.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.IdentityModel.Logging.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\System.Configuration.ConfigurationManager.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\System.Diagnostics.DiagnosticSource.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\System.Runtime.Caching.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.csproj.AssemblyReference.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.AssemblyInfoInputs.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.AssemblyInfo.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.csproj.CoreCompileInputs.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.MvcApplicationPartsAssemblyInfo.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.MvcApplicationPartsAssemblyInfo.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.RazorAssemblyInfo.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.RazorAssemblyInfo.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\staticwebassets\Twitter.StaticWebAssets.Manifest.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\staticwebassets\Twitter.StaticWebAssets.xml +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\scopedcss\bundle\Twitter.styles.css +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.TagHelpers.input.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.TagHelpers.output.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.RazorCoreGenerate.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Areas\Identity\Pages\_ViewStart.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Favourites\Index.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Home\Delete.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Home\Index.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Home\Privacy.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Home\Reply.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Home\TweeT.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\Error.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\_Layout.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\_LoginPartial.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\_RightBar.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\_SideMenu.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\Shared\_ValidationScriptsPartial.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\_ViewImports.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Razor\Views\_ViewStart.cshtml.g.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.RazorTargetAssemblyInfo.cache +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.RazorTargetAssemblyInfo.cs +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.Views.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.csproj.CopyComplete +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\ref\Twitter.dll +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.pdb +C:\Users\WIN\Desktop\Hackathon-Project-main\Twitter\twitter\obj\Debug\net5.0\Twitter.genruntimeconfig.cache diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.csprojAssemblyReference.cache b/Twitter/obj/Debug/net5.0/Twitter.csprojAssemblyReference.cache similarity index 100% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.csprojAssemblyReference.cache rename to Twitter/obj/Debug/net5.0/Twitter.csprojAssemblyReference.cache diff --git a/Twitter/obj/Debug/net5.0/Twitter.dll b/Twitter/obj/Debug/net5.0/Twitter.dll new file mode 100644 index 0000000..12a51d5 Binary files /dev/null and b/Twitter/obj/Debug/net5.0/Twitter.dll differ diff --git a/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache b/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache new file mode 100644 index 0000000..907b6b1 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/Twitter.genruntimeconfig.cache @@ -0,0 +1 @@ +3f1723896482dfc8b3c11e162db63d085b7bd263 diff --git a/Twitter/Twitter/obj/Debug/net5.0/Twitter.pdb b/Twitter/obj/Debug/net5.0/Twitter.pdb similarity index 69% rename from Twitter/Twitter/obj/Debug/net5.0/Twitter.pdb rename to Twitter/obj/Debug/net5.0/Twitter.pdb index 9dafc75..fff4039 100644 Binary files a/Twitter/Twitter/obj/Debug/net5.0/Twitter.pdb and b/Twitter/obj/Debug/net5.0/Twitter.pdb differ diff --git a/Twitter/Twitter/obj/Debug/net5.0/apphost.exe b/Twitter/obj/Debug/net5.0/apphost.exe similarity index 98% rename from Twitter/Twitter/obj/Debug/net5.0/apphost.exe rename to Twitter/obj/Debug/net5.0/apphost.exe index 321bd57..5228f6d 100644 Binary files a/Twitter/Twitter/obj/Debug/net5.0/apphost.exe and b/Twitter/obj/Debug/net5.0/apphost.exe differ diff --git a/Twitter/obj/Debug/net5.0/ref/Twitter.dll b/Twitter/obj/Debug/net5.0/ref/Twitter.dll new file mode 100644 index 0000000..d9f5259 Binary files /dev/null and b/Twitter/obj/Debug/net5.0/ref/Twitter.dll differ diff --git a/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache b/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache new file mode 100644 index 0000000..b808a85 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.Manifest.cache @@ -0,0 +1 @@ +240d5e2840217567e797e9327cedfd52186a7b02 diff --git a/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml b/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml new file mode 100644 index 0000000..685b9b1 --- /dev/null +++ b/Twitter/obj/Debug/net5.0/staticwebassets/Twitter.StaticWebAssets.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Twitter/Twitter/obj/Twitter.csproj.EntityFrameworkCore.targets b/Twitter/obj/Twitter.csproj.EntityFrameworkCore.targets similarity index 100% rename from Twitter/Twitter/obj/Twitter.csproj.EntityFrameworkCore.targets rename to Twitter/obj/Twitter.csproj.EntityFrameworkCore.targets diff --git a/Twitter/Twitter/obj/Twitter.csproj.nuget.dgspec.json b/Twitter/obj/Twitter.csproj.nuget.dgspec.json similarity index 75% rename from Twitter/Twitter/obj/Twitter.csproj.nuget.dgspec.json rename to Twitter/obj/Twitter.csproj.nuget.dgspec.json index 5ed1603..d9cb6d6 100644 --- a/Twitter/Twitter/obj/Twitter.csproj.nuget.dgspec.json +++ b/Twitter/obj/Twitter.csproj.nuget.dgspec.json @@ -1,20 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj": {} + "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj": {} }, "projects": { - "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj": { + "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj", + "projectUniqueName": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj", "projectName": "Twitter", - "projectPath": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj", - "packagesPath": "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\obj\\", + "projectPath": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj", + "packagesPath": "C:\\Users\\WIN\\.nuget\\packages\\", + "outputPath": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\Samirah Alhusayni\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\WIN\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -83,7 +83,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/Twitter/Twitter/obj/Twitter.csproj.nuget.g.props b/Twitter/obj/Twitter.csproj.nuget.g.props similarity index 78% rename from Twitter/Twitter/obj/Twitter.csproj.nuget.g.props rename to Twitter/obj/Twitter.csproj.nuget.g.props index 00dfaa0..b45e0f8 100644 --- a/Twitter/Twitter/obj/Twitter.csproj.nuget.g.props +++ b/Twitter/obj/Twitter.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Samirah Alhusayni\.nuget\packages\ + C:\Users\WIN\.nuget\packages\ PackageReference 5.10.0 - + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) @@ -20,8 +20,8 @@ - C:\Users\Samirah Alhusayni\.nuget\packages\newtonsoft.json\10.0.1 - C:\Users\Samirah Alhusayni\.nuget\packages\microsoft.entityframeworkcore.tools\5.0.7 - C:\Users\Samirah Alhusayni\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 + C:\Users\WIN\.nuget\packages\newtonsoft.json\10.0.1 + C:\Users\WIN\.nuget\packages\microsoft.entityframeworkcore.tools\5.0.7 + C:\Users\WIN\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 \ No newline at end of file diff --git a/Twitter/Twitter/obj/Twitter.csproj.nuget.g.targets b/Twitter/obj/Twitter.csproj.nuget.g.targets similarity index 100% rename from Twitter/Twitter/obj/Twitter.csproj.nuget.g.targets rename to Twitter/obj/Twitter.csproj.nuget.g.targets diff --git a/Twitter/Twitter/obj/project.assets.json b/Twitter/obj/project.assets.json similarity index 99% rename from Twitter/Twitter/obj/project.assets.json rename to Twitter/obj/project.assets.json index 9274e5c..c145650 100644 --- a/Twitter/Twitter/obj/project.assets.json +++ b/Twitter/obj/project.assets.json @@ -6720,19 +6720,19 @@ ] }, "packageFolders": { - "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\": {} + "C:\\Users\\WIN\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj", + "projectUniqueName": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj", "projectName": "Twitter", - "projectPath": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\Twitter.csproj", - "packagesPath": "C:\\Users\\Samirah Alhusayni\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Samirah Alhusayni\\Documents\\Hackathon-Project\\Twitter\\Twitter\\obj\\", + "projectPath": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj", + "packagesPath": "C:\\Users\\WIN\\.nuget\\packages\\", + "outputPath": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\Samirah Alhusayni\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\WIN\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -6801,7 +6801,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/Twitter/obj/project.nuget.cache b/Twitter/obj/project.nuget.cache new file mode 100644 index 0000000..08ffaa6 --- /dev/null +++ b/Twitter/obj/project.nuget.cache @@ -0,0 +1,126 @@ +{ + "version": 2, + "dgSpecHash": "vvezO8hvGl+BE9WkgwDWt1xy4l+cNuscY3NtOPDKBH0alV5btniGjMVQQYL0eD8ahMaXDaJsbw28Jb4HOTkbNg==", + "success": true, + "projectFilePath": "C:\\Users\\WIN\\Desktop\\Hackathon-Project-main\\Twitter\\Twitter\\Twitter.csproj", + "expectedPackageFiles": [ + "C:\\Users\\WIN\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.7\\microsoft.aspnetcore.cryptography.internal.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.7\\microsoft.aspnetcore.cryptography.keyderivation.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.entityframeworkcore\\5.0.7\\microsoft.aspnetcore.diagnostics.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\5.0.7\\microsoft.aspnetcore.identity.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.identity.ui\\5.0.7\\microsoft.aspnetcore.identity.ui.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\5.0.7\\microsoft.aspnetcore.mvc.razor.extensions.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\5.0.7\\microsoft.aspnetcore.mvc.razor.runtimecompilation.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.7\\microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.7\\microsoft.codeanalysis.razor.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.data.sqlclient\\2.0.1\\microsoft.data.sqlclient.2.0.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.0.1\\microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.7\\microsoft.entityframeworkcore.design.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\5.0.7\\microsoft.entityframeworkcore.sqlserver.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\5.0.7\\microsoft.entityframeworkcore.tools.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\5.0.7\\microsoft.extensions.fileproviders.embedded.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.identity.core\\5.0.7\\microsoft.extensions.identity.core.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.identity.stores\\5.0.7\\microsoft.extensions.identity.stores.5.0.7.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identity.client\\4.14.0\\microsoft.identity.client.4.14.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.6.0\\microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identitymodel.logging\\5.6.0\\microsoft.identitymodel.logging.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.6.0\\microsoft.identitymodel.protocols.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.6.0\\microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.6.0\\microsoft.identitymodel.tokens.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.6.0\\system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\WIN\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Twitter/Twitter/wwwroot/css/site.css b/Twitter/wwwroot/css/site.css similarity index 100% rename from Twitter/Twitter/wwwroot/css/site.css rename to Twitter/wwwroot/css/site.css diff --git a/Twitter/Twitter/wwwroot/favicon.ico b/Twitter/wwwroot/favicon.ico similarity index 100% rename from Twitter/Twitter/wwwroot/favicon.ico rename to Twitter/wwwroot/favicon.ico diff --git a/Twitter/Twitter/wwwroot/js/site.js b/Twitter/wwwroot/js/site.js similarity index 100% rename from Twitter/Twitter/wwwroot/js/site.js rename to Twitter/wwwroot/js/site.js diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/LICENSE b/Twitter/wwwroot/lib/bootstrap/LICENSE similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/LICENSE rename to Twitter/wwwroot/lib/bootstrap/LICENSE diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map b/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map rename to Twitter/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js diff --git a/Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map b/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map rename to Twitter/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt b/Twitter/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt rename to Twitter/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js b/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js rename to Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js b/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js rename to Twitter/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation/LICENSE.md b/Twitter/wwwroot/lib/jquery-validation/LICENSE.md similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation/LICENSE.md rename to Twitter/wwwroot/lib/jquery-validation/LICENSE.md diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.js b/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.js rename to Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.min.js b/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.min.js rename to Twitter/wwwroot/lib/jquery-validation/dist/additional-methods.min.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.js b/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.js rename to Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js b/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js rename to Twitter/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery/LICENSE.txt b/Twitter/wwwroot/lib/jquery/LICENSE.txt similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery/LICENSE.txt rename to Twitter/wwwroot/lib/jquery/LICENSE.txt diff --git a/Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.js b/Twitter/wwwroot/lib/jquery/dist/jquery.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.js rename to Twitter/wwwroot/lib/jquery/dist/jquery.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.min.js b/Twitter/wwwroot/lib/jquery/dist/jquery.min.js similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.min.js rename to Twitter/wwwroot/lib/jquery/dist/jquery.min.js diff --git a/Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.min.map b/Twitter/wwwroot/lib/jquery/dist/jquery.min.map similarity index 100% rename from Twitter/Twitter/wwwroot/lib/jquery/dist/jquery.min.map rename to Twitter/wwwroot/lib/jquery/dist/jquery.min.map