diff --git a/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..42339ea Binary files /dev/null and b/AlfaPrentice/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 differ diff --git a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/AlfaPrentice/.vs/AlfaPrentice/v16/.suo index b2fe2f6..1969840 100644 Binary files a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo and b/AlfaPrentice/.vs/AlfaPrentice/v16/.suo differ diff --git a/AlfaPrentice/.vs/VSWorkspaceState.json b/AlfaPrentice/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..337dc2a --- /dev/null +++ b/AlfaPrentice/.vs/VSWorkspaceState.json @@ -0,0 +1,9 @@ +{ + "ExpandedNodes": [ + "", + "\\Data", + "\\Models" + ], + "SelectedNode": "\\Models\\Gebruiker.cs", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/AlfaPrentice/.vs/slnx.sqlite b/AlfaPrentice/.vs/slnx.sqlite new file mode 100644 index 0000000..964e227 Binary files /dev/null and b/AlfaPrentice/.vs/slnx.sqlite differ diff --git a/AlfaPrentice/Data/AlfaPrenticeContext.cs b/AlfaPrentice/Data/AlfaPrenticeContext.cs index 94c7ca4..e0aef3f 100644 --- a/AlfaPrentice/Data/AlfaPrenticeContext.cs +++ b/AlfaPrentice/Data/AlfaPrenticeContext.cs @@ -9,7 +9,32 @@ namespace AlfaPrentice.Data { public class AlfaPrenticeContext : DbContext { + public AlfaPrenticeContext(DbContextOptions options) : base(options) + { + } + public DbSet Gebruiker { get; set; } + public DbSet Adres { get; set; } + public DbSet Student { get; set; } + public DbSet Docent { get; set; } + public DbSet Mentor { get; set; } + public DbSet BpvDocent { get; set; } + public DbSet Stagecoordinator { get; set; } + public DbSet Bedrijf { get; set; } + public DbSet Praktijkbegeleider { et; set; } + public DbSet Bericht { get; set; } + public DbSet Agenda { get; set; } + public DbSet Afspraak { get; set; } + public DbSet AgendaBlock { get; set; } + public DbSet Opleiding { get; set; } + public DbSet Klas { get; set; } + public DbSet Sollicitatie { get; set; } + public DbSet Eisen { get; set; } + public DbSet Traject { get; set; } + public DbSet POK { get; set; } + public DbSet Weekstaten { get; set; } + public DbSet Evaluatie { get; set; } + public DbSet Session { get; set; } } diff --git a/AlfaPrentice/Models/Gebruiker.cs b/AlfaPrentice/Models/Gebruiker.cs new file mode 100644 index 0000000..51d45f8 --- /dev/null +++ b/AlfaPrentice/Models/Gebruiker.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AlfaPrentice.Models +{ + public class Gebruiker + { + [Key] + public int Gebruiker_ID { get; set; } + public string Voornaam { get; set; } + public string Tussenvoegsel { get; set; } + public string Achternaam { get; set; } + public string Geslacht { get; set; } + public string Email { get; set; } + public string Wachtwoord { get; set; } + } +} diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json index 5a56e62..425dc19 100644 --- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json +++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json @@ -1,23 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} + "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} }, "projects": { - "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { + "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\mathieu\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -29,7 +26,6 @@ }, "frameworks": { "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", "projectReferences": {} } }, @@ -41,7 +37,6 @@ }, "frameworks": { "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", "dependencies": { "Microsoft.AspNetCore.Mvc.Core": { "target": "Package", @@ -90,7 +85,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.402\\RuntimeIdentifierGraph.json" } } } diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props index 82e9a44..b01a42d 100644 --- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props +++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props @@ -5,9 +5,9 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\mathieu\.nuget\packages\ PackageReference - 5.8.0 + 5.7.0 @@ -19,6 +19,6 @@ - C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9 + C:\Users\mathieu\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9 \ No newline at end of file diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache index e1beec2..a56f85c 100644 Binary files a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache and b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache differ diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache index 5d7a479..b864b8d 100644 Binary files a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache and b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache differ diff --git a/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe new file mode 100644 index 0000000..2ff7bdc Binary files /dev/null and b/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.exe differ diff --git a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache index 679c911..c2c3462 100644 Binary files a/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache and b/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache differ diff --git a/AlfaPrentice/obj/project.assets.json b/AlfaPrentice/obj/project.assets.json index 182bdb7..4a65791 100644 --- a/AlfaPrentice/obj/project.assets.json +++ b/AlfaPrentice/obj/project.assets.json @@ -3735,23 +3735,19 @@ ] }, "packageFolders": { - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\mathieu\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\mathieu\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -3763,7 +3759,6 @@ }, "frameworks": { "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", "projectReferences": {} } }, @@ -3775,7 +3770,6 @@ }, "frameworks": { "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", "dependencies": { "Microsoft.AspNetCore.Mvc.Core": { "target": "Package", @@ -3824,7 +3818,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.402\\RuntimeIdentifierGraph.json" } } } diff --git a/AlfaPrentice/obj/project.nuget.cache b/AlfaPrentice/obj/project.nuget.cache index dd25d79..dadf1e1 100644 --- a/AlfaPrentice/obj/project.nuget.cache +++ b/AlfaPrentice/obj/project.nuget.cache @@ -1,87 +1,87 @@ { "version": 2, - "dgSpecHash": "kIy1HzxsmENtAILlULZbOzQUOmt5m4b5wZqzA62+wuLmuUTF+GZkRx2FQkpC3U5YAW1uz04+YglROF67puk87A==", + "dgSpecHash": "hCoEo/TPZMOI6JUetqZSb8kWP2KPMKS1a+gQCLz2iQUwYV5f+P3KCgR4LZ/LfHmgBaV0qcAMlMycHFysdaN3Ng==", "success": true, - "projectFilePath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectFilePath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "expectedPackageFiles": [ - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.0\\microsoft.entityframeworkcore.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.0\\microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.0\\microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.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\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512" + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.0\\microsoft.entityframeworkcore.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.0\\microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.0\\microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512" ], "logs": [] } \ No newline at end of file