Added some files
This commit is contained in:
parent
9aba49f827
commit
85bd80ed4b
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
@ -7,17 +7,16 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Remove="Utils\TokenProvider.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.9" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Controllers\" />
|
<None Include="Utils\TokenProvider.cs" />
|
||||||
<Folder Include="Models\" />
|
|
||||||
<Folder Include="Data\" />
|
|
||||||
<Folder Include="Utils\" />
|
|
||||||
<Folder Include="Repositories\Implementations\" />
|
|
||||||
<Folder Include="Repositories\Interfaces\" />
|
|
||||||
<Folder Include="Views\" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -2,5 +2,7 @@
|
|||||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ActiveDebugProfile>Docker</ActiveDebugProfile>
|
<ActiveDebugProfile>Docker</ActiveDebugProfile>
|
||||||
|
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
|
||||||
|
<Controller_SelectedScaffolderCategoryPath>root/Controller</Controller_SelectedScaffolderCategoryPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
16
AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs
Normal file
16
AlfaPrentice/AlfaPrentice/Controllers/LoginController.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Controllers
|
||||||
|
{
|
||||||
|
public class LoginController : Controller
|
||||||
|
{
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs
Normal file
12
AlfaPrentice/AlfaPrentice/Data/AlfaPrenticeContext.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Data
|
||||||
|
{
|
||||||
|
public class AlfaPrenticeContext : DbContext
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
11
AlfaPrentice/AlfaPrentice/Models/User.cs
Normal file
11
AlfaPrentice/AlfaPrentice/Models/User.cs
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Models
|
||||||
|
{
|
||||||
|
public class User
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Repositories.Implementations
|
||||||
|
{
|
||||||
|
public class UserRepository
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Repositories.Interfaces
|
||||||
|
{
|
||||||
|
public class IUserRepository
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
11
AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs
Normal file
11
AlfaPrentice/AlfaPrentice/Utils/TokenProvider.cs
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AlfaPrentice.Utils
|
||||||
|
{
|
||||||
|
public class TokenProvider
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
3
AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml
Normal file
3
AlfaPrentice/AlfaPrentice/Views/_ViewImports.cshtml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@using AlfaExchange
|
||||||
|
@using AlfaExchange.Models
|
||||||
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
3
AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml
Normal file
3
AlfaPrentice/AlfaPrentice/Views/_ViewStart.cshtml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@{
|
||||||
|
Layout = "_Layout";
|
||||||
|
}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
ca0a7635792fb9eeeeef10e57948d083ad593b96
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("AlfaPrentice.Views")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
ca0a7635792fb9eeeeef10e57948d083ad593b96
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("AlfaPrentice.Views")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
Binary file not shown.
@ -2,16 +2,500 @@
|
|||||||
"version": 3,
|
"version": 3,
|
||||||
"targets": {
|
"targets": {
|
||||||
".NETCoreApp,Version=v3.1": {
|
".NETCoreApp,Version=v3.1": {
|
||||||
|
"Microsoft.Bcl.AsyncInterfaces/1.1.1": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Bcl.HashCode/1.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Bcl.AsyncInterfaces": "1.1.1",
|
||||||
|
"Microsoft.Bcl.HashCode": "1.1.0",
|
||||||
|
"Microsoft.EntityFrameworkCore.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.EntityFrameworkCore.Analyzers": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Caching.Memory": "3.1.9",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Logging": "3.1.9",
|
||||||
|
"System.Collections.Immutable": "1.7.1",
|
||||||
|
"System.ComponentModel.Annotations": "4.7.0",
|
||||||
|
"System.Diagnostics.DiagnosticSource": "4.7.1"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore.Abstractions/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore.Analyzers/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/_._": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Caching.Abstractions/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Primitives": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Caching.Memory/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Caching.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Options": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Primitives": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Binder": "3.1.9",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Options": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
|
||||||
|
"Microsoft.Extensions.Primitives": "3.1.9"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/3.1.9": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
|
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"build": {
|
"build": {
|
||||||
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
|
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
|
||||||
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
|
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"System.Collections.Immutable/1.7.1": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/System.Collections.Immutable.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Collections.Immutable.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.ComponentModel.Annotations/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Diagnostics.DiagnosticSource/4.7.1": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libraries": {
|
"libraries": {
|
||||||
|
"Microsoft.Bcl.AsyncInterfaces/1.1.1": {
|
||||||
|
"sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.bcl.asyncinterfaces/1.1.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
|
||||||
|
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
|
||||||
|
"microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
||||||
|
"microsoft.bcl.asyncinterfaces.nuspec",
|
||||||
|
"ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Bcl.HashCode/1.1.0": {
|
||||||
|
"sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.bcl.hashcode/1.1.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"lib/net461/Microsoft.Bcl.HashCode.xml",
|
||||||
|
"lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
|
||||||
|
"lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
|
||||||
|
"microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
|
||||||
|
"microsoft.bcl.hashcode.nuspec",
|
||||||
|
"ref/net461/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore/3.1.9": {
|
||||||
|
"sha512": "u3A2W0BvAuAF2jgW+WX+C+Sh8sMGX5Kl1hdA0gu6A/XSrZQoW/BUP4a/q2n3iitDGndaorqjAKx+Spb9gBto+w==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.entityframeworkcore/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
|
||||||
|
"microsoft.entityframeworkcore.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.entityframeworkcore.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore.Abstractions/3.1.9": {
|
||||||
|
"sha512": "IR6Y4RJVlw0QXdWXjF3Kx9s1QLiicJus+BFBKr43lBtriV20j3yrWMoaZ9W1AUUgnicZXpXVcNfklqtmwb9Sxw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.entityframeworkcore.abstractions/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
|
||||||
|
"microsoft.entityframeworkcore.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.entityframeworkcore.abstractions.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.EntityFrameworkCore.Analyzers/3.1.9": {
|
||||||
|
"sha512": "eXGyx/Lb1fiiKtnIStdxGrfBSSQg8oZytE10f1T/2xAx12W9dKB9U9fg05cwNCDC0S2CXILsmZHYaGqCSXVAqQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.entityframeworkcore.analyzers/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
|
||||||
|
"lib/netstandard2.0/_._",
|
||||||
|
"microsoft.entityframeworkcore.analyzers.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.entityframeworkcore.analyzers.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Caching.Abstractions/3.1.9": {
|
||||||
|
"sha512": "/2QsPAsUZD4qvftZkUKHRRRryPDXWh606/iNXPLrulwHLMr9JNsKBJWVqylT3qU92nJok5VoqSblkY9mSyxFyg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.caching.abstractions/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
|
||||||
|
"microsoft.extensions.caching.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.caching.abstractions.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Caching.Memory/3.1.9": {
|
||||||
|
"sha512": "/JrVMVetX/kpJQUIlJ6NLQ3zbF0yyryXpo4+uFCqYIUZzgmWk8DS/zSKcyj1tQ3410+vhDEAPngxC+hg0IlJeg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.caching.memory/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
|
||||||
|
"microsoft.extensions.caching.memory.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.caching.memory.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/3.1.9": {
|
||||||
|
"sha512": "lqdkOGNeTMKG981Q7yWGlRiFbIlsRwTlMMiybT+WOzUCFBS/wc25tZgh7Wm/uRoBbWefgvokzmnea7ZjmFedmA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.configuration/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
|
||||||
|
"microsoft.extensions.configuration.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.configuration.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
|
||||||
|
"sha512": "vOJxPKczaHpXeZFrxARxYwsEulhEouXc5aZGgMdkhV/iEXX9/pfjqKk76rTG+4CsJjHV+G/4eMhvOIaQMHENNA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.configuration.abstractions/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
||||||
|
"microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.configuration.abstractions.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/3.1.9": {
|
||||||
|
"sha512": "BG6HcT7tARYakftqfQu+cLksgIWG1NdxMY+igI12hdZrUK+WjS973NiRyuao/U9yyTeM9NPwRnC61hCmG3G3jg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.configuration.binder/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
|
||||||
|
"microsoft.extensions.configuration.binder.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.configuration.binder.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/3.1.9": {
|
||||||
|
"sha512": "ORqfrAACcvTInie1oGola5uky344/PiNfgayTPuZWV4WnSfIQZJQm/ZLpGshJE3h7TqwYaYElGazK/yaM2bFLA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
|
||||||
|
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
|
||||||
|
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
|
||||||
|
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
|
||||||
|
"microsoft.extensions.dependencyinjection.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.dependencyinjection.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/3.1.9": {
|
||||||
|
"sha512": "8PkcaPwiTPOhqshoY4+rQUbz86X6YpLDLUqXOezh7L2A3pgpBmeBBByYIffofBlvQxDdQ0zB2DkWjbZWyCxRWg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection.abstractions/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||||
|
"microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.dependencyinjection.abstractions.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging/3.1.9": {
|
||||||
|
"sha512": "+V3i0jCQCO6IIOf6e+fL0SqrZd2x/Krug9EEL1JHa9R03RsbEpltCtjVY5hxedyuyuQKwvLoR12sCfu/9XEUAw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.logging/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
|
||||||
|
"microsoft.extensions.logging.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.logging.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/3.1.9": {
|
||||||
|
"sha512": "W5fbF8qVR9SMVVJqDQLIR7meWbev6Pu/lbrm7LDNr4Sp7HOotr4k2UULTdFSXOi5aoDdkQZpWnq0ZSpjrR3tjg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.logging.abstractions/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||||
|
"microsoft.extensions.logging.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.logging.abstractions.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/3.1.9": {
|
||||||
|
"sha512": "EIb3G1DL+Rl9MvJR7LjI1wCy2nfTN4y8MflbOftn1HLYQBj/Rwl8kUbGTrSFE01c99Wm4ETjWVsjqKcpFvhPng==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.options/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
|
||||||
|
"microsoft.extensions.options.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.options.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/3.1.9": {
|
||||||
|
"sha512": "IrHecH0eGG7/XoeEtv++oLg/sJHRNyeCqlA9RhAo6ig4GpOTjtDr32sBMYuuLtUq8ALahneWkrOzoBAwJ4L4iA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.primitives/3.1.9",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
|
||||||
|
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
|
||||||
|
"microsoft.extensions.primitives.3.1.9.nupkg.sha512",
|
||||||
|
"microsoft.extensions.primitives.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
|
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
|
||||||
"sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
|
"sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@ -75,10 +559,152 @@
|
|||||||
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
|
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
|
||||||
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
|
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"System.Collections.Immutable/1.7.1": {
|
||||||
|
"sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.collections.immutable/1.7.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/System.Collections.Immutable.dll",
|
||||||
|
"lib/net461/System.Collections.Immutable.xml",
|
||||||
|
"lib/netstandard1.0/System.Collections.Immutable.dll",
|
||||||
|
"lib/netstandard1.0/System.Collections.Immutable.xml",
|
||||||
|
"lib/netstandard1.3/System.Collections.Immutable.dll",
|
||||||
|
"lib/netstandard1.3/System.Collections.Immutable.xml",
|
||||||
|
"lib/netstandard2.0/System.Collections.Immutable.dll",
|
||||||
|
"lib/netstandard2.0/System.Collections.Immutable.xml",
|
||||||
|
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
|
||||||
|
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
|
||||||
|
"system.collections.immutable.1.7.1.nupkg.sha512",
|
||||||
|
"system.collections.immutable.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.ComponentModel.Annotations/4.7.0": {
|
||||||
|
"sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.componentmodel.annotations/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/MonoAndroid10/_._",
|
||||||
|
"lib/MonoTouch10/_._",
|
||||||
|
"lib/net45/_._",
|
||||||
|
"lib/net461/System.ComponentModel.Annotations.dll",
|
||||||
|
"lib/netcore50/System.ComponentModel.Annotations.dll",
|
||||||
|
"lib/netstandard1.4/System.ComponentModel.Annotations.dll",
|
||||||
|
"lib/netstandard2.0/System.ComponentModel.Annotations.dll",
|
||||||
|
"lib/netstandard2.1/System.ComponentModel.Annotations.dll",
|
||||||
|
"lib/netstandard2.1/System.ComponentModel.Annotations.xml",
|
||||||
|
"lib/portable-net45+win8/_._",
|
||||||
|
"lib/win8/_._",
|
||||||
|
"lib/xamarinios10/_._",
|
||||||
|
"lib/xamarinmac20/_._",
|
||||||
|
"lib/xamarintvos10/_._",
|
||||||
|
"lib/xamarinwatchos10/_._",
|
||||||
|
"ref/MonoAndroid10/_._",
|
||||||
|
"ref/MonoTouch10/_._",
|
||||||
|
"ref/net45/_._",
|
||||||
|
"ref/net461/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/net461/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netcore50/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/de/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/es/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/fr/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/it/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/ja/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/ko/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/ru/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netstandard1.1/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netstandard1.3/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netstandard1.4/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard2.0/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netstandard2.0/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/netstandard2.1/System.ComponentModel.Annotations.dll",
|
||||||
|
"ref/netstandard2.1/System.ComponentModel.Annotations.xml",
|
||||||
|
"ref/portable-net45+win8/_._",
|
||||||
|
"ref/win8/_._",
|
||||||
|
"ref/xamarinios10/_._",
|
||||||
|
"ref/xamarinmac20/_._",
|
||||||
|
"ref/xamarintvos10/_._",
|
||||||
|
"ref/xamarinwatchos10/_._",
|
||||||
|
"system.componentmodel.annotations.4.7.0.nupkg.sha512",
|
||||||
|
"system.componentmodel.annotations.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Diagnostics.DiagnosticSource/4.7.1": {
|
||||||
|
"sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.diagnostics.diagnosticsource/4.7.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net45/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"lib/net45/System.Diagnostics.DiagnosticSource.xml",
|
||||||
|
"lib/net46/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"lib/net46/System.Diagnostics.DiagnosticSource.xml",
|
||||||
|
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
|
||||||
|
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
|
||||||
|
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
|
||||||
|
"system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
|
||||||
|
"system.diagnostics.diagnosticsource.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"projectFileDependencyGroups": {
|
"projectFileDependencyGroups": {
|
||||||
".NETCoreApp,Version=v3.1": [
|
".NETCoreApp,Version=v3.1": [
|
||||||
|
"Microsoft.EntityFrameworkCore >= 3.1.9",
|
||||||
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9"
|
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -123,6 +749,10 @@
|
|||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp3.1": {
|
"netcoreapp3.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"Microsoft.EntityFrameworkCore": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[3.1.9, )"
|
||||||
|
},
|
||||||
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
|
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.10.9, )"
|
"version": "[1.10.9, )"
|
||||||
|
|||||||
@ -1,10 +1,29 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "+9g49VUM94weX/FAwmcld5mn/tf066LMv9c4xvt+e5uT0EPq99hYTVxVp5/nnU3ohNHIwhgoMjQpTuRxb5wzhA==",
|
"dgSpecHash": "KI6cjqwmZ67CPfWkH8Ro5bxd7Zbem5QMkcNur4LWc0skZzaLMraH+emrh1jCSRMdB+FLmdb8QSsMUlnNy5J56g==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
"projectFilePath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512"
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.9\\microsoft.entityframeworkcore.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.9\\microsoft.entityframeworkcore.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.9\\microsoft.entityframeworkcore.analyzers.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.9\\microsoft.extensions.caching.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.9\\microsoft.extensions.caching.memory.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.9\\microsoft.extensions.configuration.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.9\\microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.9\\microsoft.extensions.configuration.binder.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.9\\microsoft.extensions.dependencyinjection.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.9\\microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging\\3.1.9\\microsoft.extensions.logging.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.9\\microsoft.extensions.logging.abstractions.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.options\\3.1.9\\microsoft.extensions.options.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.9\\microsoft.extensions.primitives.3.1.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user