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 53e24e8..0000000 Binary files a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo and /dev/null differ 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 8c00fd1..0000000 Binary files a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache and /dev/null differ 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 e084bdc..0000000 Binary files a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache and /dev/null differ 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 a769092..0000000 Binary files a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache and /dev/null differ 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