added packages

This commit is contained in:
mathieusteen 2020-11-28 12:14:06 +01:00
parent 3b310d2c35
commit 826b628f43
26 changed files with 3805 additions and 3 deletions

Binary file not shown.

View File

@ -8,7 +8,13 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="5.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" /> <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.2.4" />
</ItemGroup> </ItemGroup>

View File

@ -38,9 +38,33 @@
"frameworks": { "frameworks": {
"netcoreapp3.1": { "netcoreapp3.1": {
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Mvc.Core": {
"target": "Package",
"version": "[2.2.5, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.0, )"
},
"Microsoft.Extensions.DependencyInjection": {
"target": "Package",
"version": "[5.0.0, )"
},
"Microsoft.Extensions.DependencyInjection.Abstractions": {
"target": "Package",
"version": "[5.0.0, )"
},
"Microsoft.Extensions.Logging.Debug": {
"target": "Package",
"version": "[5.0.0, )"
},
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package", "target": "Package",
"version": "[1.10.9, )" "version": "[1.10.9, )"
},
"Pomelo.EntityFrameworkCore.MySql": {
"target": "Package",
"version": "[3.2.4, )"
} }
}, },
"imports": [ "imports": [

View File

@ -7,3 +7,22 @@ C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.RazorTargetAssemblyInfo.cache C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.RazorTargetAssemblyInfo.cache
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.xml C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.xml
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\AlfaPrentice.exe
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.DotNet.PlatformAbstractions.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyModel.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.csproj.CopyComplete
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
C:\Users\mathieu\Source\Repos\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Debug.dll

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,87 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "htHu0NPI/H+77Sz66itWwkgLvVzZMOHfU2vkOzjIrHZbklDzdwg08WyXEDnA3iJpsOYCW7l7sHZ0kHhJbc+JLQ==", "dgSpecHash": "NioRLB/kDsFuJvS9HWpfFfMRPBbQpJ4JChi+B2EYINHiRqxESQnlRbRhKsXTb+6SPxq4399vAJGPRApGOFAeRw==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\mathieu\\Source\\Repos\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectFilePath": "C:\\Users\\mathieu\\Source\\Repos\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"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.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\2.1.0\\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.0\\microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.0\\microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.0\\microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencymodel\\2.1.0\\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512",
"C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512"
], ],
"logs": [] "logs": []
} }