added context tabels and models

This commit is contained in:
mathieusteen 2020-12-10 14:59:47 +01:00
parent 332873f63d
commit 29e752c6d4
30 changed files with 2831 additions and 346 deletions

View File

@ -9,33 +9,46 @@ namespace AlfaPrentice.Data
{ {
public class AlfaPrenticeContext : DbContext public class AlfaPrenticeContext : DbContext
{ {
public AlfaPrenticeContext(DbContextOptions<AlfaPrenticeContext> options) : base(options) public AlfaPrenticeContext(DbContextOptions<AlfaPrenticeContext> options) : base(options)
{ {
} }
//Gebruiker tabellen
public DbSet<Gebruiker> Gebruiker { get; set; } public DbSet<Gebruiker> Gebruiker { get; set; }
public DbSet<Adres> Adres { get; set; } public DbSet<Adres> Adres { get; set; }
public DbSet<Student> Student { get; set; } public DbSet<Student> Student { get; set; }
public DbSet<Docent> Docent { get; set; } public DbSet<Docent> Docent { get; set; }
public DbSet<Mentor> Mentor { get; set; } public DbSet<Mentor> Mentor { get; set; }
public DbSet<BpvDocente> BpvDocent { get; set; } public DbSet<BPVDocent> BPVDocent { get; set; }
public DbSet<Stagecoordinator> Stagecoordinator { get; set; } public DbSet<Stagecoordinator> Stagecoordinator { get; set; }
//Bedrijf tabellen
public DbSet<Bedrijf> Bedrijf { get; set; } public DbSet<Bedrijf> Bedrijf { get; set; }
public DbSet<Praktijkbegeleider> Praktijkbegeleider { et; set; } public DbSet<Praktijkbegeleider> Praktijkbegeleider { get; set; }
public DbSet<Stageplek> Stageplek { get; set; }
public DbSet<Eisen> Eisen { get; set; }
//agenda en bericht tabellen
public DbSet<Bericht> Bericht { get; set; } public DbSet<Bericht> Bericht { get; set; }
public DbSet<Agenda> Agenda { get; set; } public DbSet<Agenda> Agenda { get; set; }
public DbSet<Afspraak> Afspraak { get; set; } public DbSet<Afspraak> Afspraak { get; set; }
public DbSet<AgendaBlock> AgendaBlock { get; set; } public DbSet<AgendaBlok> AgendaBlock { get; set; }
//School tabellen
public DbSet<Opleiding> Opleiding { get; set; } public DbSet<Opleiding> Opleiding { get; set; }
public DbSet<Klas> Klas { get; set; } public DbSet<Klas> Klas { get; set; }
//stageperiode tabellen
public DbSet<Sollicitatie> Sollicitatie { get; set; } public DbSet<Sollicitatie> Sollicitatie { get; set; }
public DbSet<Eisen> Eisen { get; set; }
public DbSet<Traject> Traject { get; set; } public DbSet<Traject> Traject { get; set; }
public DbSet<POK> POK { get; set; } public DbSet<POK> POK { get; set; }
public DbSet<Weekstaten> Weekstaten { get; set; } public DbSet<Weekstaten> Weekstaten { get; set; }
public DbSet<Evaluatie> Evaluatie { get; set; } public DbSet<Evaluatie> Evaluatie { get; set; }
//system tabel
public DbSet<Session> Session { get; set; } public DbSet<Session> Session { get; set; }
} }
} }

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Adres
{
[Key]
public int Adres_ID { get; set; }
public string Straat { get; set; }
public int Huisnummer { get; set; }
public string Toevoeging { get; set; }
public string Postcode { get; set; }
public string Plaats { get; set; }
public string Land { get; set; }
}
}

