snap er niks van
This commit is contained in:
parent
2d253c4ab6
commit
0bc83a1ec6
Binary file not shown.
Binary file not shown.
@ -2,6 +2,9 @@
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ActiveDebugProfile>AlfaPrentice</ActiveDebugProfile>
|
||||
<Controller_SelectedScaffolderID>MvcControllerWithActionsScaffolder</Controller_SelectedScaffolderID>
|
||||
<Controller_SelectedScaffolderCategoryPath>root/Common/MVC/Controller</Controller_SelectedScaffolderCategoryPath>
|
||||
<WebStackScaffolding_ControllerDialogWidth>600</WebStackScaffolding_ControllerDialogWidth>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
||||
|
||||
53
AlfaPrentice/Controllers/BedrijfController.cs
Normal file
53
AlfaPrentice/Controllers/BedrijfController.cs
Normal file
@ -0,0 +1,53 @@
|
||||
using AlfaPrentice.Data;
|
||||
using AlfaPrentice.Models;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||
|
||||
namespace AlfaPrentice.Controllers
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
[ApiController]
|
||||
public class BedrijfController : ControllerBase
|
||||
{
|
||||
//constructor
|
||||
public readonly AlfaPrenticeContext _context;
|
||||
public BedrijfController(AlfaPrenticeContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
//getbedrijf
|
||||
[HttpGet("{Bedrijf_ID}")]
|
||||
public async Task<IEnumerable<Bedrijf>> GetBedrijf(int Bedrijf_ID)
|
||||
{
|
||||
return await _context.Bedrijf.Where(B => B.Bedrijf_ID == Bedrijf_ID).ToListAsync();
|
||||
// return getBedrijf;
|
||||
}
|
||||
|
||||
// GET: api/<BedrijfController>
|
||||
/* [HttpGet]
|
||||
public IEnumerable<string> Get()
|
||||
{
|
||||
return new string[] { "value1", "value2" };
|
||||
}
|
||||
|
||||
// GET api/<BedrijfController>/5
|
||||
[HttpGet("{id}")]
|
||||
public string Get(int id)
|
||||
{
|
||||
return "value";
|
||||
}
|
||||
|
||||
// POST api/<BedrijfController>
|
||||
[HttpPost]
|
||||
public void Post([FromBody] string value)
|
||||
{
|
||||
}*/
|
||||
}
|
||||
}
|
||||
@ -1,7 +1,7 @@
|
||||
using AlfaPrentice.Data;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.HttpsPolicy;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
@ -27,7 +27,7 @@ namespace AlfaPrentice
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.Configure<Models.AppSettings>(Configuration);
|
||||
services.AddDbContext<OurhostContext>(options => options.UseMySql(Configuration.GetConnectionString("AlfaPrentice")));
|
||||
services.AddDbContext<AlfaPrenticeContext>(options => options.UseMySql(Configuration.GetConnectionString("AlfaPrentice")));
|
||||
services.AddControllers();
|
||||
services.AddSwaggerGen(c =>
|
||||
{
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -1,9 +1,8 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\Xandra Mentink\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
"C:\\Users\\mathieu\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages"
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@ -6,5 +6,12 @@
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"AlfaPrentice": "Server=localhost;User Id=root; Database=AlfaPrentice"
|
||||
},
|
||||
|
||||
"emailsmtp": "mail.incapabel.com",
|
||||
"emailusername": "info@incapabel.com",
|
||||
"emailpassword": "@Alfa2019",
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
|
||||
Binary file not shown.
@ -1,23 +1,20 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {}
|
||||
"C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\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\\AlfaPrentice.csproj",
|
||||
"projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"projectName": "AlfaPrentice",
|
||||
"projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\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": [
|
||||
|
||||
@ -22,6 +22,7 @@
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<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_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\mathieu\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
<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>
|
||||
</Project>
|
||||
@ -0,0 +1 @@
|
||||
2d9d4dadc467f6ffa88e0444837037282bcddef4
|
||||
@ -0,0 +1 @@
|
||||
550bf7cacb6ace12889197695f45c43e678c7223
|
||||
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache
Normal file
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
45d85c66a128c1451f9ad184b1ab1e86bb5d3567
|
||||
@ -36,7 +36,6 @@ C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\
|
||||
C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb
|
||||
C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.genruntimeconfig.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csprojAssemblyReference.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfoInputs.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfo.cs
|
||||
@ -45,3 +44,114 @@ C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\Alf
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\ref\AlfaPrentice.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\appsettings.Development.json
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\appsettings.json
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.exe
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.deps.json
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.runtimeconfig.json
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.runtimeconfig.dev.json
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ref\AlfaPrentice.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.pdb
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Humanizer.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Razor.Language.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.Razor.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.Workspaces.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.Extensions.DependencyInjection.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Logging.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Tokens.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.OpenApi.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\dotnet-aspnet-codegenerator-design.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\MySqlConnector.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Newtonsoft.Json.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Pomelo.EntityFrameworkCore.MySql.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Pomelo.JsonObject.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.AttributedModel.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Convention.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Hosting.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Runtime.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.TypedParts.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.IdentityModel.Tokens.Jwt.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\runtimes\win-arm\lib\net5.0\dotnet-aspnet-codegenerator-design.exe
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\runtimes\win-arm64\lib\net5.0\dotnet-aspnet-codegenerator-design.exe
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\staticwebassets\AlfaPrentice.StaticWebAssets.xml
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\scopedcss\bundle\AlfaPrentice.styles.css
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.RazorTargetAssemblyInfo.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csproj.CopyComplete
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.genruntimeconfig.cache
|
||||
C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csprojAssemblyReference.cache
|
||||
|
||||
Binary file not shown.
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll
Normal file
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
8975032b6d462f77f04f602fc3ebb72de5c83470
|
||||
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb
Normal file
BIN
AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb
Normal file
Binary file not shown.
BIN
AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll
Normal file
BIN
AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll
Normal file
Binary file not shown.
@ -7297,23 +7297,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\\AlfaPrentice.csproj",
|
||||
"projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"projectName": "AlfaPrentice",
|
||||
"projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\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": [
|
||||
|
||||
@ -1,148 +1,148 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "kRuuVbkJew+FrPPINvezBxsr0Vre6SGkrtXpM4s3oFDpHNxNUtgLGxtID1A/z2pUf8Bq602ywuG4rLiBSkWrVA==",
|
||||
"dgSpecHash": "2Gm+zT/QqpHiDBRJh7Pu7I4ttaW5eDCVDJOzRmhlMu3UikyzlhCUE3sCjAL4YyLtcTu15N6fnueWpSKvf62f+g==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"projectFilePath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\humanizer.core\\2.2.0\\humanizer.core.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.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.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
|
||||
"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.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.8.0\\microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.1\\microsoft.entityframeworkcore.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.1\\microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.1\\microsoft.entityframeworkcore.analyzers.5.0.1.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.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.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.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.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:\\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.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.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.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\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.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\\microsoft.visualstudio.web.codegeneration\\5.0.1\\microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.1\\microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.1\\microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.1\\microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.1\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.1\\microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.1\\microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.1\\microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.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.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.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.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.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.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.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.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512"
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\humanizer.core\\2.2.0\\humanizer.core.2.2.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\\mathieu\\.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.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.8.0\\microsoft.codeanalysis.workspaces.common.3.8.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.entityframeworkcore\\5.0.1\\microsoft.entityframeworkcore.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.1\\microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.1\\microsoft.entityframeworkcore.analyzers.5.0.1.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.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.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.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.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.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.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.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.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\\microsoft.visualstudio.web.codegeneration\\5.0.1\\microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.1\\microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.1\\microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.1\\microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.1\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.1\\microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.1\\microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.1\\microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.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.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.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.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.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.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.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.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\mathieu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user