From 3829944848a725120345bc3b352802421caf3c5e Mon Sep 17 00:00:00 2001 From: Naumann Date: Wed, 27 May 2020 14:22:54 +0200 Subject: [PATCH] update --- BuecherwurmAPI.csproj | 4 + Controllers/CatalogueController.cs | 31 - Controllers/KatalogController.cs | 42 + Data/Context.cs | 14 + Data/IBookRepo.cs | 11 + Data/KatalogRepo.cs | 10 +- obj/BuecherwurmAPI.csproj.nuget.dgspec.json | 35 +- obj/BuecherwurmAPI.csproj.nuget.g.props | 4 +- .../netcoreapp3.1/BuecherwurmAPI.assets.cache | Bin 134 -> 33440 bytes ...echerwurmAPI.csprojAssemblyReference.cache | Bin 424 -> 424 bytes obj/project.assets.json | 4917 ++++++++++++++++- obj/project.nuget.cache | 91 +- 12 files changed, 5091 insertions(+), 68 deletions(-) delete mode 100644 Controllers/CatalogueController.cs create mode 100644 Controllers/KatalogController.cs create mode 100644 Data/Context.cs create mode 100644 Data/IBookRepo.cs diff --git a/BuecherwurmAPI.csproj b/BuecherwurmAPI.csproj index 400722f..00d099f 100644 --- a/BuecherwurmAPI.csproj +++ b/BuecherwurmAPI.csproj @@ -4,5 +4,9 @@ netcoreapp3.1 + + + + diff --git a/Controllers/CatalogueController.cs b/Controllers/CatalogueController.cs deleted file mode 100644 index 80a6081..0000000 --- a/Controllers/CatalogueController.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.Collections.Generic; -using BuecherwurmAPI.Models; -using Microsoft.AspNetCore.Mvc; - -namespace BuecherwurmAPI.Controllers -{ - [Route("katalog") ] - [ApiController] - public class KatalogController - { - private readonly object _repository; - - /*[HttpGet] -public ActionResult> GetAllBooks() -{ - -}*/ - - // GET Katalog/{id} - [HttpGet("{id}", Name ="GetBookByID")] - public ActionResult > GetBookByID(int id) - { - var bookItem = _repository.GetBookByID(id); - if (bookItem != null) - { - return - } - } - } - -} \ No newline at end of file diff --git a/Controllers/KatalogController.cs b/Controllers/KatalogController.cs new file mode 100644 index 0000000..0f7fbd2 --- /dev/null +++ b/Controllers/KatalogController.cs @@ -0,0 +1,42 @@ +using System.Collections.Generic; +using BuecherwurmAPI.Models; +using Microsoft.AspNetCore.Mvc; +using System.Linq; +using Microsoft.EntityFrameworkCore; +using BuecherwurmAPI.Data; + +namespace BuecherwurmAPI.Controllers +{ + [Route("katalog") ] + [ApiController] + public class KatalogController :ControllerBase + { + private readonly IBookRepo _repository; + + public KatalogController (IBookRepo repository) + { + _repository=repository; + } + // GET Katalog + [HttpGet] + public ActionResult> GetAllBooks() + { + var books =_repository.GetAllBooks(); + return Ok(books); + } + + // GET Katalog/{id} + [HttpGet("{id}", Name ="GetBookByID")] + public ActionResult > GetBookByID(int id) + { + var bookItem = _repository.GetBookById(id); + if (bookItem != null) + { + return Ok(bookItem); + } + return NoContent(); + + } + } + +} \ No newline at end of file diff --git a/Data/Context.cs b/Data/Context.cs new file mode 100644 index 0000000..38ad349 --- /dev/null +++ b/Data/Context.cs @@ -0,0 +1,14 @@ +using BuecherwurmAPI.Models; +using Microsoft.EntityFrameworkCore; +namespace BuecherwurmAPI.Data +{ + public class Context + { + /*public Context(DbContextOptions opt) + { + + } + + public DbSet Books {get; set;} */ + } +} \ No newline at end of file diff --git a/Data/IBookRepo.cs b/Data/IBookRepo.cs new file mode 100644 index 0000000..9ce4101 --- /dev/null +++ b/Data/IBookRepo.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; +using BuecherwurmAPI.Models; + +namespace BuecherwurmAPI.Data +{ + public interface IBookRepo + { + IEnumerable GetAllBooks(); + Book GetBookById(int id); + } +} \ No newline at end of file diff --git a/Data/KatalogRepo.cs b/Data/KatalogRepo.cs index a5c25f9..055f05d 100644 --- a/Data/KatalogRepo.cs +++ b/Data/KatalogRepo.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BuecherwurmAPI.Models; +using Microsoft.AspNetCore.Mvc; namespace BuecherwurmAPI.Data { @@ -7,11 +8,16 @@ namespace BuecherwurmAPI.Data { private readonly object _context; - public IEnumerable GetAllBooks() + public KatalogRepo (object context) { - return _context.Book.ToList(); + _context = context; } + /*public IEnumerable GetAllBooks() + { + return _context.books.ToList(); + }*/ + /*public Book GetBookById(int id) { return _context.FirstOrDefault(p => p.Id == id); diff --git a/obj/BuecherwurmAPI.csproj.nuget.dgspec.json b/obj/BuecherwurmAPI.csproj.nuget.dgspec.json index 519046e..5f72f19 100644 --- a/obj/BuecherwurmAPI.csproj.nuget.dgspec.json +++ b/obj/BuecherwurmAPI.csproj.nuget.dgspec.json @@ -1,25 +1,32 @@ { "format": 1, "restore": { - "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj": {} + "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj": {} }, "projects": { - "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj": { + "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj", + "projectUniqueName": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj", "projectName": "BuecherwurmAPI", - "projectPath": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj", - "packagesPath": "/home/js/.nuget/packages/", - "outputPath": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/obj/", + "projectPath": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj", + "packagesPath": "C:\\Users\\naumanfe\\.nuget\\packages\\", + "outputPath": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], "configFilePaths": [ - "/home/js/.nuget/NuGet/NuGet.Config" + "C:\\Users\\naumanfe\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ "netcoreapp3.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -35,6 +42,12 @@ }, "frameworks": { "netcoreapp3.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[*, )" + } + }, "imports": [ "net461", "net462", @@ -45,12 +58,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[3.1.2, 3.1.2]" - } - ], "frameworkReferences": { "Microsoft.AspNetCore.App": { "privateAssets": "none" @@ -59,7 +66,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/3.1.300/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.300\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/BuecherwurmAPI.csproj.nuget.g.props b/obj/BuecherwurmAPI.csproj.nuget.g.props index db837e3..b1e38f7 100644 --- a/obj/BuecherwurmAPI.csproj.nuget.g.props +++ b/obj/BuecherwurmAPI.csproj.nuget.g.props @@ -4,8 +4,8 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/js/.nuget/packages/ - /home/js/.nuget/packages/ + $(UserProfile)\.nuget\packages\ + C:\Users\naumanfe\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder PackageReference 5.6.0 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.assets.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.assets.cache index 5a9a5515451c27564e912461e5b88992623bf776..a3ee04562c7d3fdf70ccb2d66dba6eb792038957 100644 GIT binary patch literal 33440 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 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csprojAssemblyReference.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csprojAssemblyReference.cache index 9b608975aa2483eec27a7b144d04ad911f5ba48e..1d66bb2462523f6114f29bd88e243688ea2251c2 100644 GIT binary patch delta 13 UcmZ3%yn=ayKO^Ig$pMTJ03Y%MOaK4? delta 13 UcmZ3%yn=ayKO= *" + ] }, "packageFolders": { - "/home/js/.nuget/packages/": {} + "C:\\Users\\naumanfe\\.nuget\\packages\\": {}, + "C:\\Microsoft\\Xamarin\\NuGet\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj", + "projectUniqueName": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj", "projectName": "BuecherwurmAPI", - "projectPath": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj", - "packagesPath": "/home/js/.nuget/packages/", - "outputPath": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/obj/", + "projectPath": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj", + "packagesPath": "C:\\Users\\naumanfe\\.nuget\\packages\\", + "outputPath": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], "configFilePaths": [ - "/home/js/.nuget/NuGet/NuGet.Config" + "C:\\Users\\naumanfe\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ "netcoreapp3.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -41,6 +4926,12 @@ }, "frameworks": { "netcoreapp3.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[*, )" + } + }, "imports": [ "net461", "net462", @@ -51,12 +4942,6 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[3.1.2, 3.1.2]" - } - ], "frameworkReferences": { "Microsoft.AspNetCore.App": { "privateAssets": "none" @@ -65,7 +4950,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/3.1.300/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.300\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index b0958fd..c35f3e7 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,10 +1,95 @@ { "version": 2, - "dgSpecHash": "DQHTkigAmzaLDZvres1QqICGpp078kH+e2RcIw20S2aZ61FIcBBy9GnDIw6JTzZ4/RxJvQ1+WRFn2orctypbfA==", + "dgSpecHash": "OkbqxLsGjU/phS1fK6Q8gWXFT1I3jAMGVLTXFmQoLfQnRjbFTIRgn7Gt3w6sZMaf2VZB9SA3+No4We61QEwT+A==", "success": true, - "projectFilePath": "/home/js/git/BuecherwurmAPI/BuecherwurmAPI/BuecherwurmAPI.csproj", + "projectFilePath": "H:\\Eigene Dateien\\Ausbildungsmodule\\BuecherwurmAPI\\BuecherwurmAPI.csproj", "expectedPackageFiles": [ - "/home/js/.nuget/packages/microsoft.aspnetcore.app.ref/3.1.2/microsoft.aspnetcore.app.ref.3.1.2.nupkg.sha512" + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.data.sqlclient\\1.0.19269.1\\microsoft.data.sqlclient.1.0.19269.1.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.4\\microsoft.entityframeworkcore.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.4\\microsoft.entityframeworkcore.abstractions.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.4\\microsoft.entityframeworkcore.analyzers.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.4\\microsoft.entityframeworkcore.relational.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.4\\microsoft.entityframeworkcore.sqlserver.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.4\\microsoft.extensions.caching.abstractions.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.4\\microsoft.extensions.caching.memory.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.4\\microsoft.extensions.configuration.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.4\\microsoft.extensions.configuration.abstractions.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.4\\microsoft.extensions.configuration.binder.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.4\\microsoft.extensions.dependencyinjection.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.4\\microsoft.extensions.dependencyinjection.abstractions.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.logging\\3.1.4\\microsoft.extensions.logging.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.4\\microsoft.extensions.logging.abstractions.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.options\\3.1.4\\microsoft.extensions.options.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.4\\microsoft.extensions.primitives.3.1.4.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.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.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.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\\naumanfe\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.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\\naumanfe\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.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.extensions\\4.3.0\\system.globalization.extensions.4.3.0.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.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.net.nameresolution\\4.3.0\\system.net.nameresolution.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.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.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:\\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\\naumanfe\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.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.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.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:\\Users\\naumanfe\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\naumanfe\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.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.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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file