View File

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Afspraak
{
[Key]
public int Afspraak_ID { get; set; }
public int Agenda_ID { get; set; }
public DateTime BeginDatumeTijd { get; set; }
public int EindDaatumTijd { get; set; }
public string Locatie { get; set; }
public string Omschrijving { get; set; }
public string Onderwerp { get; set; }
public int Gebruiker_ID { get; set; }
public int Docent_ID { get; set; }
public int Student_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Agenda
{
[Key]
public int Agenda_ID { get; set; }
public int AgendaBlock_ID { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class AgendaBlok
{
[Key]
public int AgendaBlok_ID { get; set; }
public DateTime BeginDatumTijd { get; set; }
public DateTime EindDatumTijd { get; set; }
public int Agenda_ID { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class AppSettings
{
public string EmailSmtp { get; set; }
public string EmailUsername { get; set; }
public string EmailPassword { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class BPVDocent
{
[Key]
public int BPVdocent_ID { get; set; }
public int Docent_ID { get; set; }
public int Student_ID { get; set; }
public int Traject_ID { get; set; }
}
}

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Bedrijf
{
[Key]
public int Bedrijf_ID { get; set; }
public string Naam { get; set; }
public string Logo { get; set; }
public string Beschrijving { get; set; }
public string Email { get; set; }
public int Telefoon { get; set; }
public string Status { get; set; }
public int Adres_ID { get; set; }
}
}

View File

@ -0,0 +1,20 @@
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Bericht
{
[Key]
public int Bericht_ID { get; set; }
public string Onderwerp { get; set; }
public string Berichtt { get; set; }
public DateTime BerichtDatumTijd { get; set; }
public int Afzender { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Docent
{
[Key]
public int Docent_ID { get; set; }
public int Gebruiker_ID { get; set; }
public string DrieLetterCode { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Document
{
[Key]
public int Document_ID { get; set; }
public string Bestand { get; set; }
public DateTime UploadDatumTijd { get; set; }
public int Versie { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Eisen
{
[Key]
public int Eisen_ID { get; set; }
public string Omschrijving { get; set; }
}
}

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Evaluatie
{
[Key]
public int Evaluatie_ID { get; set; }
public string Beoordeling { get; set; }
public string Feedbakc { get; set; }
public int Student_ID { get; set; }
public int BPVdocent_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
public int EvaluatieDatumTIjd { get; set; }
public bool Accodering { get; set; }
}
}

View File

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -12,8 +13,13 @@ namespace AlfaPrentice.Models
public string Voornaam { get; set; } public string Voornaam { get; set; }
public string Tussenvoegsel { get; set; } public string Tussenvoegsel { get; set; }
public string Achternaam { get; set; } public string Achternaam { get; set; }
public DateTime GeboorteDatum { get; set; }
public string Geslacht { get; set; } public string Geslacht { get; set; }
public string Email { get; set; } public string Email { get; set; }
public int Telefoon { get; set; }
public string Wachtwoord { get; set; } public string Wachtwoord { get; set; }
public string Profielfoto { get; set; }
public string Status { get; set; }
public int Adres_ID { get; set; }
} }
} }

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Klas
{
[Key]
public int Klas_ID { get; set; }
public string Klasnaam { get; set; }
public int Mentor_ID { get; set; }
public int Opeleiding { get; set; }
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Mentor
{
[Key]
public int Mentor_ID { get; set; }
public int Docent_ID { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Opleiding
{
[Key]
public int Opleiding_ID { get; set; }
public string Naam { get; set; }
public string Omschrijving { get; set; }
public string Status { get; set; }
}
}

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class POK
{
[Key]
public int POK_ID { get; set; }
public bool Accodering { get; set; }
public DateTime AccoderingDatum { get; set; }
public DateTime AnnmaakDatum { get; set; }
public int Student_ID { get; set; }
public int BPVdocent_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Praktijkbegeleider
{
[Key]
public int Praktijkbegeleider_ID { get; set; }
public string Functie { get; set; }
public int Bedrijf_ID { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Session
{
[Key]
public int Session_ID { get; set; }
public string SessionToken { get; set; }
public DateTime SessionVervalDatumTijd { get; set; }
public int Gebruiker_ID { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Sollicitatie
{
[Key]
public int Sollicitatie_ID { get; set; }
public DateTime SolicitaieDatum { get; set; }
public string Status { get; set; }
public int Bedrijf_ID { get; set; }
public int Student_ID { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Stageplek
{
[Key]
public int StagePlek_ID { get; set; }
public int AantalPlekken { get; set; }
public int Bedrijf_ID { get; set; }
public int Eisen_ID { get; set; }
public int Opleiding_ID { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Stagecoordinator
{
[Key]
public int StageCoördinator_ID { get; set; }
}
}

View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Student
{
[Key]
public int Student_ID { get; set; }
public DateTime BeginDatum { get; set; }
public int Leerjaar { get; set; }
public int Adres_ID { get; set; }
public string CV { get; set; }
public string Motivatiebrief { get; set; }
public string Programmeertalen { get; set; }
public string Weblinks { get; set; }
public int Gebruiker_ID { get; set; }
public int Klas_ID { get; set; }
}
}

View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Traject
{
[Key]
public int Traject_ID { get; set; }
public int Student_ID { get; set; }
public int BPVdocent_ID { get; set; }
public int Praktijkbegelijder_ID { get; set; }
public DateTime BeginDatum { get; set; }
public DateTime EindDatum { get; set; }
public int Evaluatie_ID { get; set; }
public int Weekstaten_ID { get; set; }
public int POK_ID { get; set; }
public int Sollicitatie_ID { get; set; }
public int StageCoördinator_ID { get; set; }
public int Document_ID { get; set; }
}
}

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Weekstaten
{
[Key]
public int Weekstaten_ID { get; set; }
public string Beschrijving { get; set; }
public DateTime BeginDatumTijd { get; set; }
public DateTime EindDatumTijd { get; set; }
public int Student_ID { get; set; }
public string Status { get; set; }
public int GewerkteUren { get; set; }
}
}

View File

@ -1,23 +1,20 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {}
}, },
"projects": { "projects": {
"C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"projectName": "AlfaPrentice", "projectName": "AlfaPrentice",
"projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [ "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" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
"originalTargetFrameworks": [ "originalTargetFrameworks": [
@ -28,8 +25,7 @@
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
"frameworks": { "frameworks": {
"net5.0": { "net50": {
"targetAlias": "net5.0",
"projectReferences": {} "projectReferences": {}
} }
}, },
@ -40,8 +36,7 @@
} }
}, },
"frameworks": { "frameworks": {
"net5.0": { "net50": {
"targetAlias": "net5.0",
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Authentication.JwtBearer": { "Microsoft.AspNetCore.Authentication.JwtBearer": {
"target": "Package", "target": "Package",
@ -66,25 +61,12 @@
"version": "[5.6.3, )" "version": "[5.6.3, )"
} }
}, },
"imports": [ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.402\\RuntimeIdentifierGraph.json"
"net461", }
"net462", },
"net47", "runtimes": {
"net471", "win7-x86": {
"net472", "#import": []
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.101\\RuntimeIdentifierGraph.json"
} }
} }
} }

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?> <?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">False</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\mathieu\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.7.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" /> <SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
@ -21,7 +21,8 @@
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" /> <Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
</ImportGroup> </ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server> <PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">C:\Users\mathieu\.nuget\packages\newtonsoft.json\9.0.1</PkgNewtonsoft_Json>
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets> <PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\mathieu\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\mathieu\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

File diff suppressed because it is too large Load Diff

View File

@ -1,26 +1,103 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "v60ccD3UWC2fPCVI/fOrqcczcZc9OhYMGnbIIIJVpSPrVjwcjzN3cgNz8YqEppj4tfiuFUUMSVMwA8AJMvm0IA==", "dgSpecHash": "vOf8yu7YADj//i5cs/NuFpmlhnw8N0RFIs+0Ki+Ji1LXVhrSzjsnX28CpXViYFx9zg5wf02jY1pEdKYOd1kKwA==",
"success": true, "success": false,
"projectFilePath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectFilePath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.1.0\\microsoft.aspnetcore.authentication.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.1.0\\microsoft.aspnetcore.authentication.core.2.1.0.nupkg.sha512",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.1.0\\microsoft.aspnetcore.authorization.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.1.0\\microsoft.aspnetcore.authorization.policy.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.1.0\\microsoft.aspnetcore.hosting.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.1.0\\microsoft.aspnetcore.hosting.server.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http\\2.1.0\\microsoft.aspnetcore.http.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.1.0\\microsoft.aspnetcore.http.abstractions.2.1.0.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\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.1.0\\microsoft.aspnetcore.http.extensions.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.1.0\\microsoft.aspnetcore.http.features.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.1.0\\microsoft.aspnetcore.mvc.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.apiexplorer\\2.1.0\\microsoft.aspnetcore.mvc.apiexplorer.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.1.0\\microsoft.aspnetcore.mvc.core.2.1.0.nupkg.sha512",
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512", "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.dataannotations\\2.1.0\\microsoft.aspnetcore.mvc.dataannotations.2.1.0.nupkg.sha512",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512" "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.1.0\\microsoft.aspnetcore.responsecaching.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.1.0\\microsoft.aspnetcore.routing.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.1.0\\microsoft.aspnetcore.routing.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.staticfiles\\2.1.0\\microsoft.aspnetcore.staticfiles.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.1.0\\microsoft.aspnetcore.webutilities.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.0.0\\microsoft.bcl.asyncinterfaces.1.0.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.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.1.0\\microsoft.extensions.configuration.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\2.1.0\\microsoft.extensions.dependencyinjection.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.1.0\\microsoft.extensions.dependencyinjection.abstractions.2.1.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.1.0\\microsoft.extensions.fileproviders.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\2.1.0\\microsoft.extensions.fileproviders.embedded.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.1.0\\microsoft.extensions.hosting.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.localization\\2.1.0\\microsoft.extensions.localization.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\2.1.0\\microsoft.extensions.localization.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.1.0\\microsoft.extensions.logging.abstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.objectpool\\2.1.0\\microsoft.extensions.objectpool.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.options\\2.1.0\\microsoft.extensions.options.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.primitives\\2.1.0\\microsoft.extensions.primitives.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.webencoders\\2.1.0\\microsoft.extensions.webencoders.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.net.http.headers\\2.1.0\\microsoft.net.http.headers.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.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\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.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.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.5.0\\system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.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.encodings.web\\4.6.0\\system.text.encodings.web.4.6.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.2\\system.threading.tasks.extensions.4.5.2.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512"
], ],
"logs": [] "logs": [
{
"code": "NU1202",
"level": "Error",
"message": "Package Microsoft.AspNetCore.Authentication.JwtBearer 5.0.1 is not compatible with net50 (.NETFramework,Version=v5.0). Package Microsoft.AspNetCore.Authentication.JwtBearer 5.0.1 supports: net5.0 (.NETCoreApp,Version=v5.0)",
"libraryId": "Microsoft.AspNetCore.Authentication.JwtBearer",
"targetGraphs": [
".NETFramework,Version=v5.0"
]
},
{
"code": "NU1202",
"level": "Error",
"message": "Package Microsoft.AspNetCore.Authentication.OpenIdConnect 5.0.1 is not compatible with net50 (.NETFramework,Version=v5.0). Package Microsoft.AspNetCore.Authentication.OpenIdConnect 5.0.1 supports: net5.0 (.NETCoreApp,Version=v5.0)",
"libraryId": "Microsoft.AspNetCore.Authentication.OpenIdConnect",
"targetGraphs": [
".NETFramework,Version=v5.0"
]
},
{
"code": "NU1202",
"level": "Error",
"message": "Package Microsoft.AspNetCore.Authentication.JwtBearer 5.0.1 is not compatible with net50 (.NETFramework,Version=v5.0) / win7-x86. Package Microsoft.AspNetCore.Authentication.JwtBearer 5.0.1 supports: net5.0 (.NETCoreApp,Version=v5.0)",
"libraryId": "Microsoft.AspNetCore.Authentication.JwtBearer",
"targetGraphs": [
".NETFramework,Version=v5.0/win7-x86"
]
},
{
"code": "NU1202",
"level": "Error",
"message": "Package Microsoft.AspNetCore.Authentication.OpenIdConnect 5.0.1 is not compatible with net50 (.NETFramework,Version=v5.0) / win7-x86. Package Microsoft.AspNetCore.Authentication.OpenIdConnect 5.0.1 supports: net5.0 (.NETCoreApp,Version=v5.0)",
"libraryId": "Microsoft.AspNetCore.Authentication.OpenIdConnect",
"targetGraphs": [
".NETFramework,Version=v5.0/win7-x86"
]
}
]
} }