From 89a9231b20695f1ceaed4dcc50be25f5a21b18e5 Mon Sep 17 00:00:00 2001 From: frits000000 <45283950+frits000000@users.noreply.github.com> Date: Sat, 28 Nov 2020 11:23:30 +0100 Subject: [PATCH] file structure update --- AlfaPrentice/.dockerignore | 25 - AlfaPrentice/.vs/AlfaPrentice/v16/.suo | Bin 26624 -> 0 bytes AlfaPrentice/AlfaPrentice.sln | 25 - AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj | 23 - .../AlfaPrentice/AlfaPrentice.csproj.user | 8 - .../Controllers/LoginController.cs | 16 - .../AlfaPrentice/Data/AlfaPrenticeContext.cs | 12 - AlfaPrentice/AlfaPrentice/Dockerfile | 22 - AlfaPrentice/AlfaPrentice/Models/User.cs | 11 - AlfaPrentice/AlfaPrentice/Program.cs | 26 - .../Properties/launchSettings.json | 37 - .../Implementations/UserRepository.cs | 11 - .../Interfaces/IUserRepository.cs | 11 - AlfaPrentice/AlfaPrentice/Startup.cs | 51 -- .../AlfaPrentice/Utils/TokenProvider.cs | 11 - .../AlfaPrentice/Views/_ViewImports.cshtml | 3 - .../AlfaPrentice/Views/_ViewStart.cshtml | 3 - .../AlfaPrentice/appsettings.Development.json | 9 - AlfaPrentice/AlfaPrentice/appsettings.json | 10 - .../Properties/launchSettings.json | 37 - .../appsettings.Development.json | 9 - .../bin/Debug/netcoreapp3.1/appsettings.json | 10 - .../obj/AlfaPrentice.csproj.nuget.dgspec.json | 72 -- .../obj/AlfaPrentice.csproj.nuget.g.props | 24 - .../obj/AlfaPrentice.csproj.nuget.g.targets | 9 - ...CoreApp,Version=v3.1.AssemblyAttributes.cs | 4 - .../AlfaPrentice.AssemblyInfo.cs | 24 - .../AlfaPrentice.AssemblyInfoInputs.cache | 1 - .../AlfaPrentice.RazorAssemblyInfo.cache | 1 - .../AlfaPrentice.RazorAssemblyInfo.cs | 17 - ...AlfaPrentice.RazorTargetAssemblyInfo.cache | 1 - .../netcoreapp3.1/AlfaPrentice.assets.cache | Bin 11129 -> 0 bytes .../AlfaPrentice.csproj.FileListAbsolute.txt | 9 - ...AlfaPrentice.csprojAssemblyReference.cache | Bin 207380 -> 0 bytes ...lfaPrentice.StaticWebAssets.Manifest.cache | 0 .../AlfaPrentice.StaticWebAssets.xml | 1 - ...CoreApp,Version=v3.1.AssemblyAttributes.cs | 4 - .../AlfaPrentice.AssemblyInfo.cs | 24 - .../AlfaPrentice.AssemblyInfoInputs.cache | 1 - .../AlfaPrentice.RazorAssemblyInfo.cache | 1 - .../AlfaPrentice.RazorAssemblyInfo.cs | 17 - .../netcoreapp3.1/AlfaPrentice.assets.cache | Bin 11129 -> 0 bytes .../AlfaPrentice/obj/project.assets.json | 783 ------------------ .../AlfaPrentice/obj/project.nuget.cache | 29 - .../AlfaPrentice/.expo-shared/README.md | 0 .../AlfaPrentice/.expo-shared/assets.json | 0 .../Native => Native}/AlfaPrentice/.gitignore | 0 .../Native => Native}/AlfaPrentice/App.js | 0 .../App/Cards/CompanyResultCard.js | 0 .../AlfaPrentice/App/Cards/ProfileLinks.js | 0 .../AlfaPrentice/App/Cta/Cta.js | 0 .../AlfaPrentice/App/Footer/Footer.js | 0 .../AlfaPrentice/App/Header/Header.js | 0 .../AlfaPrentice/App/Hero/Hero.js | 0 .../AlfaPrentice/App/Images/Stock.png | Bin .../AlfaPrentice/App/Images/logo-licht.png | Bin .../AlfaPrentice/App/Images/logo.png | Bin .../AlfaPrentice/App/Images/stock2.png | Bin .../AlfaPrentice/App/Layouts/DefaultLayout.js | 0 .../AlfaPrentice/App/Router/Router.js | 0 .../AlfaPrentice/App/Views/Home.js | 0 .../AlfaPrentice/App/Views/Login.js | 0 .../App/Views/Profiles/CompanyProfile.js | 0 .../App/Views/Profiles/UserProfile.js | 0 .../Profiles/Userfunctions/AccountSettings.js | 0 .../Views/Profiles/Userfunctions/Agenda.js | 0 .../Views/Profiles/Userfunctions/Contact.js | 0 .../Profiles/Userfunctions/InternStatus.js | 0 .../Userfunctions/OutgoingSolicitation.js | 0 .../Profiles/Userfunctions/Suggestions.js | 0 .../Profiles/Userfunctions/Weekstaten.js | 0 .../AlfaPrentice/App/Views/SearchPage.js | 0 .../AlfaPrentice/App/index.js | 0 .../Native => Native}/AlfaPrentice/app.json | 0 .../AlfaPrentice/assets/adaptive-icon.png | Bin .../AlfaPrentice/assets/favicon.png | Bin .../AlfaPrentice/assets/icon.png | Bin .../AlfaPrentice/assets/splash.png | Bin .../AlfaPrentice/babel.config.js | 0 .../AlfaPrentice/package-lock.json | 0 .../AlfaPrentice/package.json | 0 81 files changed, 1392 deletions(-) delete mode 100644 AlfaPrentice/.dockerignore delete mode 100644 AlfaPrentice/.vs/AlfaPrentice/v16/.suo delete mode 100644 AlfaPrentice/AlfaPrentice.sln delete mode 100644 AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj delete mode 100644 AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user delete mode 100644 AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Dockerfile delete mode 100644 AlfaPrentice/AlfaPrentice/Models/User.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Program.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Properties/launchSettings.json delete mode 100644 AlfaPrentice/AlfaPrentice/Repositories/Implementations/UserRepository.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Repositories/Interfaces/IUserRepository.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Startup.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs delete mode 100644 AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml delete mode 100644 AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml delete mode 100644 AlfaPrentice/AlfaPrentice/appsettings.Development.json delete mode 100644 AlfaPrentice/AlfaPrentice/appsettings.json delete mode 100644 AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json delete mode 100644 AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json delete mode 100644 AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json delete mode 100644 AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json delete mode 100644 AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props delete mode 100644 AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs delete mode 100644 AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache delete mode 100644 AlfaPrentice/AlfaPrentice/obj/project.assets.json delete mode 100644 AlfaPrentice/AlfaPrentice/obj/project.nuget.cache rename {ReactJS/Native => Native}/AlfaPrentice/.expo-shared/README.md (100%) rename {ReactJS/Native => Native}/AlfaPrentice/.expo-shared/assets.json (100%) rename {ReactJS/Native => Native}/AlfaPrentice/.gitignore (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Cards/CompanyResultCard.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Cards/ProfileLinks.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Cta/Cta.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Footer/Footer.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Header/Header.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Hero/Hero.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Images/Stock.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Images/logo-licht.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Images/logo.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Images/stock2.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Layouts/DefaultLayout.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Router/Router.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Home.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Login.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/CompanyProfile.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/UserProfile.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/AccountSettings.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/Agenda.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/Contact.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/InternStatus.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/OutgoingSolicitation.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/Suggestions.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/Profiles/Userfunctions/Weekstaten.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/Views/SearchPage.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/App/index.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/app.json (100%) rename {ReactJS/Native => Native}/AlfaPrentice/assets/adaptive-icon.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/assets/favicon.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/assets/icon.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/assets/splash.png (100%) rename {ReactJS/Native => Native}/AlfaPrentice/babel.config.js (100%) rename {ReactJS/Native => Native}/AlfaPrentice/package-lock.json (100%) rename {ReactJS/Native => Native}/AlfaPrentice/package.json (100%) diff --git a/AlfaPrentice/.dockerignore b/AlfaPrentice/.dockerignore deleted file mode 100644 index 3729ff0..0000000 --- a/AlfaPrentice/.dockerignore +++ /dev/null @@ -1,25 +0,0 @@ -**/.classpath -**/.dockerignore -**/.env -**/.git -**/.gitignore -**/.project -**/.settings -**/.toolstarget -**/.vs -**/.vscode -**/*.*proj.user -**/*.dbmdl -**/*.jfm -**/azds.yaml -**/bin -**/charts -**/docker-compose* -**/Dockerfile* -**/node_modules -**/npm-debug.log -**/obj -**/secrets.dev.yaml -**/values.dev.yaml -LICENSE -README.md \ No newline at end of file diff --git a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/AlfaPrentice/.vs/AlfaPrentice/v16/.suo deleted file mode 100644 index 53e24e8805ba7a7dca97157e9831ff1db9eba888..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26624 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 Hxc&YIem32i diff --git a/AlfaPrentice/AlfaPrentice.sln b/AlfaPrentice/AlfaPrentice.sln deleted file mode 100644 index 51ddebb..0000000 --- a/AlfaPrentice/AlfaPrentice.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30621.155 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlfaPrentice", "AlfaPrentice\AlfaPrentice.csproj", "{C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5F6D3192-93B2-43D8-9CBA-847256A9F54B} - EndGlobalSection -EndGlobal diff --git a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj deleted file mode 100644 index 178af65..0000000 --- a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj +++ /dev/null @@ -1,23 +0,0 @@ - - - - netcoreapp3.1 - a34cc255-9b57-4681-8451-8df6c989a5ef - Linux - - - - - - - - - - - - - - - - - diff --git a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user deleted file mode 100644 index 67c77fd..0000000 --- a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user +++ /dev/null @@ -1,8 +0,0 @@ - - - - Docker - MvcControllerEmptyScaffolder - root/Controller - - \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs b/AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs deleted file mode 100644 index ac96dea..0000000 --- a/AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Mvc; - -namespace AlfaPrentice.Controllers -{ - public class LoginController : Controller - { - public IActionResult Index() - { - return View(); - } - } -} diff --git a/AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs b/AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs deleted file mode 100644 index ea28ef8..0000000 --- a/AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.EntityFrameworkCore; - -namespace AlfaPrentice.Data -{ - public class AlfaPrenticeContext : DbContext - { - } -} diff --git a/AlfaPrentice/AlfaPrentice/Dockerfile b/AlfaPrentice/AlfaPrentice/Dockerfile deleted file mode 100644 index 8097cae..0000000 --- a/AlfaPrentice/AlfaPrentice/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. - -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base -WORKDIR /app -EXPOSE 80 -EXPOSE 443 - -FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build -WORKDIR /src -COPY ["AlfaPrentice/AlfaPrentice.csproj", "AlfaPrentice/"] -RUN dotnet restore "AlfaPrentice/AlfaPrentice.csproj" -COPY . . -WORKDIR "/src/AlfaPrentice" -RUN dotnet build "AlfaPrentice.csproj" -c Release -o /app/build - -FROM build AS publish -RUN dotnet publish "AlfaPrentice.csproj" -c Release -o /app/publish - -FROM base AS final -WORKDIR /app -COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "AlfaPrentice.dll"] \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Models/User.cs b/AlfaPrentice/AlfaPrentice/Models/User.cs deleted file mode 100644 index ed6815d..0000000 --- a/AlfaPrentice/AlfaPrentice/Models/User.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace AlfaPrentice.Models -{ - public class User - { - } -} diff --git a/AlfaPrentice/AlfaPrentice/Program.cs b/AlfaPrentice/AlfaPrentice/Program.cs deleted file mode 100644 index 9f5aa3f..0000000 --- a/AlfaPrentice/AlfaPrentice/Program.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; - -namespace AlfaPrentice -{ - public class Program - { - public static void Main(string[] args) - { - CreateHostBuilder(args).Build().Run(); - } - - public static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - { - webBuilder.UseStartup(); - }); - } -} diff --git a/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json b/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json deleted file mode 100644 index fb4deff..0000000 --- a/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:1263", - "sslPort": 44361 - } - }, - "$schema": "http://json.schemastore.org/launchsettings.json", - "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "weatherforecast", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "AlfaPrentice": { - "commandName": "Project", - "launchBrowser": true, - "launchUrl": "weatherforecast", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" - }, - "Docker": { - "commandName": "Docker", - "launchBrowser": true, - "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", - "publishAllPorts": true, - "useSSL": true - } - } -} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Repositories/Implementations/UserRepository.cs b/AlfaPrentice/AlfaPrentice/Repositories/Implementations/UserRepository.cs deleted file mode 100644 index 4893dfc..0000000 --- a/AlfaPrentice/AlfaPrentice/Repositories/Implementations/UserRepository.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace AlfaPrentice.Repositories.Implementations -{ - public class UserRepository - { - } -} diff --git a/AlfaPrentice/AlfaPrentice/Repositories/Interfaces/IUserRepository.cs b/AlfaPrentice/AlfaPrentice/Repositories/Interfaces/IUserRepository.cs deleted file mode 100644 index fdd9def..0000000 --- a/AlfaPrentice/AlfaPrentice/Repositories/Interfaces/IUserRepository.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace AlfaPrentice.Repositories.Interfaces -{ - public class IUserRepository - { - } -} diff --git a/AlfaPrentice/AlfaPrentice/Startup.cs b/AlfaPrentice/AlfaPrentice/Startup.cs deleted file mode 100644 index e5345d7..0000000 --- a/AlfaPrentice/AlfaPrentice/Startup.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; - -namespace AlfaPrentice -{ - public class Startup - { - public Startup(IConfiguration configuration) - { - Configuration = configuration; - } - - public IConfiguration Configuration { get; } - - // This method gets called by the runtime. Use this method to add services to the container. - public void ConfigureServices(IServiceCollection services) - { - services.AddControllers(); - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - } - - app.UseHttpsRedirection(); - - app.UseRouting(); - - app.UseAuthorization(); - - app.UseEndpoints(endpoints => - { - endpoints.MapControllers(); - }); - } - } -} diff --git a/AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs b/AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs deleted file mode 100644 index 1962ef3..0000000 --- a/AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace AlfaPrentice.Utils -{ - public class TokenProvider - { - } -} diff --git a/AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml b/AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml deleted file mode 100644 index 9fe46da..0000000 --- a/AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@using AlfaExchange -@using AlfaExchange.Models -@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers diff --git a/AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml b/AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml deleted file mode 100644 index a5f1004..0000000 --- a/AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@{ - Layout = "_Layout"; -} diff --git a/AlfaPrentice/AlfaPrentice/appsettings.Development.json b/AlfaPrentice/AlfaPrentice/appsettings.Development.json deleted file mode 100644 index dba68eb..0000000 --- a/AlfaPrentice/AlfaPrentice/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/AlfaPrentice/AlfaPrentice/appsettings.json b/AlfaPrentice/AlfaPrentice/appsettings.json deleted file mode 100644 index 81ff877..0000000 --- a/AlfaPrentice/AlfaPrentice/appsettings.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*" -} diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json deleted file mode 100644 index 1903973..0000000 --- a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:1263", - "sslPort": 44361 - } - }, - "$schema": "http://json.schemastore.org/launchsettings.json", - "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "weatherforecast", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "AlfaPrentice": { - "commandName": "Project", - "launchBrowser": true, - "launchUrl": "weatherforecast", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" - }, - "Docker": { - "commandName": "Docker", - "launchBrowser": true, - "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", - "publishAllPorts": true, - "useSSL": true - } - } -} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json deleted file mode 100644 index dba68eb..0000000 --- a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json deleted file mode 100644 index 81ff877..0000000 --- a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*" -} diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json deleted file mode 100644 index d892aee..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} - }, - "projects": { - "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp3.1": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "dependencies": { - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { - "target": "Package", - "version": "[1.10.9, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props deleted file mode 100644 index 0af06cd..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props +++ /dev/null @@ -1,24 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.7.0 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9 - - \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets deleted file mode 100644 index 29e6984..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs deleted file mode 100644 index ad8dfe1..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs deleted file mode 100644 index f06bbf8..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")] -[assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache deleted file mode 100644 index e44f6a0..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -42bd155d6f1f1909456e742024ced9dc94d2ba55 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache deleted file mode 100644 index 5568053..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -ca0a7635792fb9eeeeef10e57948d083ad593b96 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs deleted file mode 100644 index 9427e0e..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("AlfaPrentice.Views")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache deleted file mode 100644 index 3bbf475..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -550bf7cacb6ace12889197695f45c43e678c7223 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache deleted file mode 100644 index 8c00fd11dc78775dfc98e4d944489efe6bf785e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11129 zcmdT~TW=dh6n3GZl+w}*6eulCTY4qk#7%lhfwr!5X`m^QQYs$&vR-eTCF>oty9Qi| zf`pJjz#F9%ulxZdcm(mv1F!H83h(>^&RNgw%&yPc<7`k}OOx2+bIyFvrMKow zPZbJULOZn%0_Gw}VQf~URWn$%Sj~=5P6(9P)n>EV4e}b8m%&^`htmMj zZG(d7o`!t5iNr|EM`ZIu2<*^e!BM+<>JnpTB$48;<1&G+NOl#Hg>OE-i zc>+sO9RL}j%p+ux*p(uI%MM9ky&&<`#*k>(4d%C#6G#{SV&tp#{+<-@XE|`J7r?*F z37mN=PQB%uIDH1ht-7kPpG(2s%VA@^fc?V;!p<{w5*)H7(DNxmFK|LwF9_vb1qmQk z$E(?Xp5eF}MNmiO#T1EsoCMYj66-oYji}$^Gz&*LXYVs&)LM;AbW%&lr_r^q}aX8*dL;b02sC`XF*0_pvH3ab@tG^GWSRCdouwJmp*Wav39LoKUgSR_QYJVR| zA$^4-#d?ACvwZ#C^qqziIv+qL*-3eM3egYkQtYP!KAHl2j047c0r-yYR1VrfXg3Ut zxo&4q2@I#vXoY6g#f0)aqyEEaNg&tqY9!UmNo032t)a{nk+V!+&WF>)V4COs*`Ia5w?&|2GF)47*D9-Zza^$QcKMlwbxd8={k3&J^ zSdYlDKK;VH=RnWr81&eiv=9#w_?6;JB<^T&N;(r3hPsEK`SCvH;^_}DcY)eZdh$IUL({0K zLjbMmaD4AYgM(yya=Swth0QG|XqoPE*s3|qDBW&>1W;yPXgVIK2*ypuT=;AHpg{!a zxj$a*a#M@9Cp0(|8)R(?9CIO6MIU@^yrR*ywW|+-8Hxt(C-_P$8WT{5->Hg55k8-R zG6`i0%2_DqplpoNkvv6vD;)xLTIo0sXz)8#>7YD4j6I(Ij%Htd{xZD#%Se;66h}TwxlYqQt2)3VM{vV-t>TN z$ZKN_N$`Sh@I>+p$TN5*%+!9JT~|YDgdQW4Xtkq6YL5)zi!EuZn3pt(5dtW-qezCc za=uW;YF}LEjmrCi#2V5Mgb--ylP7~`H0de1BfWftflA|wE)B{#8#-5Qb)hR4Z2d&u zvzomjW#I^AeDD(DF6^&xV>LKeg5I<1(?wM`vJXssqA z-PZDWI7UZJY={tUQo~FWa3Zw)Mamf20<{MMoM~<2G^kP1Q*14n-7F0B!YP{xeYhvL ihS7K-5?ccfrZ}MGPG1x&tIT>W-lK8kURK97SLuIv1bUqS diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt deleted file mode 100644 index cb6d318..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,9 +0,0 @@ -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.Development.json -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.json -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Properties\launchSettings.json -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.csprojAssemblyReference.cache -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfoInputs.cache -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfo.cs -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.RazorTargetAssemblyInfo.cache -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache -C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.xml diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache deleted file mode 100644 index e084bdcc4df20baeea1adf3d69ad58f3c67fe194..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207380 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 QEHaeV~0hky`CxOnVs4 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 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache deleted file mode 100644 index e69de29..0000000 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml deleted file mode 100644 index 7b21d22..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs deleted file mode 100644 index ad8dfe1..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs deleted file mode 100644 index 4210ecf..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")] -[assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache deleted file mode 100644 index bb2452a..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -bdc64432113bfe338116fdd02bfa23c1ecd3f2db diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache deleted file mode 100644 index 5568053..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -ca0a7635792fb9eeeeef10e57948d083ad593b96 diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs deleted file mode 100644 index 9427e0e..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.RazorAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("AlfaPrentice.Views")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache deleted file mode 100644 index a7690926b2c3b74c11595eb6c2dd1b19fc8ea016..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11129 zcmdT~&2Jk;6nCMal+tfnptLk?=_lzXZc^G5XzMyj8=91el!}8dC=sf8(W_ z*Go?o3WW#%+`aklFS~wz%=vYU?Y#HL-}@In`2E6{za98t-=E+8^w(RTj1~%;!0xL} zf1IrI8?=ZLKv(ZJ%4Q+R=Vz{lk6;_(eTw`@Bs5ETT_X2MvG|(VyulTHCz32IB zrsrD*bD7h=k6|W_qA^{OpKD&|LL4)wEXEOLqX=^%LK!2JLUDI|$%U@w85Gn%DV#T*sDu6Etfj#qU=b%dByasM1beoUe5Zy?G zrBK)m{}CO2egeuCC{IGc`mIo~{_f!Yi(pq-uxffWD?<P-0iJX0sdQ4KOc*xrz>_ z0ixRm1<^eX1<_$WqQm<2^d&L;e9#@cn(WI7r7x*5SNd{0pb;aDXm>zCv{;X5aRz+5 zj*%zO8mtoj8NtgvPkSsk-%k#B(PqP_lh6!2#_aI6== zKg$W+b64zo%V#)!2E?tps<8K^VDIO!v0lLbegk3WnK}s$Srh2l6rtxhA*>gK@~(me zkgDz0EI-e1T#F*8qw;);!~sqM>jjB*ou6_c)~u!lz+JO#yYE`jjx-pDnK;0_2%u7U zAw}UJr-1c>!jJhT7D1uM^pfXn;%tyTLJ`WEWrtGiUgYesUa;l7#d?ACn|$NIq2}p(0X(a}kEB=}S=GUW@&cp)m<+LZ8I>G_g>34tq6BlM;DDrfqO=AmhYD%XBGKbK!(T-D2RL< z3L?jPM2_|87v?>OdOpXX$Nr>+c!na$GDYTaDgG;cNQPo;etD*yWgV2I2bSaUL7=z(K*|J zQ-KQ~L2a#at99K9=a}PEK~0(S97t8s2VWbnXmoAu>O)|LqJjGfzS4@u1k~Yos-jVZ z&*z{_LYabc9?C0FHb&`4o}#^#4uLwYbX)*5_?@bBP^d40&BIqf1PdJngkmubEQVPb z5&U$N5sKd>;FtGV@qbfH1i9S+688+0sqm1d6cdWvt6)1+N{S$)qoh!TUIRiyq_7A& zItmL#=XId-NGLCYsE+bN5xopV^RBW)zO#{vj3B3@$WY|20J$MmY6LYMrG}z*6{tOW z3XWi{qu@}iOTapx(!k}C!JgekZVdMpf`N{*Lov7p42DE{ zC5U1$0}O^jAreG%6e5bqED(9f%8{U;qa0Bb=77S+D@w$3Qr|~N)MW&lw4!t!P~vy0 zqC~N|0XD;>GzmsJN)yFs9vG>wH{ipL=$Ut^^Xq~6ny&n_S9QAsN&sB4jYRsYqDT=B zu_MuK{`MsnuFku>)hW2!A5Y%xE8-3j1V?upcfJL`ZrH)!a~v6RS=98z7;lWrzwqFi zYD=hV*oeY~(9Wh{W+rh@D6t3!3^{-tR~k6JD&}Ehv~olVbXRy=QWaOJ^cMH9B^_~Z zdcZd1wXudIcu_ZaBKZa689WnaYQN5|t06T)kC92V+EF64M~3jlmb6vO%bLUp0TkO& zB*R%bUnpa>FBW*C^1dLkhV%m=1X}v!$>2FndP?p{FCSr`(zvQigL2M>&Q)7o=*k6K zKauymW^YJYI6@g8yo9(5`zzd7O%grP%L~KymxM>6%cYCNK@rE!Qj@U(9W^;>qIf9< zAMSz1c@t88?v|plk?!LleY6liQQKMy0xP`TZdzOX7W~?-VQnpY&Gv$4GG}w>x2!!g z7TjC8(H+}ztBMEb5h>tj9FAkj(d~W69Y}^#&p)N5jN{CZ&Xk3^MzD|0D&}%+QwI`S ztI0^WwLBh9&`}c`B7~dNFw+E_2rYk+GDfyQ?STMiTH81cYLxU8TT5m)3j@7y%4R|z l?#ZoTG+v0r)_{X44rsa47sbjdd%YI#@i=lXtCO0m^gnm$d8GgV diff --git a/AlfaPrentice/AlfaPrentice/obj/project.assets.json b/AlfaPrentice/AlfaPrentice/obj/project.assets.json deleted file mode 100644 index 2a3ff0d..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/project.assets.json +++ /dev/null @@ -1,783 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v3.1": { - "Microsoft.Bcl.AsyncInterfaces/1.1.1": { - "type": "package", - "compile": { - "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "Microsoft.Bcl.HashCode/1.1.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.1.1", - "Microsoft.Bcl.HashCode": "1.1.0", - "Microsoft.EntityFrameworkCore.Abstractions": "3.1.9", - "Microsoft.EntityFrameworkCore.Analyzers": "3.1.9", - "Microsoft.Extensions.Caching.Memory": "3.1.9", - "Microsoft.Extensions.DependencyInjection": "3.1.9", - "Microsoft.Extensions.Logging": "3.1.9", - "System.Collections.Immutable": "1.7.1", - "System.ComponentModel.Annotations": "4.7.0", - "System.Diagnostics.DiagnosticSource": "4.7.1" - }, - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/3.1.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/3.1.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "3.1.9", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", - "Microsoft.Extensions.Logging.Abstractions": "3.1.9", - "Microsoft.Extensions.Options": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "3.1.9", - "Microsoft.Extensions.DependencyInjection": "3.1.9", - "Microsoft.Extensions.Logging.Abstractions": "3.1.9", - "Microsoft.Extensions.Options": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/3.1.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/3.1.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", - "Microsoft.Extensions.Primitives": "3.1.9" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/3.1.9": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": { - "type": "package", - "build": { - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {}, - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} - } - }, - "System.Collections.Immutable/1.7.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Annotations/4.7.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.7.1": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.Bcl.AsyncInterfaces/1.1.1": { - "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", - "type": "package", - "path": "microsoft.bcl.asyncinterfaces/1.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "microsoft.bcl.asyncinterfaces.nuspec", - "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Bcl.HashCode/1.1.0": { - "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==", - "type": "package", - "path": "microsoft.bcl.hashcode/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.HashCode.dll", - "lib/net461/Microsoft.Bcl.HashCode.xml", - "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", - "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml", - "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll", - "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml", - "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll", - "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml", - "microsoft.bcl.hashcode.1.1.0.nupkg.sha512", - "microsoft.bcl.hashcode.nuspec", - "ref/net461/Microsoft.Bcl.HashCode.dll", - "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", - "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll", - "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.EntityFrameworkCore/3.1.9": { - "sha512": "u3A2W0BvAuAF2jgW+WX+C+Sh8sMGX5Kl1hdA0gu6A/XSrZQoW/BUP4a/q2n3iitDGndaorqjAKx+Spb9gBto+w==", - "type": "package", - "path": "microsoft.entityframeworkcore/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.3.1.9.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/3.1.9": { - "sha512": "IR6Y4RJVlw0QXdWXjF3Kx9s1QLiicJus+BFBKr43lBtriV20j3yrWMoaZ9W1AUUgnicZXpXVcNfklqtmwb9Sxw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.3.1.9.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/3.1.9": { - "sha512": "eXGyx/Lb1fiiKtnIStdxGrfBSSQg8oZytE10f1T/2xAx12W9dKB9U9fg05cwNCDC0S2CXILsmZHYaGqCSXVAqQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.3.1.9.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/3.1.9": { - "sha512": "/2QsPAsUZD4qvftZkUKHRRRryPDXWh606/iNXPLrulwHLMr9JNsKBJWVqylT3qU92nJok5VoqSblkY9mSyxFyg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.3.1.9.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Memory/3.1.9": { - "sha512": "/JrVMVetX/kpJQUIlJ6NLQ3zbF0yyryXpo4+uFCqYIUZzgmWk8DS/zSKcyj1tQ3410+vhDEAPngxC+hg0IlJeg==", - "type": "package", - "path": "microsoft.extensions.caching.memory/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.3.1.9.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/3.1.9": { - "sha512": "lqdkOGNeTMKG981Q7yWGlRiFbIlsRwTlMMiybT+WOzUCFBS/wc25tZgh7Wm/uRoBbWefgvokzmnea7ZjmFedmA==", - "type": "package", - "path": "microsoft.extensions.configuration/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.3.1.9.nupkg.sha512", - "microsoft.extensions.configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.9": { - "sha512": "vOJxPKczaHpXeZFrxARxYwsEulhEouXc5aZGgMdkhV/iEXX9/pfjqKk76rTG+4CsJjHV+G/4eMhvOIaQMHENNA==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Binder/3.1.9": { - "sha512": "BG6HcT7tARYakftqfQu+cLksgIWG1NdxMY+igI12hdZrUK+WjS973NiRyuao/U9yyTeM9NPwRnC61hCmG3G3jg==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.3.1.9.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/3.1.9": { - "sha512": "ORqfrAACcvTInie1oGola5uky344/PiNfgayTPuZWV4WnSfIQZJQm/ZLpGshJE3h7TqwYaYElGazK/yaM2bFLA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.3.1.9.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": { - "sha512": "8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Logging/3.1.9": { - "sha512": "+V3i0jCQCO6IIOf6e+fL0SqrZd2x/Krug9EEL1JHa9R03RsbEpltCtjVY5hxedyuyuQKwvLoR12sCfu/9XEUAw==", - "type": "package", - "path": "microsoft.extensions.logging/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.3.1.9.nupkg.sha512", - "microsoft.extensions.logging.nuspec" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/3.1.9": { - "sha512": "W5fbF8qVR9SMVVJqDQLIR7meWbev6Pu/lbrm7LDNr4Sp7HOotr4k2UULTdFSXOi5aoDdkQZpWnq0ZSpjrR3tjg==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.3.1.9.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec" - ] - }, - "Microsoft.Extensions.Options/3.1.9": { - "sha512": "EIb3G1DL+Rl9MvJR7LjI1wCy2nfTN4y8MflbOftn1HLYQBj/Rwl8kUbGTrSFE01c99Wm4ETjWVsjqKcpFvhPng==", - "type": "package", - "path": "microsoft.extensions.options/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.3.1.9.nupkg.sha512", - "microsoft.extensions.options.nuspec" - ] - }, - "Microsoft.Extensions.Primitives/3.1.9": { - "sha512": "IrHecH0eGG7/XoeEtv++oLg/sJHRNyeCqlA9RhAo6ig4GpOTjtDr32sBMYuuLtUq8ALahneWkrOzoBAwJ4L4iA==", - "type": "package", - "path": "microsoft.extensions.primitives/3.1.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.3.1.9.nupkg.sha512", - "microsoft.extensions.primitives.nuspec" - ] - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": { - "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==", - "type": "package", - "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "EULA.md", - "ThirdPartyNotices.txt", - "build/Container.props", - "build/Container.targets", - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props", - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets", - "build/ToolsTarget.props", - "build/ToolsTarget.targets", - "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", - "microsoft.visualstudio.azure.containers.tools.targets.nuspec", - "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll", - "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll", - "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll", - "tools/Newtonsoft.Json.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/utils/KillProcess.exe", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" - ] - }, - "System.Collections.Immutable/1.7.1": { - "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==", - "type": "package", - "path": "system.collections.immutable/1.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.7.1.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/4.7.0": { - "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", - "type": "package", - "path": "system.componentmodel.annotations/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.4.7.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/4.7.1": { - "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v3.1": [ - "Microsoft.EntityFrameworkCore >= 3.1.9", - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9" - ] - }, - "packageFolders": { - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp3.1": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[3.1.9, )" - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { - "target": "Package", - "version": "[1.10.9, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache b/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache deleted file mode 100644 index f15e15f..0000000 --- a/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "KI6cjqwmZ67CPfWkH8Ro5bxd7Zbem5QMkcNur4LWc0skZzaLMraH+emrh1jCSRMdB+FLmdb8QSsMUlnNy5J56g==", - "success": true, - "projectFilePath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.9\\microsoft.entityframeworkcore.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.9\\microsoft.entityframeworkcore.abstractions.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.9\\microsoft.entityframeworkcore.analyzers.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.9\\microsoft.extensions.caching.abstractions.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.9\\microsoft.extensions.caching.memory.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.9\\microsoft.extensions.configuration.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.9\\microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.9\\microsoft.extensions.configuration.binder.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.9\\microsoft.extensions.dependencyinjection.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.9\\microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging\\3.1.9\\microsoft.extensions.logging.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.9\\microsoft.extensions.logging.abstractions.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.options\\3.1.9\\microsoft.extensions.options.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.9\\microsoft.extensions.primitives.3.1.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/ReactJS/Native/AlfaPrentice/.expo-shared/README.md b/Native/AlfaPrentice/.expo-shared/README.md similarity index 100% rename from ReactJS/Native/AlfaPrentice/.expo-shared/README.md rename to Native/AlfaPrentice/.expo-shared/README.md diff --git a/ReactJS/Native/AlfaPrentice/.expo-shared/assets.json b/Native/AlfaPrentice/.expo-shared/assets.json similarity index 100% rename from ReactJS/Native/AlfaPrentice/.expo-shared/assets.json rename to Native/AlfaPrentice/.expo-shared/assets.json diff --git a/ReactJS/Native/AlfaPrentice/.gitignore b/Native/AlfaPrentice/.gitignore similarity index 100% rename from ReactJS/Native/AlfaPrentice/.gitignore rename to Native/AlfaPrentice/.gitignore diff --git a/ReactJS/Native/AlfaPrentice/App.js b/Native/AlfaPrentice/App.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App.js rename to Native/AlfaPrentice/App.js diff --git a/ReactJS/Native/AlfaPrentice/App/Cards/CompanyResultCard.js b/Native/AlfaPrentice/App/Cards/CompanyResultCard.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Cards/CompanyResultCard.js rename to Native/AlfaPrentice/App/Cards/CompanyResultCard.js diff --git a/ReactJS/Native/AlfaPrentice/App/Cards/ProfileLinks.js b/Native/AlfaPrentice/App/Cards/ProfileLinks.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Cards/ProfileLinks.js rename to Native/AlfaPrentice/App/Cards/ProfileLinks.js diff --git a/ReactJS/Native/AlfaPrentice/App/Cta/Cta.js b/Native/AlfaPrentice/App/Cta/Cta.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Cta/Cta.js rename to Native/AlfaPrentice/App/Cta/Cta.js diff --git a/ReactJS/Native/AlfaPrentice/App/Footer/Footer.js b/Native/AlfaPrentice/App/Footer/Footer.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Footer/Footer.js rename to Native/AlfaPrentice/App/Footer/Footer.js diff --git a/ReactJS/Native/AlfaPrentice/App/Header/Header.js b/Native/AlfaPrentice/App/Header/Header.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Header/Header.js rename to Native/AlfaPrentice/App/Header/Header.js diff --git a/ReactJS/Native/AlfaPrentice/App/Hero/Hero.js b/Native/AlfaPrentice/App/Hero/Hero.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Hero/Hero.js rename to Native/AlfaPrentice/App/Hero/Hero.js diff --git a/ReactJS/Native/AlfaPrentice/App/Images/Stock.png b/Native/AlfaPrentice/App/Images/Stock.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Images/Stock.png rename to Native/AlfaPrentice/App/Images/Stock.png diff --git a/ReactJS/Native/AlfaPrentice/App/Images/logo-licht.png b/Native/AlfaPrentice/App/Images/logo-licht.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Images/logo-licht.png rename to Native/AlfaPrentice/App/Images/logo-licht.png diff --git a/ReactJS/Native/AlfaPrentice/App/Images/logo.png b/Native/AlfaPrentice/App/Images/logo.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Images/logo.png rename to Native/AlfaPrentice/App/Images/logo.png diff --git a/ReactJS/Native/AlfaPrentice/App/Images/stock2.png b/Native/AlfaPrentice/App/Images/stock2.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Images/stock2.png rename to Native/AlfaPrentice/App/Images/stock2.png diff --git a/ReactJS/Native/AlfaPrentice/App/Layouts/DefaultLayout.js b/Native/AlfaPrentice/App/Layouts/DefaultLayout.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Layouts/DefaultLayout.js rename to Native/AlfaPrentice/App/Layouts/DefaultLayout.js diff --git a/ReactJS/Native/AlfaPrentice/App/Router/Router.js b/Native/AlfaPrentice/App/Router/Router.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Router/Router.js rename to Native/AlfaPrentice/App/Router/Router.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Home.js b/Native/AlfaPrentice/App/Views/Home.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Home.js rename to Native/AlfaPrentice/App/Views/Home.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Login.js b/Native/AlfaPrentice/App/Views/Login.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Login.js rename to Native/AlfaPrentice/App/Views/Login.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/CompanyProfile.js b/Native/AlfaPrentice/App/Views/Profiles/CompanyProfile.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/CompanyProfile.js rename to Native/AlfaPrentice/App/Views/Profiles/CompanyProfile.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/UserProfile.js b/Native/AlfaPrentice/App/Views/Profiles/UserProfile.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/UserProfile.js rename to Native/AlfaPrentice/App/Views/Profiles/UserProfile.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/AccountSettings.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/AccountSettings.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/AccountSettings.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/AccountSettings.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Agenda.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Agenda.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Agenda.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Agenda.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Contact.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Contact.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Contact.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Contact.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/InternStatus.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/InternStatus.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/InternStatus.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/InternStatus.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/OutgoingSolicitation.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/OutgoingSolicitation.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/OutgoingSolicitation.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/OutgoingSolicitation.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Suggestions.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Suggestions.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Suggestions.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Suggestions.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Weekstaten.js b/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Weekstaten.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Weekstaten.js rename to Native/AlfaPrentice/App/Views/Profiles/Userfunctions/Weekstaten.js diff --git a/ReactJS/Native/AlfaPrentice/App/Views/SearchPage.js b/Native/AlfaPrentice/App/Views/SearchPage.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/Views/SearchPage.js rename to Native/AlfaPrentice/App/Views/SearchPage.js diff --git a/ReactJS/Native/AlfaPrentice/App/index.js b/Native/AlfaPrentice/App/index.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/App/index.js rename to Native/AlfaPrentice/App/index.js diff --git a/ReactJS/Native/AlfaPrentice/app.json b/Native/AlfaPrentice/app.json similarity index 100% rename from ReactJS/Native/AlfaPrentice/app.json rename to Native/AlfaPrentice/app.json diff --git a/ReactJS/Native/AlfaPrentice/assets/adaptive-icon.png b/Native/AlfaPrentice/assets/adaptive-icon.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/assets/adaptive-icon.png rename to Native/AlfaPrentice/assets/adaptive-icon.png diff --git a/ReactJS/Native/AlfaPrentice/assets/favicon.png b/Native/AlfaPrentice/assets/favicon.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/assets/favicon.png rename to Native/AlfaPrentice/assets/favicon.png diff --git a/ReactJS/Native/AlfaPrentice/assets/icon.png b/Native/AlfaPrentice/assets/icon.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/assets/icon.png rename to Native/AlfaPrentice/assets/icon.png diff --git a/ReactJS/Native/AlfaPrentice/assets/splash.png b/Native/AlfaPrentice/assets/splash.png similarity index 100% rename from ReactJS/Native/AlfaPrentice/assets/splash.png rename to Native/AlfaPrentice/assets/splash.png diff --git a/ReactJS/Native/AlfaPrentice/babel.config.js b/Native/AlfaPrentice/babel.config.js similarity index 100% rename from ReactJS/Native/AlfaPrentice/babel.config.js rename to Native/AlfaPrentice/babel.config.js diff --git a/ReactJS/Native/AlfaPrentice/package-lock.json b/Native/AlfaPrentice/package-lock.json similarity index 100% rename from ReactJS/Native/AlfaPrentice/package-lock.json rename to Native/AlfaPrentice/package-lock.json diff --git a/ReactJS/Native/AlfaPrentice/package.json b/Native/AlfaPrentice/package.json similarity index 100% rename from ReactJS/Native/AlfaPrentice/package.json rename to Native/AlfaPrentice/package.json