Commit bb976d30 authored by hasan khaddour's avatar hasan khaddour

update messi

parent 789086ab
......@@ -5,13 +5,13 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.17" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.17">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.17" />
<PackageReference Include="AutoMapper" Version="5.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.17">
......
using ;
using ApplicationCore.ViewModel;
using ApplicationDomain.Entities;
using AutoMapper;
namespace ApplicationCore.Mapper
{
class MedicineMapper
public class MedicineMapper :Profile
{
public MedicineMapper() {
CreateMap<Medicine, MedicineViewModel>(
);
}
}
}
......@@ -7,20 +7,27 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ApplicationCore.Mapper;
using AutoMapper;
using ApplicationCore.ViewModel;
namespace ApplicationCore.Services
{
public class MedicineService : IMedicineService
{
private readonly MedicineMapper _mapper;
private readonly IUnitOfWork<Medicine> _medicineUnitOfWork;
private MedicineIngredientSpecification _medicineIngredientSpecification;
public MedicineService(IUnitOfWork<Medicine> medicineUnitOfWork)
public MedicineService(
IUnitOfWork<Medicine> medicineUnitOfWork,
MedicineMapper medicineMapper )
{
_mapper = medicineMapper;
_medicineUnitOfWork = medicineUnitOfWork;
_medicineIngredientSpecification = new MedicineIngredientSpecification();
}
public IEnumerable<Medicine> GetAllMedicines() {
return _medicineUnitOfWork.Entity.GetAll(
return _medicineUnitOfWork.Entity.GetAll(
_medicineIngredientSpecification
);
}
......@@ -48,7 +55,7 @@ namespace ApplicationCore.Services
public Medicine GetMedicineDetails(int id)
{
return _medicineUnitOfWork.Entity.GetById(id ,_medicineIngredientSpecification );
return _medicineUnitOfWork.Entity.GetById(id, _medicineIngredientSpecification);
}
public Medicine GetMedicineIngredentisDetails(int medicineId) {
......
using ApplicationDomain.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ApplicationCore.ViewModel
{
public class PatientMedicineViewModel
{
public IEnumerable<Patient> Patients { get; set; }
public IEnumerable<Medicine> Medicines { get; set; }
}
}
......@@ -44,6 +44,10 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.17, )"
......@@ -120,6 +124,10 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.17, )"
......
......@@ -2,6 +2,31 @@
"version": 3,
"targets": {
"net5.0": {
"AutoMapper/7.0.1": {
"type": "package",
"dependencies": {
"System.ValueTuple": "4.5.0"
},
"compile": {
"lib/netcoreapp2.0/AutoMapper.dll": {}
},
"runtime": {
"lib/netcoreapp2.0/AutoMapper.dll": {}
}
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"type": "package",
"dependencies": {
"AutoMapper": "7.0.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
},
"compile": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
}
},
"Humanizer.Core/2.8.26": {
"type": "package",
"compile": {
......@@ -1466,6 +1491,15 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.ValueTuple/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Windows.Extensions/4.7.0": {
"type": "package",
"dependencies": {
......@@ -1586,6 +1620,7 @@
"type": "project",
"framework": ".NETCoreApp,Version=v5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -1599,6 +1634,42 @@
}
},
"libraries": {
"AutoMapper/7.0.1": {
"sha512": "6xHbhsW09sWjjYuE1sqhYn25PQzB6UEUVPME5uhlaIz2NR2+L3+FGbVxvknJKug1BLp6VTLxDb5RcGXKMm0ieQ==",
"type": "package",
"path": "automapper/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.7.0.1.nupkg.sha512",
"automapper.nuspec",
"lib/net45/AutoMapper.dll",
"lib/net45/AutoMapper.pdb",
"lib/net45/AutoMapper.xml",
"lib/netcoreapp2.0/AutoMapper.dll",
"lib/netcoreapp2.0/AutoMapper.pdb",
"lib/netcoreapp2.0/AutoMapper.xml",
"lib/netstandard1.3/AutoMapper.dll",
"lib/netstandard1.3/AutoMapper.pdb",
"lib/netstandard1.3/AutoMapper.xml",
"lib/netstandard2.0/AutoMapper.dll",
"lib/netstandard2.0/AutoMapper.pdb",
"lib/netstandard2.0/AutoMapper.xml"
]
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"sha512": "7MIq6D/ax3964iHXbL1L2ldUvl6IlKp0p1GZFzr6vlIhEVyp4CgJwOpisRLvIO7dP+kDtbY3Hb9yuPNCkfyBFg==",
"type": "package",
"path": "automapper.extensions.microsoft.dependencyinjection/5.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"automapper.extensions.microsoft.dependencyinjection.nuspec",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.pdb"
]
},
"Humanizer.Core/2.8.26": {
"sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
"type": "package",
......@@ -5684,6 +5755,50 @@
"system.threading.tasks.extensions.nuspec"
]
},
"System.ValueTuple/4.5.0": {
"sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"type": "package",
"path": "system.valuetuple/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.ValueTuple.dll",
"lib/net461/System.ValueTuple.xml",
"lib/net47/System.ValueTuple.dll",
"lib/net47/System.ValueTuple.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.ValueTuple.dll",
"lib/netstandard1.0/System.ValueTuple.xml",
"lib/netstandard2.0/_._",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net461/System.ValueTuple.dll",
"ref/net47/System.ValueTuple.dll",
"ref/netcoreapp2.0/_._",
"ref/netstandard2.0/_._",
"ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.valuetuple.4.5.0.nupkg.sha512",
"system.valuetuple.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Windows.Extensions/4.7.0": {
"sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
"type": "package",
......@@ -5966,6 +6081,7 @@
"projectFileDependencyGroups": {
"net5.0": [
"ApplicationDomain >= 1.0.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection >= 5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 5.0.17",
"Microsoft.EntityFrameworkCore.Design >= 5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer >= 5.0.17",
......@@ -6015,6 +6131,10 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.17, )"
......
{
"version": 2,
"dgSpecHash": "CSp6JRrfKdh1rHdoo3CLiDBLY/YSiTGT4lNyn7paLJjBcTLYON0hBn8ML2M1uO0R0+lyyK44eKrikaOa4Rn5tg==",
"dgSpecHash": "5NjBex83Lbd2kaYy9GsvM5i0NXJLpYSh6HP3ORMwpaP1/wYcRmb0qDrWmGWDwZC00ufTisZ63wxEDFovE2OAdA==",
"success": true,
"projectFilePath": "C:\\Users\\HASAN\\Desktop\\Medic\\ApplicationCore\\ApplicationCore.csproj",
"expectedPackageFiles": [
"C:\\Users\\HASAN\\.nuget\\packages\\automapper\\7.0.1\\automapper.7.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\5.0.1\\automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.17\\microsoft.aspnetcore.cryptography.internal.5.0.17.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.17\\microsoft.aspnetcore.cryptography.keyderivation.5.0.17.nupkg.sha512",
......@@ -101,6 +103,7 @@
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
......
......@@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="5.2.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.17" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.17">
<PrivateAssets>all</PrivateAssets>
......
416f34e2a69605f583aecb2cbffaaa655aec8ee0
59276fd161189aa79ddc03c1f9ef00f1917df3db
......@@ -44,6 +44,10 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.17, )"
......@@ -120,6 +124,10 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
"version": "[5.0.17, )"
......
......@@ -2,6 +2,31 @@
"version": 3,
"targets": {
"net5.0": {
"AutoMapper/7.0.1": {
"type": "package",
"dependencies": {
"System.ValueTuple": "4.5.0"
},
"compile": {
"lib/netcoreapp2.0/AutoMapper.dll": {}
},
"runtime": {
"lib/netcoreapp2.0/AutoMapper.dll": {}
}
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"type": "package",
"dependencies": {
"AutoMapper": "7.0.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
},
"compile": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
}
},
"Humanizer.Core/2.8.26": {
"type": "package",
"compile": {
......@@ -1466,6 +1491,15 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.ValueTuple/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Windows.Extensions/4.7.0": {
"type": "package",
"dependencies": {
......@@ -1587,6 +1621,7 @@
"framework": ".NETCoreApp,Version=v5.0",
"dependencies": {
"ApplicationDomain": "1.0.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -1601,6 +1636,7 @@
"type": "project",
"framework": ".NETCoreApp,Version=v5.0",
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -1614,6 +1650,42 @@
}
},
"libraries": {
"AutoMapper/7.0.1": {
"sha512": "6xHbhsW09sWjjYuE1sqhYn25PQzB6UEUVPME5uhlaIz2NR2+L3+FGbVxvknJKug1BLp6VTLxDb5RcGXKMm0ieQ==",
"type": "package",
"path": "automapper/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.7.0.1.nupkg.sha512",
"automapper.nuspec",
"lib/net45/AutoMapper.dll",
"lib/net45/AutoMapper.pdb",
"lib/net45/AutoMapper.xml",
"lib/netcoreapp2.0/AutoMapper.dll",
"lib/netcoreapp2.0/AutoMapper.pdb",
"lib/netcoreapp2.0/AutoMapper.xml",
"lib/netstandard1.3/AutoMapper.dll",
"lib/netstandard1.3/AutoMapper.pdb",
"lib/netstandard1.3/AutoMapper.xml",
"lib/netstandard2.0/AutoMapper.dll",
"lib/netstandard2.0/AutoMapper.pdb",
"lib/netstandard2.0/AutoMapper.xml"
]
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"sha512": "7MIq6D/ax3964iHXbL1L2ldUvl6IlKp0p1GZFzr6vlIhEVyp4CgJwOpisRLvIO7dP+kDtbY3Hb9yuPNCkfyBFg==",
"type": "package",
"path": "automapper.extensions.microsoft.dependencyinjection/5.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"automapper.extensions.microsoft.dependencyinjection.nuspec",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.pdb"
]
},
"Humanizer.Core/2.8.26": {
"sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
"type": "package",
......@@ -5699,6 +5771,50 @@
"system.threading.tasks.extensions.nuspec"
]
},
"System.ValueTuple/4.5.0": {
"sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"type": "package",
"path": "system.valuetuple/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.ValueTuple.dll",
"lib/net461/System.ValueTuple.xml",
"lib/net47/System.ValueTuple.dll",
"lib/net47/System.ValueTuple.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.ValueTuple.dll",
"lib/netstandard1.0/System.ValueTuple.xml",
"lib/netstandard2.0/_._",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net461/System.ValueTuple.dll",
"ref/net47/System.ValueTuple.dll",
"ref/netcoreapp2.0/_._",
"ref/netstandard2.0/_._",
"ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.valuetuple.4.5.0.nupkg.sha512",
"system.valuetuple.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Windows.Extensions/4.7.0": {
"sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
"type": "package",
......
{
"version": 2,
"dgSpecHash": "WMVc6fgmdfsYlIBFKo6fmxyagvo3LLTp3rzBIul04ZEB6LYlqQfYuUVp7w8yH3qRrZfcbavW6j3sgcdTOfbcPw==",
"dgSpecHash": "mkwOqPL5XX76u2lWj2rMJ2te2ZMevQgfCWv2UUSaN5W0iC+by02mQ9A3SLBWdKtj5D2VqOKWwby6O0SGW7obxQ==",
"success": true,
"projectFilePath": "C:\\Users\\HASAN\\Desktop\\Medic\\Infrastructure\\Infrastructure.csproj",
"expectedPackageFiles": [
"C:\\Users\\HASAN\\.nuget\\packages\\automapper\\7.0.1\\automapper.7.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\5.0.1\\automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.17\\microsoft.aspnetcore.cryptography.internal.5.0.17.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.17\\microsoft.aspnetcore.cryptography.keyderivation.5.0.17.nupkg.sha512",
......@@ -101,6 +103,7 @@
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
......
......@@ -14,6 +14,7 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using ApplicationCore.Mapper;
namespace WebPresentation
{
......@@ -31,6 +32,7 @@ namespace WebPresentation
{
services.AddScoped<DbContext, MedicDbContext>();
services.AddScoped<MedicineMapper>();
#region ADD Scoped Repository
services.AddScoped(typeof(IUnitOfWork<>),typeof(UnitOfWork<>));
......
......@@ -11,19 +11,20 @@
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-8 col-lg-8 mb-4 mb-lg-0">
<div class="card mb-3" style="border-radius: .5rem;">
<div class="row g-0">
<div class="row">
<div class="col-md-4">
<form asp-action="Create" asp-controller="MedicalState">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
<div class="col-5">
<div class="col">
<label asp-for="StateName" class="control-label"></label>
<input asp-for="StateName" class="form-control" />
<span asp-validation-for="StateName" class="text-danger"></span>
</div>
<div class="col-5">
</div>
<div class="form-group">
<div class="col">
<label asp-for="PrescriptionTime" class="control-label"></label>
<input asp-for="PrescriptionTime" class="form-control" />
<span asp-validation-for="PrescriptionTime" class="text-danger"></span>
......@@ -34,14 +35,12 @@
<input asp-for="StateDescription" class="form-control" />
<span asp-validation-for="StateDescription" class="text-danger"></span>
</div>
<div>
</div>
<div class="form-group">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</form>
</div>
</div>
<div>
......
......@@ -38,9 +38,13 @@
<li><a class="dropdown-item" href="#!">Hello @UserManager.GetUserName(User)</a></li>
<li><hr class="dropdown-divider" /></li>
<li>
<form id="logoutForm" class="dropdown-item form-inline" asp-area="Identity" asp-page="/Account/Logout" asp-route-returnUrl="@Url.Action("Index", "Home", new { area = "" })">
<button id="logout" type="submit" class="nav-link rounded text-bg-dark js-scroll-trigger">Logout</button>
</form>
<a class="dropdown-item"
asp-action="Logout"
asp-controller="Access"
asp-route-returnUrl="/Home/Inedx">
Logout
</a>
</li>
</ul>
</li>
......@@ -52,12 +56,16 @@
<div class="sb-sidenav-menu">
<div class="nav">
<div class="sb-sidenav-menu-heading">Core</div>
<a class="nav-link" asp-action="Index">
<a class="nav-link" asp-action="Index">
<div class="sb-nav-link-icon"><i class="fas fa-tachometer-alt"></i></div>
Dashboard
</a>
<div class="sb-sidenav-menu-heading">Interface</div>
<a class="nav-link collapsed" href="#" data-bs-toggle="collapse" data-bs-target="#collapseLayouts" aria-expanded="false" aria-controls="collapseLayouts">
<!-- Patient Managment -->
<a class="nav-link collapsed"
asp-action="Inedx" asp-controller="Patient"
data-bs-toggle="collapse" data-bs-target="#collapseLayouts" aria-expanded="false" aria-controls="collapseLayouts">
<div class="sb-nav-link-icon"><i class="fas fa-columns"></i></div>
Patients Managment
<div class="sb-sidenav-collapse-arrow"><i class="fas fa-angle-down"></i></div>
......@@ -68,7 +76,9 @@
<a class="nav-link" asp-controller="Patient" asp-action="Index">ALL Patients </a>
</nav>
</div>
<a class="nav-link collapsed" href="#" data-bs-toggle="collapse" data-bs-target="#ing" aria-expanded="false" aria-controls="collapseLayouts">
<!-- Ingredients Managment -->
<a class="nav-link collapsed" asp-action="Index" asp-controller="Ingredients" data-bs-toggle="collapse" data-bs-target="#ing" aria-expanded="false" aria-controls="collapseLayouts">
<div class="sb-nav-link-icon"><i class="fas fa-columns"></i></div>
Ingredients Manage
<div class="sb-sidenav-collapse-arrow"><i class="fas fa-angle-down"></i></div>
......@@ -79,22 +89,36 @@
<a class="nav-link" asp-controller="Ingredient" asp-action="Index">ALL Ingredients </a>
</nav>
</div>
<a class="nav-link collapsed" href="#" data-bs-toggle="collapse" data-bs-target="#cPages" aria-expanded="false" aria-controls="collapsePages">
<!-- Medicine Managment -->
<a class="nav-link collapsed" asp-action="Index" asp-controller="Medicine" data-bs-toggle="collapse" data-bs-target="#cPages" aria-expanded="false" aria-controls="collapsePages">
<div class="sb-nav-link-icon"><i class="fas fa-book-open"></i></div>
Medicine Managment
<div class="sb-sidenav-collapse-arrow"><i class="fas fa-angle-down"></i></div>
</a>
<div class="collapse" id="cPages" aria-labelledby="headingOne" data-bs-parent="#sidenavAccordion">
<nav class="sb-sidenav-menu-nested nav">
<a class="nav-link" asp-controller="Medicine" asp-action="Create">Add Medicine </a>
<a class="nav-link" asp-controller="Medicine" asp-action="Index">ALL Medicines </a>
</nav>
</div>
<!-- Medical State Managment -->
<a class="nav-link collapsed" asp-action="Index" asp-controller="Medicine" data-bs-toggle="collapse" data-bs-target="#cPages" aria-expanded="false" aria-controls="collapsePages">
<div class="sb-nav-link-icon"><i class="fas fa-book-open"></i></div>
Medical States
<div class="sb-sidenav-collapse-arrow"><i class="fas fa-angle-down"></i></div>
</a>
<div class="collapse" id="cPages" aria-labelledby="headingOne" data-bs-parent="#sidenavAccordion">
<nav class="sb-sidenav-menu-nested nav">
<a class="nav-link" >Add Medical State </a>
<a class="nav-link" >ALL Medical State </a>
</nav>
</div>
<div class="sb-sidenav-footer">
<div class="small">Logged in as:@UserManager.GetUserName(User)</div>
</div>
</div>
</div>
......@@ -104,9 +128,7 @@
<main>
<div class="container-fluid px-4">
<h1 class="mt-4">Dashboard</h1>
<ol class="breadcrumb mb-4">
<li class="breadcrumb-item active">Dashboard</li>
</ol>
@RenderBody()
......
......@@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="5.2.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.17" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.17">
<PrivateAssets>all</PrivateAssets>
......
......@@ -35,6 +35,7 @@
"dependencies": {
"ApplicationCore": "1.0.0",
"ApplicationDomain": "1.0.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Infrastructure": "1.0.0",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.Design": "5.0.17",
......@@ -303,7 +304,7 @@
"System.Threading.Timer": "5.0.0.0",
"System.Transactions": "4.0.0.0",
"System.Transactions.Local": "5.0.0.0",
"System.ValueTuple": "4.0.3.0",
"System.ValueTuple.Reference": "4.0.3.0",
"System.Web": "4.0.0.0",
"System.Web.HttpUtility": "5.0.0.0",
"System.Windows": "4.0.0.0",
......@@ -326,6 +327,35 @@
"WebPresentation.dll": {}
}
},
"AutoMapper/7.0.1": {
"dependencies": {
"System.ValueTuple": "4.5.0"
},
"runtime": {
"lib/netcoreapp2.0/AutoMapper.dll": {
"assemblyVersion": "7.0.1.0",
"fileVersion": "7.0.1.0"
}
},
"compile": {
"lib/netcoreapp2.0/AutoMapper.dll": {}
}
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"dependencies": {
"AutoMapper": "7.0.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
"assemblyVersion": "0.0.0.0",
"fileVersion": "5.0.1.0"
}
},
"compile": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
}
},
"Humanizer.Core/2.8.26": {
"runtime": {
"lib/netstandard2.0/Humanizer.dll": {
......@@ -1798,6 +1828,7 @@
}
},
"System.Threading.Tasks.Extensions/4.5.4": {},
"System.ValueTuple/4.5.0": {},
"System.Windows.Extensions/4.7.0": {
"dependencies": {
"System.Drawing.Common": "4.7.0"
......@@ -1876,6 +1907,7 @@
"ApplicationCore/1.0.0": {
"dependencies": {
"ApplicationDomain": "1.0.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -1888,6 +1920,7 @@
},
"ApplicationDomain/1.0.0": {
"dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -3483,7 +3516,7 @@
},
"compileOnly": true
},
"System.ValueTuple/4.0.3.0": {
"System.ValueTuple.Reference/4.0.3.0": {
"compile": {
"System.ValueTuple.dll": {}
},
......@@ -3581,6 +3614,20 @@
"serviceable": false,
"sha512": ""
},
"AutoMapper/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6xHbhsW09sWjjYuE1sqhYn25PQzB6UEUVPME5uhlaIz2NR2+L3+FGbVxvknJKug1BLp6VTLxDb5RcGXKMm0ieQ==",
"path": "automapper/7.0.1",
"hashPath": "automapper.7.0.1.nupkg.sha512"
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7MIq6D/ax3964iHXbL1L2ldUvl6IlKp0p1GZFzr6vlIhEVyp4CgJwOpisRLvIO7dP+kDtbY3Hb9yuPNCkfyBFg==",
"path": "automapper.extensions.microsoft.dependencyinjection/5.0.1",
"hashPath": "automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512"
},
"Humanizer.Core/2.8.26": {
"type": "package",
"serviceable": true,
......@@ -4449,6 +4496,13 @@
"path": "system.threading.tasks.extensions/4.5.4",
"hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
},
"System.ValueTuple/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"path": "system.valuetuple/4.5.0",
"hashPath": "system.valuetuple.4.5.0.nupkg.sha512"
},
"System.Windows.Extensions/4.7.0": {
"type": "package",
"serviceable": true,
......@@ -5809,7 +5863,7 @@
"serviceable": false,
"sha512": ""
},
"System.ValueTuple/4.0.3.0": {
"System.ValueTuple.Reference/4.0.3.0": {
"type": "referenceassembly",
"serviceable": false,
"sha512": ""
......
#pragma checksum "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "53738c525829c1192a22ac24525d1075097e188c"
#pragma checksum "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__AdminLayout), @"mvc.1.0.view", @"/Views/Shared/_AdminLayout.cshtml")]
......@@ -46,22 +46,32 @@ using Microsoft.AspNetCore.Identity;
#line default
#line hidden
#nullable disable
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"53738c525829c1192a22ac24525d1075097e188c", @"/Views/Shared/_AdminLayout.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef", @"/Views/Shared/_AdminLayout.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"e6fffd8dfe80957a1cbddaf47a216a7c128d6cf7", @"/Views/_ViewImports.cshtml")]
public class Views_Shared__AdminLayout : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
{
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("d-none d-md-inline-block form-inline ms-auto me-0 me-md-3 my-2 my-md-0"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("id", new global::Microsoft.AspNetCore.Html.HtmlString("logoutForm"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("dropdown-item form-inline"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "Identity", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-page", "/Account/Logout", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("dropdown-item"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Logout", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Access", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-returnUrl", "/Home/Inedx", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Patient", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Create", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Ingredient", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Medicine", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("sb-nav-fixed"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link collapsed"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Inedx", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Patient", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("data-bs-toggle", new global::Microsoft.AspNetCore.Html.HtmlString("collapse"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("data-bs-target", new global::Microsoft.AspNetCore.Html.HtmlString("#collapseLayouts"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_12 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("aria-expanded", new global::Microsoft.AspNetCore.Html.HtmlString("false"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_13 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("aria-controls", new global::Microsoft.AspNetCore.Html.HtmlString("collapseLayouts"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_14 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Create", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_15 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Ingredients", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_16 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("data-bs-target", new global::Microsoft.AspNetCore.Html.HtmlString("#ing"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_17 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Ingredient", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_18 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Medicine", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_19 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("data-bs-target", new global::Microsoft.AspNetCore.Html.HtmlString("#cPages"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_20 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("aria-controls", new global::Microsoft.AspNetCore.Html.HtmlString("collapsePages"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_21 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("sb-nav-fixed"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line hidden
#pragma warning disable 0649
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
......@@ -92,7 +102,7 @@ using Microsoft.AspNetCore.Identity;
{
WriteLiteral("\r\n");
WriteLiteral("\r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c8212", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef11651", async() => {
WriteLiteral("\r\n <meta charset=\"utf-8\" />\r\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\" />\r\n <meta name=\"description\"");
BeginWriteAttribute("content", " content=\"", 380, "\"", 390, 0);
EndWriteAttribute();
......@@ -125,7 +135,7 @@ using Microsoft.AspNetCore.Identity;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c10364", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef13804", async() => {
WriteLiteral(@"
<nav class=""sb-topnav navbar navbar-expand navbar-dark bg-dark"">
<!-- Navbar Brand-->
......@@ -133,7 +143,7 @@ using Microsoft.AspNetCore.Identity;
<button class=""btn btn-link btn-sm order-1 order-lg-0 me-4 me-lg-0"" id=""sidebarToggle"" href=""#!""><i class=""fas fa-bars""></i></button>
<!-- Navbar Search-->
");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c10946", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef14386", async() => {
WriteLiteral(@"
<div class=""input-group"">
<input class=""form-control"" type=""text"" placeholder=""Search for..."" aria-label=""Search for..."" aria-describedby=""btnNavbarSearch"" />
......@@ -170,35 +180,23 @@ using Microsoft.AspNetCore.Identity;
#line hidden
#nullable disable
WriteLiteral("</a></li>\r\n <li><hr class=\"dropdown-divider\" /></li>\r\n <li>\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c13691", async() => {
WriteLiteral("\r\n <button id=\"logout\" type=\"submit\" class=\"nav-link rounded text-bg-dark js-scroll-trigger\">Logout</button>\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef17131", async() => {
WriteLiteral("\r\n Logout\r\n ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Area = (string)__tagHelperAttribute_3.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Page = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues == null)
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-returnUrl", "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "RouteValues"));
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-returnUrl", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#nullable restore
#line 41 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
WriteLiteral(Url.Action("Index", "Home", new { area = "" }));
#line default
#line hidden
#nullable disable
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["returnUrl"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-returnUrl", __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["returnUrl"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["returnUrl"] = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
......@@ -207,6 +205,7 @@ using Microsoft.AspNetCore.Identity;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral(@"
</li>
</ul>
</li>
......@@ -219,7 +218,7 @@ using Microsoft.AspNetCore.Identity;
<div class=""nav"">
<div class=""sb-sidenav-menu-heading"">Core</div>
");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c17366", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef19732", async() => {
WriteLiteral("\r\n <div class=\"sb-nav-link-icon\"><i class=\"fas fa-tachometer-alt\"></i></div>\r\n Dashboard\r\n ");
}
);
......@@ -235,27 +234,45 @@ using Microsoft.AspNetCore.Identity;
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral(@"
<div class=""sb-sidenav-menu-heading"">Interface</div>
<a class=""nav-link collapsed"" href=""#"" data-bs-toggle=""collapse"" data-bs-target=""#collapseLayouts"" aria-expanded=""false"" aria-controls=""collapseLayouts"">
WriteLiteral("\r\n <div class=\"sb-sidenav-menu-heading\">Interface</div>\r\n\r\n <!-- Patient Managment -->\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef21375", async() => {
WriteLiteral(@"
<div class=""sb-nav-link-icon""><i class=""fas fa-columns""></i></div>
Patients Managment
<div class=""sb-sidenav-collapse-arrow""><i class=""fas fa-angle-down""></i></div>
</a>
<div class=""collapse"" id=""collapseLayouts"" aria-labelledby=""headingOne"" data-bs-parent=""#sidenavAccordion"">
<nav class=""sb-sidenav-menu-nested nav"">
");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c19650", async() => {
WriteLiteral("Add Patient ");
");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_8.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_11);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_12);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_13);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n <div class=\"collapse\" id=\"collapseLayouts\" aria-labelledby=\"headingOne\" data-bs-parent=\"#sidenavAccordion\">\r\n <nav class=\"sb-sidenav-menu-nested nav\">\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef23778", async() => {
WriteLiteral("Add Patient ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_14.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_14);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
......@@ -264,15 +281,15 @@ using Microsoft.AspNetCore.Identity;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c21209", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef25339", async() => {
WriteLiteral("ALL Patients ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
......@@ -282,28 +299,45 @@ using Microsoft.AspNetCore.Identity;
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral(@"
</nav>
</div>
<a class=""nav-link collapsed"" href=""#"" data-bs-toggle=""collapse"" data-bs-target=""#ing"" aria-expanded=""false"" aria-controls=""collapseLayouts"">
WriteLiteral("\r\n </nav>\r\n </div>\r\n\r\n <!-- Ingredients Managment -->\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef27025", async() => {
WriteLiteral(@"
<div class=""sb-nav-link-icon""><i class=""fas fa-columns""></i></div>
Ingredients Manage
<div class=""sb-sidenav-collapse-arrow""><i class=""fas fa-angle-down""></i></div>
</a>
<div class=""collapse"" id=""ing"" aria-labelledby=""headingOne"" data-bs-parent=""#sidenavAccordion"">
<nav class=""sb-sidenav-menu-nested nav"">
");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c23506", async() => {
");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_15.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_15);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_16);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_12);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_13);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n <div class=\"collapse\" id=\"ing\" aria-labelledby=\"headingOne\" data-bs-parent=\"#sidenavAccordion\">\r\n <nav class=\"sb-sidenav-menu-nested nav\">\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef29418", async() => {
WriteLiteral("Add Ingredient ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_8.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_17.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_17);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_14.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_14);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
......@@ -312,15 +346,15 @@ using Microsoft.AspNetCore.Identity;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c25068", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef30984", async() => {
WriteLiteral("ALL Ingredients ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_17.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_17);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
......@@ -330,29 +364,45 @@ using Microsoft.AspNetCore.Identity;
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral(@"
</nav>
</div>
<a class=""nav-link collapsed"" href=""#"" data-bs-toggle=""collapse"" data-bs-target=""#cPages"" aria-expanded=""false"" aria-controls=""collapsePages"">
WriteLiteral("\r\n </nav>\r\n </div>\r\n\r\n <!-- Medicine Managment -->\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef32672", async() => {
WriteLiteral(@"
<div class=""sb-nav-link-icon""><i class=""fas fa-book-open""></i></div>
Medicine Managment
<div class=""sb-sidenav-collapse-arrow""><i class=""fas fa-angle-down""></i></div>
</a>
<div class=""collapse"" id=""cPages"" aria-labelledby=""headingOne"" data-bs-parent=""#sidenavAccordion"">
<nav class=""sb-sidenav-menu-nested nav"">
");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c27376", async() => {
");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_18.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_18);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_19);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_12);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_20);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n <div class=\"collapse\" id=\"cPages\" aria-labelledby=\"headingOne\" data-bs-parent=\"#sidenavAccordion\">\r\n <nav class=\"sb-sidenav-menu-nested nav\">\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef35070", async() => {
WriteLiteral("Add Medicine ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_10.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_8.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_18.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_18);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_14.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_14);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
......@@ -361,15 +411,15 @@ using Microsoft.AspNetCore.Identity;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "53738c525829c1192a22ac24525d1075097e188c28938", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef36634", async() => {
WriteLiteral("ALL Medicines ");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_10.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_18.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_18);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
......@@ -379,16 +429,52 @@ using Microsoft.AspNetCore.Identity;
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral("\r\n </nav>\r\n </div>\r\n\r\n <div class=\"sb-sidenav-footer\">\r\n <div class=\"small\">Logged in as:");
WriteLiteral("\r\n </nav>\r\n </div>\r\n \r\n <!-- Medical State Managment -->\r\n ");
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "73fdc72fde1dbebaac5f77b6db452fcc14a9f4ef38345", async() => {
WriteLiteral(@"
<div class=""sb-nav-link-icon""><i class=""fas fa-book-open""></i></div>
Medical States
<div class=""sb-sidenav-collapse-arrow""><i class=""fas fa-angle-down""></i></div>
");
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_18.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_18);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_19);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_12);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_20);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
WriteLiteral(@"
<div class=""collapse"" id=""cPages"" aria-labelledby=""headingOne"" data-bs-parent=""#sidenavAccordion"">
<nav class=""sb-sidenav-menu-nested nav"">
<a class=""nav-link"" >Add Medical State </a>
<a class=""nav-link"" >ALL Medical State </a>
</nav>
</div>
<div class=""sb-sidenav-footer"">
<div class=""small"">Logged in as:");
#nullable restore
#line 96 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
#line 120 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
Write(UserManager.GetUserName(User));
#line default
#line hidden
#nullable disable
WriteLiteral(@"</div>
</div>
</div>
</div>
......@@ -398,13 +484,11 @@ using Microsoft.AspNetCore.Identity;
<main>
<div class=""container-fluid px-4"">
<h1 class=""mt-4"">Dashboard</h1>
<ol class=""breadcrumb mb-4"">
<li class=""breadcrumb-item active"">Dashboard</li>
</ol>
");
#nullable restore
#line 111 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
#line 133 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
Write(RenderBody());
#line default
......@@ -436,7 +520,7 @@ using Microsoft.AspNetCore.Identity;
<script src=""https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.js"" crossorigin=""anonymous""></script>
");
#nullable restore
#line 135 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
#line 157 "C:\Users\HASAN\Desktop\Medic\WebPresentation\Views\Shared\_AdminLayout.cshtml"
Write(RenderSection("Scripts", required: false));
#line default
......@@ -447,7 +531,7 @@ Write(RenderSection("Scripts", required: false));
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_11);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_21);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
......
ef805aa9ccb8f0bf3b1d9c70d8be22308c031977
6457512b0a3994b3438837f2392ebc439964b959
......@@ -178,3 +178,5 @@ C:\Users\HASAN\Desktop\Medic\WebPresentation\obj\Debug\net5.0\Razor\Views\Medica
C:\Users\HASAN\Desktop\Medic\WebPresentation\obj\Debug\net5.0\Razor\Views\MedicalState\Delete.cshtml.g.cs
C:\Users\HASAN\Desktop\Medic\WebPresentation\bin\Debug\net5.0\ApplicationDomain.dll
C:\Users\HASAN\Desktop\Medic\WebPresentation\bin\Debug\net5.0\ApplicationDomain.pdb
C:\Users\HASAN\Desktop\Medic\WebPresentation\bin\Debug\net5.0\AutoMapper.dll
C:\Users\HASAN\Desktop\Medic\WebPresentation\bin\Debug\net5.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll
......@@ -44,9 +44,9 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.2.0, )"
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
......@@ -124,9 +124,9 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.2.0, )"
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
......@@ -294,9 +294,9 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.2.0, )"
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
......
......@@ -2,21 +2,29 @@
"version": 3,
"targets": {
"net5.0": {
"AutoMapper/5.2.0": {
"AutoMapper/7.0.1": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"NETStandard.Library": "1.6.0",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.TypeConverter": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Linq.Queryable": "4.0.1"
"System.ValueTuple": "4.5.0"
},
"compile": {
"lib/netstandard1.3/AutoMapper.dll": {}
"lib/netcoreapp2.0/AutoMapper.dll": {}
},
"runtime": {
"lib/netstandard1.3/AutoMapper.dll": {}
"lib/netcoreapp2.0/AutoMapper.dll": {}
}
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"type": "package",
"dependencies": {
"AutoMapper": "7.0.1",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
},
"compile": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
}
},
"Humanizer.Core/2.8.26": {
......@@ -881,17 +889,6 @@
"lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Microsoft.Win32.Registry/4.7.0": {
"type": "package",
"dependencies": {
......@@ -933,55 +930,6 @@
}
}
},
"NETStandard.Library/1.6.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Console": "4.0.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Newtonsoft.Json/11.0.2": {
"type": "package",
"compile": {
......@@ -1004,73 +952,6 @@
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Net.Http/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1097,7 +978,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
......@@ -1123,7 +1004,7 @@
"System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
......@@ -1141,7 +1022,7 @@
"System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Specialized.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
......@@ -1153,7 +1034,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.ComponentModel.dll": {}
......@@ -1176,7 +1057,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
......@@ -1202,7 +1083,7 @@
"System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
"ref/netstandard1.5/_._": {}
},
"runtime": {
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
......@@ -1335,19 +1216,6 @@
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
}
},
"System.Console/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1387,7 +1255,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
"ref/netstandard1.5/_._": {}
}
},
"System.Drawing.Common/4.7.0": {
......@@ -1413,32 +1281,6 @@
}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1450,18 +1292,6 @@
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1513,58 +1343,6 @@
"ref/netstandard1.5/System.IO.dll": {}
}
},
"System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System": "4.0.0",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1578,7 +1356,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
"ref/netstandard1.3/_._": {}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
......@@ -1587,7 +1365,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
......@@ -1637,25 +1415,6 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
"System.Memory/4.5.4": {
"type": "package",
"compile": {
......@@ -1665,50 +1424,6 @@
"lib/netcoreapp2.1/_._": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
......@@ -1750,21 +1465,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
"ref/netstandard1.3/_._": {}
}
},
"System.ObjectModel/4.3.0": {
......@@ -2001,7 +1702,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
"ref/netstandard1.3/_._": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
......@@ -2015,47 +1716,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"runtime.native.System": "4.0.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
"ref/netcoreapp1.1/_._": {}
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
......@@ -2120,37 +1781,6 @@
}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"compile": {
......@@ -2166,97 +1796,6 @@
}
}
},
"System.Security.Cryptography.Csp/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
},
"runtime": {
"lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
"assetType": "runtime",
"rid": "unix"
}
}
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
......@@ -2269,7 +1808,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
......@@ -2290,49 +1829,6 @@
}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Csp": "4.0.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Permissions/4.7.0": {
"type": "package",
"dependencies": {
......@@ -2429,7 +1925,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
"ref/netstandard1.3/_._": {}
}
},
"System.Text.Encodings.Web/4.5.0": {
......@@ -2447,7 +1943,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
"ref/netcoreapp1.1/_._": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
......@@ -2486,15 +1982,13 @@
"lib/netcoreapp2.1/_._": {}
}
},
"System.Threading.Timer/4.0.1": {
"System.ValueTuple/4.5.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"System.Windows.Extensions/4.7.0": {
......@@ -2535,7 +2029,7 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
......@@ -2558,7 +2052,7 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
......@@ -2618,7 +2112,7 @@
"framework": ".NETCoreApp,Version=v5.0",
"dependencies": {
"ApplicationDomain": "1.0.0",
"AutoMapper": "5.2.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -2633,7 +2127,7 @@
"type": "project",
"framework": ".NETCoreApp,Version=v5.0",
"dependencies": {
"AutoMapper": "5.2.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection": "5.0.1",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.17",
"Microsoft.EntityFrameworkCore.SqlServer": "5.0.17"
},
......@@ -2662,21 +2156,40 @@
}
},
"libraries": {
"AutoMapper/5.2.0": {
"sha512": "ulUMmzFg1vAFMpTyJsplgnC7pOIFlb25dbldHd7J4eroQWjSV4iAoOQ33h1oMjf6mLo3uZ8aRNUN2rgpOeSE1w==",
"AutoMapper/7.0.1": {
"sha512": "6xHbhsW09sWjjYuE1sqhYn25PQzB6UEUVPME5uhlaIz2NR2+L3+FGbVxvknJKug1BLp6VTLxDb5RcGXKMm0ieQ==",
"type": "package",
"path": "automapper/5.2.0",
"path": "automapper/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.5.2.0.nupkg.sha512",
"automapper.7.0.1.nupkg.sha512",
"automapper.nuspec",
"lib/net45/AutoMapper.dll",
"lib/net45/AutoMapper.pdb",
"lib/net45/AutoMapper.xml",
"lib/netstandard1.1/AutoMapper.dll",
"lib/netstandard1.1/AutoMapper.xml",
"lib/netcoreapp2.0/AutoMapper.dll",
"lib/netcoreapp2.0/AutoMapper.pdb",
"lib/netcoreapp2.0/AutoMapper.xml",
"lib/netstandard1.3/AutoMapper.dll",
"lib/netstandard1.3/AutoMapper.xml"
"lib/netstandard1.3/AutoMapper.pdb",
"lib/netstandard1.3/AutoMapper.xml",
"lib/netstandard2.0/AutoMapper.dll",
"lib/netstandard2.0/AutoMapper.pdb",
"lib/netstandard2.0/AutoMapper.xml"
]
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/5.0.1": {
"sha512": "7MIq6D/ax3964iHXbL1L2ldUvl6IlKp0p1GZFzr6vlIhEVyp4CgJwOpisRLvIO7dP+kDtbY3Hb9yuPNCkfyBFg==",
"type": "package",
"path": "automapper.extensions.microsoft.dependencyinjection/5.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"automapper.extensions.microsoft.dependencyinjection.nuspec",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll",
"lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.pdb"
]
},
"Humanizer.Core/2.8.26": {
......@@ -4195,48 +3708,10 @@
"microsoft.visualstudio.web.codegenerators.mvc.nuspec"
]
},
"Microsoft.Win32.Primitives/4.0.1": {
"sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
"Microsoft.Win32.Registry/4.7.0": {
"sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
"type": "package",
"path": "microsoft.win32.primitives/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/Microsoft.Win32.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"microsoft.win32.primitives.4.0.1.nupkg.sha512",
"microsoft.win32.primitives.nuspec",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Microsoft.Win32.Registry/4.7.0": {
"sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
"type": "package",
"path": "microsoft.win32.registry/4.7.0",
"path": "microsoft.win32.registry/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
......@@ -4309,19 +3784,6 @@
"version.txt"
]
},
"NETStandard.Library/1.6.0": {
"sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
"type": "package",
"path": "netstandard.library/1.6.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"netstandard.library.1.6.0.nupkg.sha512",
"netstandard.library.nuspec"
]
},
"Newtonsoft.Json/11.0.2": {
"sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
"type": "package",
......@@ -4366,118 +3828,6 @@
"runtime.native.system.nuspec"
]
},
"runtime.native.System.IO.Compression/4.1.0": {
"sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
"type": "package",
"path": "runtime.native.system.io.compression/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.io.compression.4.1.0.nupkg.sha512",
"runtime.native.system.io.compression.nuspec"
]
},
"runtime.native.System.Net.Http/4.0.1": {
"sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
"type": "package",
"path": "runtime.native.system.net.http/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.net.http.4.0.1.nupkg.sha512",
"runtime.native.system.net.http.nuspec"
]
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
"type": "package",
"path": "runtime.native.system.security.cryptography/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
"runtime.native.system.security.cryptography.nuspec"
]
},
"System.AppContext/4.1.0": {
"sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
"type": "package",
"path": "system.appcontext/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.AppContext.dll",
"lib/net463/System.AppContext.dll",
"lib/netcore50/System.AppContext.dll",
"lib/netstandard1.6/System.AppContext.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.AppContext.dll",
"ref/net463/System.AppContext.dll",
"ref/netstandard/_._",
"ref/netstandard1.3/System.AppContext.dll",
"ref/netstandard1.3/System.AppContext.xml",
"ref/netstandard1.3/de/System.AppContext.xml",
"ref/netstandard1.3/es/System.AppContext.xml",
"ref/netstandard1.3/fr/System.AppContext.xml",
"ref/netstandard1.3/it/System.AppContext.xml",
"ref/netstandard1.3/ja/System.AppContext.xml",
"ref/netstandard1.3/ko/System.AppContext.xml",
"ref/netstandard1.3/ru/System.AppContext.xml",
"ref/netstandard1.3/zh-hans/System.AppContext.xml",
"ref/netstandard1.3/zh-hant/System.AppContext.xml",
"ref/netstandard1.6/System.AppContext.dll",
"ref/netstandard1.6/System.AppContext.xml",
"ref/netstandard1.6/de/System.AppContext.xml",
"ref/netstandard1.6/es/System.AppContext.xml",
"ref/netstandard1.6/fr/System.AppContext.xml",
"ref/netstandard1.6/it/System.AppContext.xml",
"ref/netstandard1.6/ja/System.AppContext.xml",
"ref/netstandard1.6/ko/System.AppContext.xml",
"ref/netstandard1.6/ru/System.AppContext.xml",
"ref/netstandard1.6/zh-hans/System.AppContext.xml",
"ref/netstandard1.6/zh-hant/System.AppContext.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.AppContext.dll",
"system.appcontext.4.1.0.nupkg.sha512",
"system.appcontext.nuspec"
]
},
"System.Buffers/4.0.0": {
"sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
"type": "package",
"path": "system.buffers/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.1/.xml",
"lib/netstandard1.1/System.Buffers.dll",
"system.buffers.4.0.0.nupkg.sha512",
"system.buffers.nuspec"
]
},
"System.Collections/4.3.0": {
"sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
......@@ -5070,44 +4420,6 @@
"version.txt"
]
},
"System.Console/4.0.0": {
"sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
"type": "package",
"path": "system.console/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Console.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Console.dll",
"ref/netstandard1.3/System.Console.dll",
"ref/netstandard1.3/System.Console.xml",
"ref/netstandard1.3/de/System.Console.xml",
"ref/netstandard1.3/es/System.Console.xml",
"ref/netstandard1.3/fr/System.Console.xml",
"ref/netstandard1.3/it/System.Console.xml",
"ref/netstandard1.3/ja/System.Console.xml",
"ref/netstandard1.3/ko/System.Console.xml",
"ref/netstandard1.3/ru/System.Console.xml",
"ref/netstandard1.3/zh-hans/System.Console.xml",
"ref/netstandard1.3/zh-hant/System.Console.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.console.4.0.0.nupkg.sha512",
"system.console.nuspec"
]
},
"System.Diagnostics.Debug/4.3.0": {
"sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
......@@ -5390,77 +4702,6 @@
"version.txt"
]
},
"System.Dynamic.Runtime/4.0.11": {
"sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
"type": "package",
"path": "system.dynamic.runtime/4.0.11",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Dynamic.Runtime.dll",
"lib/netstandard1.3/System.Dynamic.Runtime.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Dynamic.Runtime.dll",
"ref/netcore50/System.Dynamic.Runtime.xml",
"ref/netcore50/de/System.Dynamic.Runtime.xml",
"ref/netcore50/es/System.Dynamic.Runtime.xml",
"ref/netcore50/fr/System.Dynamic.Runtime.xml",
"ref/netcore50/it/System.Dynamic.Runtime.xml",
"ref/netcore50/ja/System.Dynamic.Runtime.xml",
"ref/netcore50/ko/System.Dynamic.Runtime.xml",
"ref/netcore50/ru/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/System.Dynamic.Runtime.dll",
"ref/netstandard1.0/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/System.Dynamic.Runtime.dll",
"ref/netstandard1.3/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
"system.dynamic.runtime.4.0.11.nupkg.sha512",
"system.dynamic.runtime.nuspec"
]
},
"System.Globalization/4.3.0": {
"sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
......@@ -5529,44 +4770,6 @@
"system.globalization.nuspec"
]
},
"System.Globalization.Calendars/4.0.1": {
"sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
"type": "package",
"path": "system.globalization.calendars/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.xml",
"ref/netstandard1.3/de/System.Globalization.Calendars.xml",
"ref/netstandard1.3/es/System.Globalization.Calendars.xml",
"ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
"ref/netstandard1.3/it/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.globalization.calendars.4.0.1.nupkg.sha512",
"system.globalization.calendars.nuspec"
]
},
"System.Globalization.Extensions/4.3.0": {
"sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
......@@ -5710,116 +4913,6 @@
"system.io.nuspec"
]
},
"System.IO.Compression/4.1.0": {
"sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
"type": "package",
"path": "system.io.compression/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.IO.Compression.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.xml",
"ref/netcore50/de/System.IO.Compression.xml",
"ref/netcore50/es/System.IO.Compression.xml",
"ref/netcore50/fr/System.IO.Compression.xml",
"ref/netcore50/it/System.IO.Compression.xml",
"ref/netcore50/ja/System.IO.Compression.xml",
"ref/netcore50/ko/System.IO.Compression.xml",
"ref/netcore50/ru/System.IO.Compression.xml",
"ref/netcore50/zh-hans/System.IO.Compression.xml",
"ref/netcore50/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.1/System.IO.Compression.dll",
"ref/netstandard1.1/System.IO.Compression.xml",
"ref/netstandard1.1/de/System.IO.Compression.xml",
"ref/netstandard1.1/es/System.IO.Compression.xml",
"ref/netstandard1.1/fr/System.IO.Compression.xml",
"ref/netstandard1.1/it/System.IO.Compression.xml",
"ref/netstandard1.1/ja/System.IO.Compression.xml",
"ref/netstandard1.1/ko/System.IO.Compression.xml",
"ref/netstandard1.1/ru/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.3/System.IO.Compression.dll",
"ref/netstandard1.3/System.IO.Compression.xml",
"ref/netstandard1.3/de/System.IO.Compression.xml",
"ref/netstandard1.3/es/System.IO.Compression.xml",
"ref/netstandard1.3/fr/System.IO.Compression.xml",
"ref/netstandard1.3/it/System.IO.Compression.xml",
"ref/netstandard1.3/ja/System.IO.Compression.xml",
"ref/netstandard1.3/ko/System.IO.Compression.xml",
"ref/netstandard1.3/ru/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
"runtimes/win/lib/net46/System.IO.Compression.dll",
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
"system.io.compression.4.1.0.nupkg.sha512",
"system.io.compression.nuspec"
]
},
"System.IO.Compression.ZipFile/4.0.1": {
"sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
"type": "package",
"path": "system.io.compression.zipfile/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.Compression.ZipFile.dll",
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.io.compression.zipfile.4.0.1.nupkg.sha512",
"system.io.compression.zipfile.nuspec"
]
},
"System.IO.FileSystem/4.3.0": {
"sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
......@@ -6053,65 +5146,6 @@
"system.linq.expressions.nuspec"
]
},
"System.Linq.Queryable/4.0.1": {
"sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
"type": "package",
"path": "system.linq.queryable/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Queryable.dll",
"lib/netstandard1.3/System.Linq.Queryable.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Queryable.dll",
"ref/netcore50/System.Linq.Queryable.xml",
"ref/netcore50/de/System.Linq.Queryable.xml",
"ref/netcore50/es/System.Linq.Queryable.xml",
"ref/netcore50/fr/System.Linq.Queryable.xml",
"ref/netcore50/it/System.Linq.Queryable.xml",
"ref/netcore50/ja/System.Linq.Queryable.xml",
"ref/netcore50/ko/System.Linq.Queryable.xml",
"ref/netcore50/ru/System.Linq.Queryable.xml",
"ref/netcore50/zh-hans/System.Linq.Queryable.xml",
"ref/netcore50/zh-hant/System.Linq.Queryable.xml",
"ref/netstandard1.0/System.Linq.Queryable.dll",
"ref/netstandard1.0/System.Linq.Queryable.xml",
"ref/netstandard1.0/de/System.Linq.Queryable.xml",
"ref/netstandard1.0/es/System.Linq.Queryable.xml",
"ref/netstandard1.0/fr/System.Linq.Queryable.xml",
"ref/netstandard1.0/it/System.Linq.Queryable.xml",
"ref/netstandard1.0/ja/System.Linq.Queryable.xml",
"ref/netstandard1.0/ko/System.Linq.Queryable.xml",
"ref/netstandard1.0/ru/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.linq.queryable.4.0.1.nupkg.sha512",
"system.linq.queryable.nuspec"
]
},
"System.Memory/4.5.4": {
"sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"type": "package",
......@@ -6135,88 +5169,6 @@
"version.txt"
]
},
"System.Net.Http/4.1.0": {
"sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
"type": "package",
"path": "system.net.http/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/Xamarinmac20/_._",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.Http.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/Xamarinmac20/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.Http.dll",
"ref/net46/System.Net.Http.xml",
"ref/net46/de/System.Net.Http.xml",
"ref/net46/es/System.Net.Http.xml",
"ref/net46/fr/System.Net.Http.xml",
"ref/net46/it/System.Net.Http.xml",
"ref/net46/ja/System.Net.Http.xml",
"ref/net46/ko/System.Net.Http.xml",
"ref/net46/ru/System.Net.Http.xml",
"ref/net46/zh-hans/System.Net.Http.xml",
"ref/net46/zh-hant/System.Net.Http.xml",
"ref/netcore50/System.Net.Http.dll",
"ref/netcore50/System.Net.Http.xml",
"ref/netcore50/de/System.Net.Http.xml",
"ref/netcore50/es/System.Net.Http.xml",
"ref/netcore50/fr/System.Net.Http.xml",
"ref/netcore50/it/System.Net.Http.xml",
"ref/netcore50/ja/System.Net.Http.xml",
"ref/netcore50/ko/System.Net.Http.xml",
"ref/netcore50/ru/System.Net.Http.xml",
"ref/netcore50/zh-hans/System.Net.Http.xml",
"ref/netcore50/zh-hant/System.Net.Http.xml",
"ref/netstandard1.1/System.Net.Http.dll",
"ref/netstandard1.1/System.Net.Http.xml",
"ref/netstandard1.1/de/System.Net.Http.xml",
"ref/netstandard1.1/es/System.Net.Http.xml",
"ref/netstandard1.1/fr/System.Net.Http.xml",
"ref/netstandard1.1/it/System.Net.Http.xml",
"ref/netstandard1.1/ja/System.Net.Http.xml",
"ref/netstandard1.1/ko/System.Net.Http.xml",
"ref/netstandard1.1/ru/System.Net.Http.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.xml",
"ref/netstandard1.3/System.Net.Http.dll",
"ref/netstandard1.3/System.Net.Http.xml",
"ref/netstandard1.3/de/System.Net.Http.xml",
"ref/netstandard1.3/es/System.Net.Http.xml",
"ref/netstandard1.3/fr/System.Net.Http.xml",
"ref/netstandard1.3/it/System.Net.Http.xml",
"ref/netstandard1.3/ja/System.Net.Http.xml",
"ref/netstandard1.3/ko/System.Net.Http.xml",
"ref/netstandard1.3/ru/System.Net.Http.xml",
"ref/netstandard1.3/zh-hans/System.Net.Http.xml",
"ref/netstandard1.3/zh-hant/System.Net.Http.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
"runtimes/win/lib/net46/System.Net.Http.dll",
"runtimes/win/lib/netcore50/System.Net.Http.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
"system.net.http.4.1.0.nupkg.sha512",
"system.net.http.nuspec"
]
},
"System.Net.NameResolution/4.3.0": {
"sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
......@@ -6338,44 +5290,6 @@
"system.net.primitives.nuspec"
]
},
"System.Net.Sockets/4.1.0": {
"sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
"type": "package",
"path": "system.net.sockets/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Sockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.xml",
"ref/netstandard1.3/de/System.Net.Sockets.xml",
"ref/netstandard1.3/es/System.Net.Sockets.xml",
"ref/netstandard1.3/fr/System.Net.Sockets.xml",
"ref/netstandard1.3/it/System.Net.Sockets.xml",
"ref/netstandard1.3/ja/System.Net.Sockets.xml",
"ref/netstandard1.3/ko/System.Net.Sockets.xml",
"ref/netstandard1.3/ru/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.net.sockets.4.1.0.nupkg.sha512",
"system.net.sockets.nuspec"
]
},
"System.ObjectModel/4.3.0": {
"sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
......@@ -7302,97 +6216,6 @@
"system.runtime.interopservices.nuspec"
]
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
"type": "package",
"path": "system.runtime.interopservices.runtimeinformation/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
"system.runtime.interopservices.runtimeinformation.nuspec"
]
},
"System.Runtime.Numerics/4.0.1": {
"sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
"type": "package",
"path": "system.runtime.numerics/4.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Numerics.dll",
"lib/netstandard1.3/System.Runtime.Numerics.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Numerics.dll",
"ref/netcore50/System.Runtime.Numerics.xml",
"ref/netcore50/de/System.Runtime.Numerics.xml",
"ref/netcore50/es/System.Runtime.Numerics.xml",
"ref/netcore50/fr/System.Runtime.Numerics.xml",
"ref/netcore50/it/System.Runtime.Numerics.xml",
"ref/netcore50/ja/System.Runtime.Numerics.xml",
"ref/netcore50/ko/System.Runtime.Numerics.xml",
"ref/netcore50/ru/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
"ref/netstandard1.1/System.Runtime.Numerics.dll",
"ref/netstandard1.1/System.Runtime.Numerics.xml",
"ref/netstandard1.1/de/System.Runtime.Numerics.xml",
"ref/netstandard1.1/es/System.Runtime.Numerics.xml",
"ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
"ref/netstandard1.1/it/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.runtime.numerics.4.0.1.nupkg.sha512",
"system.runtime.numerics.nuspec"
]
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"type": "package",
......@@ -7600,46 +6423,6 @@
"version.txt"
]
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
"type": "package",
"path": "system.security.cryptography.algorithms/4.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/net461/System.Security.Cryptography.Algorithms.dll",
"lib/net463/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Algorithms.dll",
"ref/net461/System.Security.Cryptography.Algorithms.dll",
"ref/net463/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
"system.security.cryptography.algorithms.nuspec"
]
},
"System.Security.Cryptography.Cng/4.5.0": {
"sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"type": "package",
......@@ -7703,95 +6486,6 @@
"version.txt"
]
},
"System.Security.Cryptography.Csp/4.0.0": {
"sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
"type": "package",
"path": "system.security.cryptography.csp/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Csp.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Csp.dll",
"ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
"runtimes/win/lib/netcore50/_._",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
"system.security.cryptography.csp.4.0.0.nupkg.sha512",
"system.security.cryptography.csp.nuspec"
]
},
"System.Security.Cryptography.Encoding/4.0.0": {
"sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
"type": "package",
"path": "system.security.cryptography.encoding/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"system.security.cryptography.encoding.4.0.0.nupkg.sha512",
"system.security.cryptography.encoding.nuspec"
]
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
"type": "package",
"path": "system.security.cryptography.openssl/4.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"system.security.cryptography.openssl.4.0.0.nupkg.sha512",
"system.security.cryptography.openssl.nuspec"
]
},
"System.Security.Cryptography.Primitives/4.3.0": {
"sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
......@@ -7866,62 +6560,6 @@
"version.txt"
]
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
"type": "package",
"path": "system.security.cryptography.x509certificates/4.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/net461/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.X509Certificates.dll",
"ref/net461/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
"system.security.cryptography.x509certificates.nuspec"
]
},
"System.Security.Permissions/4.7.0": {
"sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
"type": "package",
......@@ -8499,59 +7137,48 @@
"version.txt"
]
},
"System.Threading.Timer/4.0.1": {
"sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
"System.ValueTuple/4.5.0": {
"sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
"type": "package",
"path": "system.threading.timer/4.0.1",
"path": "system.valuetuple/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/win81/_._",
"lib/wpa81/_._",
"lib/net461/System.ValueTuple.dll",
"lib/net461/System.ValueTuple.xml",
"lib/net47/System.ValueTuple.dll",
"lib/net47/System.ValueTuple.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.ValueTuple.dll",
"lib/netstandard1.0/System.ValueTuple.xml",
"lib/netstandard2.0/_._",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/_._",
"ref/netcore50/System.Threading.Timer.dll",
"ref/netcore50/System.Threading.Timer.xml",
"ref/netcore50/de/System.Threading.Timer.xml",
"ref/netcore50/es/System.Threading.Timer.xml",
"ref/netcore50/fr/System.Threading.Timer.xml",
"ref/netcore50/it/System.Threading.Timer.xml",
"ref/netcore50/ja/System.Threading.Timer.xml",
"ref/netcore50/ko/System.Threading.Timer.xml",
"ref/netcore50/ru/System.Threading.Timer.xml",
"ref/netcore50/zh-hans/System.Threading.Timer.xml",
"ref/netcore50/zh-hant/System.Threading.Timer.xml",
"ref/netstandard1.2/System.Threading.Timer.dll",
"ref/netstandard1.2/System.Threading.Timer.xml",
"ref/netstandard1.2/de/System.Threading.Timer.xml",
"ref/netstandard1.2/es/System.Threading.Timer.xml",
"ref/netstandard1.2/fr/System.Threading.Timer.xml",
"ref/netstandard1.2/it/System.Threading.Timer.xml",
"ref/netstandard1.2/ja/System.Threading.Timer.xml",
"ref/netstandard1.2/ko/System.Threading.Timer.xml",
"ref/netstandard1.2/ru/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
"ref/portable-net451+win81+wpa81/_._",
"ref/win81/_._",
"ref/wpa81/_._",
"ref/net461/System.ValueTuple.dll",
"ref/net47/System.ValueTuple.dll",
"ref/netcoreapp2.0/_._",
"ref/netstandard2.0/_._",
"ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.threading.timer.4.0.1.nupkg.sha512",
"system.threading.timer.nuspec"
"system.valuetuple.4.5.0.nupkg.sha512",
"system.valuetuple.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Windows.Extensions/4.7.0": {
......@@ -8847,7 +7474,7 @@
"net5.0": [
"ApplicationCore >= 1.0.0",
"ApplicationDomain >= 1.0.0",
"AutoMapper >= 5.2.0",
"AutoMapper.Extensions.Microsoft.DependencyInjection >= 5.0.1",
"Infrastructure >= 1.0.0",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 5.0.17",
"Microsoft.EntityFrameworkCore.Design >= 5.0.17",
......@@ -8905,9 +7532,9 @@
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"AutoMapper": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": {
"target": "Package",
"version": "[5.2.0, )"
"version": "[5.0.1, )"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
"target": "Package",
......
{
"version": 2,
"dgSpecHash": "XfMd3iHD9v8JQQWNkf+ghK+2DD+5cNL6RJA88pefQlEHyEyRE8R5qxzFtEo2yt3IFvVAfygkAc01oT751azrzw==",
"dgSpecHash": "XxdrnD4oAsCfv/ZAaUaCd8iI9u+rg8uQmAc28Isd2c+p0jXRpymxnlL0dkdHSg1EW0zA2ZYCXrtb3ZrSei2RUg==",
"success": true,
"projectFilePath": "C:\\Users\\HASAN\\Desktop\\Medic\\WebPresentation\\WebPresentation.csproj",
"expectedPackageFiles": [
"C:\\Users\\HASAN\\.nuget\\packages\\automapper\\5.2.0\\automapper.5.2.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\automapper\\7.0.1\\automapper.7.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\5.0.1\\automapper.extensions.microsoft.dependencyinjection.5.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\5.0.17\\microsoft.aspnetcore.cryptography.internal.5.0.17.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\5.0.17\\microsoft.aspnetcore.cryptography.keyderivation.5.0.17.nupkg.sha512",
......@@ -57,17 +58,10 @@
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.2\\microsoft.visualstudio.web.codegeneration.templating.5.0.2.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.2\\microsoft.visualstudio.web.codegeneration.utils.5.0.2.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.2\\microsoft.visualstudio.web.codegenerators.mvc.5.0.2.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\netstandard.library\\1.6.0\\netstandard.library.1.6.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\runtime.native.system.io.compression\\4.1.0\\runtime.native.system.io.compression.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\runtime.native.system.net.http\\4.0.1\\runtime.native.system.net.http.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\runtime.native.system.security.cryptography\\4.0.0\\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.buffers\\4.0.0\\system.buffers.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
......@@ -84,30 +78,22 @@
"C:\\Users\\HASAN\\.nuget\\packages\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.globalization.calendars\\4.0.1\\system.globalization.calendars.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.6.0\\system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.io.compression\\4.1.0\\system.io.compression.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.io.compression.zipfile\\4.0.1\\system.io.compression.zipfile.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.linq.queryable\\4.0.1\\system.linq.queryable.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.net.http\\4.1.0\\system.net.http.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.net.sockets\\4.1.0\\system.net.sockets.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512",
......@@ -126,20 +112,13 @@
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.numerics\\4.0.1\\system.runtime.numerics.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.algorithms\\4.2.0\\system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.csp\\4.0.0\\system.security.cryptography.csp.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.encoding\\4.0.0\\system.security.cryptography.encoding.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.openssl\\4.0.0\\system.security.cryptography.openssl.4.0.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.1.0\\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512",
......@@ -151,7 +130,7 @@
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\HASAN\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment