Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
aa887a90
Commit
aa887a90
authored
Nov 30, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
c32052d4
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
452 additions
and
269 deletions
+452
-269
HtmlHelper.cs
Edu.Common/Plugin/HtmlHelper.cs
+0
-6
Edu.LogModule.csproj
Edu.LogModule/Edu.LogModule.csproj
+0
-7
RB_Manager.cs
Edu.Model/Entity/User/RB_Manager.cs
+0
-1
RB_Manager_ViewModel.cs
Edu.Model/ViewModel/User/RB_Manager_ViewModel.cs
+5
-0
Edu.Model.deps.json
Edu.Model/bin/Release/netcoreapp3.0/Edu.Model.deps.json
+72
-72
Edu.Module.Log.csproj
Edu.Module.Log/Edu.Module.Log.csproj
+12
-0
UserChangeLogModule.cs
Edu.Module.Log/UserChangeLogModule.cs
+23
-1
DepartmentModule.cs
Edu.Module.User/DepartmentModule.cs
+44
-6
Edu.Module.User.csproj
Edu.Module.User/Edu.Module.User.csproj
+1
-0
ManagerModule.cs
Edu.Module.User/ManagerModule.cs
+78
-3
Edu.Module.User.deps.json
....User/bin/Release/netcoreapp3.0/Edu.Module.User.deps.json
+87
-72
RB_User_ChangeLogRepository.cs
Edu.Repository/Log/RB_User_ChangeLogRepository.cs
+1
-2
Edu.Repository.deps.json
...sitory/bin/Release/netcoreapp3.0/Edu.Repository.deps.json
+72
-72
PublicController.cs
Edu.WebApi/Controllers/Public/PublicController.cs
+15
-16
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+36
-5
education.sln
education.sln
+6
-6
No files found.
Edu.Common/Plugin/HtmlHelper.cs
View file @
aa887a90
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Text.RegularExpressions
;
using
System.Text.RegularExpressions
;
using
System.Threading.Tasks
;
namespace
Edu.Common.Plugin
namespace
Edu.Common.Plugin
{
{
...
@@ -48,12 +45,10 @@ namespace Edu.Common.Plugin
...
@@ -48,12 +45,10 @@ namespace Edu.Common.Plugin
{
{
// 定义正则表达式用来匹配 img 标签
// 定义正则表达式用来匹配 img 标签
Regex
regImg
=
new
Regex
(
@"<img\b[^<>]*?\bsrc[\s\t\r\n]*=[\s\t\r\n]*[""']?[\s\t\r\n]*(?<imgUrl>[^\s\t\r\n""'<>]*)[^<>]*?[\s\t\r\n]*>"
,
RegexOptions
.
IgnoreCase
);
Regex
regImg
=
new
Regex
(
@"<img\b[^<>]*?\bsrc[\s\t\r\n]*=[\s\t\r\n]*[""']?[\s\t\r\n]*(?<imgUrl>[^\s\t\r\n""'<>]*)[^<>]*?[\s\t\r\n]*>"
,
RegexOptions
.
IgnoreCase
);
// 搜索匹配的字符串
// 搜索匹配的字符串
MatchCollection
matches
=
regImg
.
Matches
(
sHtmlText
);
MatchCollection
matches
=
regImg
.
Matches
(
sHtmlText
);
int
i
=
0
;
int
i
=
0
;
string
[]
sUrlList
=
new
string
[
matches
.
Count
];
string
[]
sUrlList
=
new
string
[
matches
.
Count
];
// 取得匹配项列表
// 取得匹配项列表
foreach
(
Match
match
in
matches
)
foreach
(
Match
match
in
matches
)
sUrlList
[
i
++]
=
match
.
Groups
[
"imgUrl"
].
Value
;
sUrlList
[
i
++]
=
match
.
Groups
[
"imgUrl"
].
Value
;
...
@@ -160,7 +155,6 @@ namespace Edu.Common.Plugin
...
@@ -160,7 +155,6 @@ namespace Edu.Common.Plugin
/// <returns></returns>
/// <returns></returns>
public
static
void
GetImgParm
(
string
imgUrl
,
out
int
width
,
out
int
height
)
public
static
void
GetImgParm
(
string
imgUrl
,
out
int
width
,
out
int
height
)
{
{
Regex
regWidth
=
new
Regex
(
@"width=(?<width>\d+)"
,
RegexOptions
.
IgnoreCase
);
Regex
regWidth
=
new
Regex
(
@"width=(?<width>\d+)"
,
RegexOptions
.
IgnoreCase
);
MatchCollection
mcWidth
=
regWidth
.
Matches
(
imgUrl
);
MatchCollection
mcWidth
=
regWidth
.
Matches
(
imgUrl
);
if
(
mcWidth
.
Count
>
0
)
if
(
mcWidth
.
Count
>
0
)
...
...
Edu.LogModule/Edu.LogModule.csproj
deleted
100644 → 0
View file @
c32052d4
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
Edu.Model/Entity/User/RB_Manager.cs
View file @
aa887a90
...
@@ -67,7 +67,6 @@ namespace Edu.Model.Entity.User
...
@@ -67,7 +67,6 @@ namespace Edu.Model.Entity.User
/// </summary>
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 部门编号
/// 部门编号
/// </summary>
/// </summary>
...
...
Edu.Model/ViewModel/User/RB_Manager_ViewModel.cs
View file @
aa887a90
...
@@ -49,5 +49,10 @@ namespace Edu.Model.ViewModel.User
...
@@ -49,5 +49,10 @@ namespace Edu.Model.ViewModel.User
/// 岗位名称
/// 岗位名称
/// </summary>
/// </summary>
public
string
PostName
{
get
;
set
;
}
public
string
PostName
{
get
;
set
;
}
/// <summary>
/// 用户类型(1-管理端,2-讲师,3-助教)
/// </summary>
public
int
UserType
{
get
;
set
;
}
}
}
}
}
Edu.Model/bin/Release/netcoreapp3.0/Edu.Model.deps.json
View file @
aa887a90
...
@@ -2254,14 +2254,14 @@
...
@@ -2254,14 +2254,14 @@
"Microsoft.NETCore.Targets/1.1.0"
:
{
"Microsoft.NETCore.Targets/1.1.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg
=="
,
"sha512"
:
"sha512-
jtuKp4+ddUpehBOlmQJNWek/tXwXLeDAGtkkrHS1Qi6nOPmaLCuvDKFaqBu2c4DGKci+JMDUk4R+6jQ8P8l1aw
=="
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
},
"Microsoft.Win32.Primitives/4.3.0"
:
{
"Microsoft.Win32.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0Uunx
A=="
,
"sha512"
:
"sha512-
ZthhVqE8T07PsCHMAixDJJjmbdc07VO3GW8FULO+YWr/CmTLolwJoJdXRL/z2/4FAOtCJaJ/H+TPhtH2v1oaU
A=="
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2317,7 +2317,7 @@
...
@@ -2317,7 +2317,7 @@
"NETStandard.Library/1.6.1"
:
{
"NETStandard.Library/1.6.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A
=="
,
"sha512"
:
"sha512-
UQNdem5WY//vGStfYv8LFMcWvNTLxUocZ9YfGg4Ps2WaDerp+HrO46tDjQX88/wZaBkwv+Xq/mqjfPeMDz6QnQ
=="
,
"path"
:
"netstandard.library/1.6.1"
,
"path"
:
"netstandard.library/1.6.1"
,
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
},
},
...
@@ -2352,28 +2352,28 @@
...
@@ -2352,28 +2352,28 @@
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q
=="
,
"sha512"
:
"sha512-
uoCdP75em+GOf04ew/VTet4nr9h/uVMJkrAF9vgRXc4NV4c94R5bzL853tU/kjEfQEUn79aEzzL/ETNhLTasow
=="
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA
=="
,
"sha512"
:
"sha512-
h6SbWq7Fjz9udTUOzuhx1sLYBaIs9YmKpiAb17H9E0YYYIOknAusPKVGv1bExrka1WRtbnpTXpuoBfYU8zVH1w
=="
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-c
3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAK
w=="
,
"sha512"
:
"sha512-c
HH7MckuzKikSR6L6RrySZ2m2C9DDsse28va9U2bE2Op1KotonVDj8JB8qLlXC3jNrdH0SuHfZ4jsHpKuTT0i
w=="
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.native.System/4.3.0"
:
{
"runtime.native.System/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7J
w=="
,
"sha512"
:
"sha512-
S+nQhAdiCsSEeAqawUDCKvQl6sO501hZaT/8V49VpKGSNJQKZh0z2pw+TRDOo9LJv8yjCWMHypHgQBTEEUmw2
w=="
,
"path"
:
"runtime.native.system/4.3.0"
,
"path"
:
"runtime.native.system/4.3.0"
,
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
},
},
...
@@ -2387,84 +2387,84 @@
...
@@ -2387,84 +2387,84 @@
"runtime.native.System.IO.Compression/4.3.0"
:
{
"runtime.native.System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ
=="
,
"sha512"
:
"sha512-
ubimUZNWVWNbB55MO1Ev9uq66w2jmHgx4wNCaUHUs4G6qHPyGm5b0cV+zS2ai0aS9sO1e6StzJJ98OIhVQ2Oyw
=="
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Net.Http/4.3.0"
:
{
"runtime.native.System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg
=="
,
"sha512"
:
"sha512-
iTbzUFkAYPzlBjSNi4/tv6GWiw4c3D2mYScFgPgS5BUEO7K21AYXeIU7l8KtErqYEn/+DJ5FZLDDd9xMEASN4Q
=="
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ
3Q=="
,
"sha512"
:
"sha512-
5DyXXwEyil5vfxbfszS9HVXqMrPBsvZtTe1COwiDt4hfjp/yTFbACWb4JZ2IfYP+r+mb0pwobpBLQ5aW7qUv
3Q=="
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnr
w=="
,
"sha512"
:
"sha512-
fFcF1RvzmvWvBqBeyLa5MX/HO5cGe2Tef6uZnUKv0LJ0MwKhXensaDd48pXDgDLrHOCH9yLg8ENb6ppmgA/Up
w=="
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A
=="
,
"sha512"
:
"sha512-
y1X4xOQmneMsDwpkiRAzHI+PaH7eycMb1jIFU3bAb20Ks0l14ZSOx9HTHQviOtztYuLZ9shZNRJNvWVbJSIMpg
=="
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ
=="
,
"sha512"
:
"sha512-
vv4ZlH/xxDOrL3r5y76cdsmzlCS/yrOTs4xjGNwe1P57f0CkTQdzMz9dSHo4tWk9Eg4bA3DiVwVpVO+kqAEZQg
=="
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ
=="
,
"sha512"
:
"sha512-
FwiyAuPHsMyQVxhdC9NvJgnaYzEu0080It56MNVonOUX54ezZzafsjuSeRht8R4slkTDwU0laIXWuUEN7U6tTA
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g
=="
,
"sha512"
:
"sha512-
wH7IrGz1YyAPIt4nJXut7EyjQ5xgs2qc23YN0OiMCoA0i2OoAXgpNAPSl0QDjXB+CeKe+ZRnhGNeKfYBX1YdLw
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg
=="
,
"sha512"
:
"sha512-
WWabnawXg2BVm76El1mwkgzOljzAOK8YHe4AenFiKKDG8/nXs38RtInyrHcG2xNLrCLSfRwrhfS4RPAQH5E0ew
=="
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLr
Q=="
,
"sha512"
:
"sha512-
rBEA8wlrj/iZvNMyz/lksEz+ps3LknjwavzCG+23vm1WwLZWYIEoQIDi10pgXzgUROHC9j2ppoownmB9YzARm
Q=="
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A
=="
,
"sha512"
:
"sha512-
0DLUJpbpi+CthPVmOzA7bkNKwNuxvFi4V8sYsSYQuLuQbBAd462CHOrIMM29ivBeUsEvdtdAel+JZa4s9t6dFQ
=="
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg
=="
,
"sha512"
:
"sha512-
Tq1k9cfn9PGxTwX8QmWS9NQ9Rt4HS/r+i6SPe2R5cM9OO+RgWbRK0ExGGcZqjuqyzekHfHBYrW8sVUNvaZjw8w
=="
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
...
@@ -2527,7 +2527,7 @@
...
@@ -2527,7 +2527,7 @@
"System.AppContext/4.3.0"
:
{
"System.AppContext/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA
=="
,
"sha512"
:
"sha512-
do9UYqgS80R3NfDLsxXgAyv0w4y003ik6KmfYBpJ5CTBQb/K8ylQfrx7WlnXwvdmxj2kti2NKPv8/8nua54/ng
=="
,
"path"
:
"system.appcontext/4.3.0"
,
"path"
:
"system.appcontext/4.3.0"
,
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
},
},
...
@@ -2541,14 +2541,14 @@
...
@@ -2541,14 +2541,14 @@
"System.Collections/4.3.0"
:
{
"System.Collections/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw
=="
,
"sha512"
:
"sha512-
tfqWMsO3XZc72+g/jdFG2bdAErjOc/SlQBXa9+maU/TvZPu6Ew8a2HQOfLAuY8CVuqviTaeEu7ptsbxPB+8SaA
=="
,
"path"
:
"system.collections/4.3.0"
,
"path"
:
"system.collections/4.3.0"
,
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
},
},
"System.Collections.Concurrent/4.3.0"
:
{
"System.Collections.Concurrent/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ
=="
,
"sha512"
:
"sha512-
tRgZFvPa9jMS4qRluyUvD5Ll6gJeG5vG5UHWZ7nK83dOzpCux8pRuJY2TiPvoqx/anCRNEweVl+89ieenbnHHg
=="
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
},
},
...
@@ -2569,7 +2569,7 @@
...
@@ -2569,7 +2569,7 @@
"System.ComponentModel/4.3.0"
:
{
"System.ComponentModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw
=="
,
"sha512"
:
"sha512-
0WhdQqaBmYmIgmgADNmjTenYep1MsRO2qgATQiGkLVjinEfRBATw+OaMUTU3FQtUDxCyl2HNz789BpBCb9NcSQ
=="
,
"path"
:
"system.componentmodel/4.3.0"
,
"path"
:
"system.componentmodel/4.3.0"
,
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
},
},
...
@@ -2604,7 +2604,7 @@
...
@@ -2604,7 +2604,7 @@
"System.Console/4.3.0"
:
{
"System.Console/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg
=="
,
"sha512"
:
"sha512-
HyI4eNqHaD7sDyxN7eTC3MmVA34LrK86IgXY4bznqGgpJ52zrigum5ZZj0ZxD+Xbnwhix/cwgJazOstiKBP/LQ
=="
,
"path"
:
"system.console/4.3.0"
,
"path"
:
"system.console/4.3.0"
,
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
},
},
...
@@ -2618,7 +2618,7 @@
...
@@ -2618,7 +2618,7 @@
"System.Diagnostics.Debug/4.3.0"
:
{
"System.Diagnostics.Debug/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g
=="
,
"sha512"
:
"sha512-
3jTiSHr6dO9uSJAoUcH8Wg29Nc+cQHSmkkn9ul6a9HQhW0KboGrGLiHGCt2AXISFHK7YlGP0fzes2X6/gbpDgQ
=="
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
},
},
...
@@ -2639,7 +2639,7 @@
...
@@ -2639,7 +2639,7 @@
"System.Diagnostics.Tools/4.3.0"
:
{
"System.Diagnostics.Tools/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA
=="
,
"sha512"
:
"sha512-
uVam5oaDJ+lrCkzR5paF0bXKewt8/h8ZaX8xIqm48ypbpdpkp/EWM+uTegiUvraO3Fv+o3oj0cPtprJISNhXXQ
=="
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
},
},
...
@@ -2653,7 +2653,7 @@
...
@@ -2653,7 +2653,7 @@
"System.Diagnostics.Tracing/4.3.0"
:
{
"System.Diagnostics.Tracing/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw
=="
,
"sha512"
:
"sha512-
sRRUOGLj+PCOa9xei6b4JUSg0CSxwBm+EkyNAngFW9ARE6S3D19o9Ol5SeGUr1tFSVt4vX+xdl0OSz581Ksd4Q
=="
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
},
...
@@ -2667,63 +2667,63 @@
...
@@ -2667,63 +2667,63 @@
"System.Dynamic.Runtime/4.3.0"
:
{
"System.Dynamic.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag
=="
,
"sha512"
:
"sha512-
zxQXMykO4ZAptqREvoqNlbzdBz+SusbQqr8acRtXQGZ3wDyH+Mi6VFImuIyeFsPMkNLhNvk2xBzNHnY1Bi9zjQ
=="
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
},
},
"System.Globalization/4.3.0"
:
{
"System.Globalization/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg
=="
,
"sha512"
:
"sha512-
QsvKtsliUgA7KWLgXPibgflvlvg0r3g05jzNMwz5tvRg4ZPnRT8xtzr8CBCDdBVQs7x8qUcHvciUykA8bAo7jw
=="
,
"path"
:
"system.globalization/4.3.0"
,
"path"
:
"system.globalization/4.3.0"
,
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Calendars/4.3.0"
:
{
"System.Globalization.Calendars/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA
=="
,
"sha512"
:
"sha512-
AaI3lmNJGDhuQ2gvrcj1mL4mFMVNXQ+mQ4a4nMq+jiZk3tDJO6SShiteHoJ+tMAF8u4ipEF0oUHe8aL7hYiFxg
=="
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Extensions/4.3.0"
:
{
"System.Globalization.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ
=="
,
"sha512"
:
"sha512-
YTMfoFzh5xRVINlBLjD1b5quJPh9eMpFr4xg17wSRFnVz4IxKltD084XB1curpdQlrAsYjf1wIsf+ddlQl0HnA
=="
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
},
},
"System.IO/4.3.0"
:
{
"System.IO/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg
=="
,
"sha512"
:
"sha512-
lHnCA1CwGlY3hbvMSgRrjGLpj6XJKvvrZ4I/0IFV+CrjPXorggUMrdjFWzWMngdWbYQMYIE3sCatHKInWtMBTQ
=="
,
"path"
:
"system.io/4.3.0"
,
"path"
:
"system.io/4.3.0"
,
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression/4.3.0"
:
{
"System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg
=="
,
"sha512"
:
"sha512-
S2tSQT+SjN1MIbKlgqmkowPHD384bX1O1U7vbg+RDMQVLWNUqqOCADy4y/lGkLFwj6P4MfVoukR6HKm3HjmH9w
=="
,
"path"
:
"system.io.compression/4.3.0"
,
"path"
:
"system.io.compression/4.3.0"
,
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression.ZipFile/4.3.0"
:
{
"System.IO.Compression.ZipFile/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg
=="
,
"sha512"
:
"sha512-
SapbBchwyGYdnkT1vtLcKSJHHtQ8r8qhsJ7NTMwK9WQijD7y73L9OTf75iGIAHS7RCZbAyBefsSvHw6RmUEjZQ
=="
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem/4.3.0"
:
{
"System.IO.FileSystem/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTd
A=="
,
"sha512"
:
"sha512-
Uoayf21U2TOqHjRz1/nxbVvanOaOkisgy8bZLwJUPeloZLiS7TL+t2/doDWQ4Wzq1Xc5qmwtmR3GpRUgh9s5U
A=="
,
"path"
:
"system.io.filesystem/4.3.0"
,
"path"
:
"system.io.filesystem/4.3.0"
,
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw
=="
,
"sha512"
:
"sha512-
qCnhqnKBWOop9amxE4FdfIdhnrHk2nXp/Vbn5ea1/vGXgvA+IrqI/YRSP0TB00ajXKOrZTthyhRwmNx2YFtKNA
=="
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2737,14 +2737,14 @@
...
@@ -2737,14 +2737,14 @@
"System.Linq/4.3.0"
:
{
"System.Linq/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw
=="
,
"sha512"
:
"sha512-
/OIh4dHw7pUiq4t06EMVZOL3DhQY+1wCtjiUHZwFmm83cnpwTv6hKNtULiMP8Q26HYXOx7u3d+AY0IzYPGxOtQ
=="
,
"path"
:
"system.linq/4.3.0"
,
"path"
:
"system.linq/4.3.0"
,
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
},
},
"System.Linq.Expressions/4.3.0"
:
{
"System.Linq.Expressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg
=="
,
"sha512"
:
"sha512-
0jD/FCSXymfWCrk0UAR9Q2wmNk3VJ0f28ECpZdw2Dj56e4gYrdduDxrMZKCDu8oDJJSFGUIcuXT6cDodrd4wVQ
=="
,
"path"
:
"system.linq.expressions/4.3.0"
,
"path"
:
"system.linq.expressions/4.3.0"
,
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
},
},
...
@@ -2758,7 +2758,7 @@
...
@@ -2758,7 +2758,7 @@
"System.Net.Http/4.3.0"
:
{
"System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEw
A=="
,
"sha512"
:
"sha512-
Yp04JL85F38LQzElsET91QqJsNQm+BHOZ5PR8IHpi+yM8KBIOVc8RkZXrRYtmDw/4Pu0zxqNKupI9xNUkuZv7
A=="
,
"path"
:
"system.net.http/4.3.0"
,
"path"
:
"system.net.http/4.3.0"
,
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
},
},
...
@@ -2772,84 +2772,84 @@
...
@@ -2772,84 +2772,84 @@
"System.Net.Primitives/4.3.0"
:
{
"System.Net.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA
=="
,
"sha512"
:
"sha512-
BZYIpCiPjW/UhJ5sir6sU3qtLD/0NuAsrUS0CUubAywpuDEPwTaKrN33OJ5FVpLO8aLqfCGRJQAjWgQvZHkbqg
=="
,
"path"
:
"system.net.primitives/4.3.0"
,
"path"
:
"system.net.primitives/4.3.0"
,
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
},
},
"System.Net.Sockets/4.3.0"
:
{
"System.Net.Sockets/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw
=="
,
"sha512"
:
"sha512-
JS4gfkz7iImQFscfYrIHeEGNyttsC7pjBtdpglbvVO15VrvOa1jaIEeCnopKNrI/XCJWihhbYNgdLNm5v4CFKA
=="
,
"path"
:
"system.net.sockets/4.3.0"
,
"path"
:
"system.net.sockets/4.3.0"
,
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
},
},
"System.ObjectModel/4.3.0"
:
{
"System.ObjectModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ
=="
,
"sha512"
:
"sha512-
eASwOXeVD6d04alRZz9htFleUhFGAm9QT9pU71FCUvew58ojSGQ91OpK753Qv0LdqeUk6Oskqs4LZHaY6OCxhw
=="
,
"path"
:
"system.objectmodel/4.3.0"
,
"path"
:
"system.objectmodel/4.3.0"
,
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
},
},
"System.Reflection/4.3.0"
:
{
"System.Reflection/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ
=="
,
"sha512"
:
"sha512-
/U196t6BR0QGPIodNy1kESvR1co1pW6fhtNZXyOIrers7dpk4+sHvuQjOfZq++KhcpTVZYAttknYEpLBrqn1Bw
=="
,
"path"
:
"system.reflection/4.3.0"
,
"path"
:
"system.reflection/4.3.0"
,
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit/4.3.0"
:
{
"System.Reflection.Emit/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg
=="
,
"sha512"
:
"sha512-
GCAFZkuA/6JuYqVQIpDh1+DNdPZ9cfUY7NvAnQ0DBs3avOZVNVTRIhqZE1eIMu+Qj7sF4U+eRxW0gSfV6hQAgQ
=="
,
"path"
:
"system.reflection.emit/4.3.0"
,
"path"
:
"system.reflection.emit/4.3.0"
,
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng
=="
,
"sha512"
:
"sha512-
/fyzpXnU506v9HfSpaTSGSPnJWFg4b8t0nbKHNwJ5LFquvJAtND6td2Cpp+Ek1OLRuR0WxJ+YCB6ZW2GyvpBZQ
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA
=="
,
"sha512"
:
"sha512-
FX/zDlUSbxIwBM3ePmXoFfeiEPXRqwtoDH12velyRYhTv41pmM3fKLWL2vceLrJ1kOZTKFjHScPz+j3arI2p7g
=="
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Extensions/4.3.0"
:
{
"System.Reflection.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQN
Q=="
,
"sha512"
:
"sha512-
gfClVzHQcT0eY3qSVcMI6cQxwRmjFQfIrINEpBJMA6ftlNIhO/H8/e6V78YzX+0z7Bw2VJFJP4G7oIcbO32ol
Q=="
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Primitives/4.3.0"
:
{
"System.Reflection.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlI
A=="
,
"sha512"
:
"sha512-
uln4id8a086oqZBDylX/0jTZQ8qkoAdTjI1ZkUieD+nJkH9qQfRxCWSNCe2W0qVyRiQZe+iKerY5T5dtOyYcX
A=="
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
},
},
"System.Reflection.TypeExtensions/4.3.0"
:
{
"System.Reflection.TypeExtensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA
=="
,
"sha512"
:
"sha512-
ER4elwccfGOYXV69hI3W3nCwMelkAtu3VSs8lhHfE0EjqW5qG8qmv9lbhCdKOEWwI4B/LlXCbsyo38nGYY1Bnw
=="
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
},
"System.Resources.ResourceManager/4.3.0"
:
{
"System.Resources.ResourceManager/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A
=="
,
"sha512"
:
"sha512-
AN3tKJp9LAOcCA9l+sm67HYGSAhMIWApcLYl6U6yuB9/7U8vybia7BhPUWvlO9D1Bojqhh7fQs4KWYoHLG+Jyw
=="
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
},
"System.Runtime/4.3.0"
:
{
"System.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhi
w=="
,
"sha512"
:
"sha512-
R7ADy3PoW/NP1vgBNBlitlNxZm9OjzlHnPAyY0xvrcJjyh3PqrcDbRErvZwR5TRZxgMnaBT0hZRpHS4EHXzKL
w=="
,
"path"
:
"system.runtime/4.3.0"
,
"path"
:
"system.runtime/4.3.0"
,
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
},
},
...
@@ -2863,35 +2863,35 @@
...
@@ -2863,35 +2863,35 @@
"System.Runtime.Extensions/4.3.0"
:
{
"System.Runtime.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g
=="
,
"sha512"
:
"sha512-
KqXVl/pu190dAwqKc8fczs34LdLeNEuH69NmCTKmKoN8y1fcxapVIEtrbUVTebiyO2r66m/VP5HaPLU0ejzP6w
=="
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Handles/4.3.0"
:
{
"System.Runtime.Handles/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVg
g=="
,
"sha512"
:
"sha512-
yDJvHNMQNLHqvBxK63gK5/TrEbNuaZJkBTHapyiq8FwQycDoWlHwSWPqzcpbDnNH3adqL1AV+3Crpuye5Q+QN
g=="
,
"path"
:
"system.runtime.handles/4.3.0"
,
"path"
:
"system.runtime.handles/4.3.0"
,
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices/4.3.0"
:
{
"System.Runtime.InteropServices/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ
=="
,
"sha512"
:
"sha512-
HU/IH6woK1FxbYPBBvVADidlk74DZIFlXgk7VTxmsrlNjS9mq9biwgq25YgMvqRllCFtvuNEKcK6zVcMj8S/jA
=="
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw
=="
,
"sha512"
:
"sha512-
AwOv0R98WGNhdLNFQGvC027YvE4VUsTmDnkSAoxLUcZVrW/KSXCdeevtBdDuP8JvlSy2MoBaEkI45vdwoxYjxQ
=="
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Numerics/4.3.0"
:
{
"System.Runtime.Numerics/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ
=="
,
"sha512"
:
"sha512-
fbmlkJiM9SEw6chayUoKRdBP7DOXObYAxP7d4xuKk6PU8nClgrf4LGPo/Nd3cqXD0+Uvs5G3fxyS8vrAfRrIAg
=="
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
},
},
...
@@ -2905,42 +2905,42 @@
...
@@ -2905,42 +2905,42 @@
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg
=="
,
"sha512"
:
"sha512-
NG72ASyDyPOSIimdioqz0fI9GQckfzbPvQvEQxuIQKLQ0SacMyQRLWPIre2f6i5P8bhEKO7yKX5nZ0a8dL+33w
=="
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Cng/4.3.0"
:
{
"System.Security.Cryptography.Cng/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g
=="
,
"sha512"
:
"sha512-
eew12RoETmll8EN7kEzW7y9jZVbhD/JC5LASxkjrfPesTNQnZMZeeGwV+EY+VqKf2s15IcdI/MUiaN5b+IDueA
=="
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Csp/4.3.0"
:
{
"System.Security.Cryptography.Csp/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA
=="
,
"sha512"
:
"sha512-
kCLk/d0VSgm6jjp4vgJUM77z/+BAUkNt5JvQxs+vQm6RZjYSmmluxWdeI30B8js9rc5ja978s6RYZwoNiJDd9g
=="
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw
=="
,
"sha512"
:
"sha512-
LJJnwE5qD790h2DPHhlXsmlewEmg2xZducxHhNpoWrk9rNDb71HSKMJpioCJ3hCBtQeDSCsj6uhUeipQ8KS9qA
=="
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w
=="
,
"sha512"
:
"sha512-
8+yrkPIQ7N9oxskjATGoYWqNyPdyXqeN08jRQfdybm2TCyObj81iz/zSytiozBSf8GDpNOfiQ4DqAT9t4zfP5g
=="
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg
=="
,
"sha512"
:
"sha512-
hFqAVt9OsfH5loeAlpDj+apYs+RzUdmaI19+f2Cq78Vn1bCvVZxEzrECKJH4iD6foRCpIQCwQ/inxz8KKg7XCw
=="
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2954,7 +2954,7 @@
...
@@ -2954,7 +2954,7 @@
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw
=="
,
"sha512"
:
"sha512-
G15jaQeTp4XU5A3TI+CiJKhji49hqjZSNbz+R0V2dY7hT6gR4zLpEASYqH3m51JTZtmRx0WhBYxbx13OaQuBFA
=="
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
},
...
@@ -2975,7 +2975,7 @@
...
@@ -2975,7 +2975,7 @@
"System.Text.Encoding/4.3.0"
:
{
"System.Text.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZ
w=="
,
"sha512"
:
"sha512-
9+kKiGF7iM11HWsWhHv0bJaY3DdabXRK3A0LAu4RES+F0qf/G9OK2xrzaLVOFXjykQw0V9+y5XBbsTrBgU1C5
w=="
,
"path"
:
"system.text.encoding/4.3.0"
,
"path"
:
"system.text.encoding/4.3.0"
,
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
},
},
...
@@ -2989,7 +2989,7 @@
...
@@ -2989,7 +2989,7 @@
"System.Text.Encoding.Extensions/4.3.0"
:
{
"System.Text.Encoding.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw
=="
,
"sha512"
:
"sha512-
vnL/fBuhf/rHeEsYpSIx14QsU8DLXtoekPCSTeZN4RO3pVweHpnwlGN7Hgs75yY6TVtcYob7za8dufR/wG8WOA
=="
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
},
...
@@ -3010,14 +3010,14 @@
...
@@ -3010,14 +3010,14 @@
"System.Text.RegularExpressions/4.3.0"
:
{
"System.Text.RegularExpressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA
=="
,
"sha512"
:
"sha512-
Cs0QoguH5Uw4d66xuhgS/X4Tjm/Mncged1C2fGRXdhPJr9pUhbir59lm40f/RZsxQLL19efaeedWQbtpJryfAg
=="
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
},
},
"System.Threading/4.3.0"
:
{
"System.Threading/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpI
w=="
,
"sha512"
:
"sha512-
GUdTRQI5b7tP+bxn0wb1H2urT4gVyZmAMAiAsmExO8xGfxbVYnJnaErE1Qz/K1TL/lpymoQUwgaqj8295vHK+
w=="
,
"path"
:
"system.threading/4.3.0"
,
"path"
:
"system.threading/4.3.0"
,
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
},
},
...
@@ -3031,7 +3031,7 @@
...
@@ -3031,7 +3031,7 @@
"System.Threading.Tasks/4.3.0"
:
{
"System.Threading.Tasks/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXi
A=="
,
"sha512"
:
"sha512-
KlMDBDsVbQ/dfjAKi23D1QMSDRE4SmlEXatGsgBmDXZ1dqpnLdJOe/NVyc9Dt2T6Adgo6pBJSucmn/QTj6JWd
A=="
,
"path"
:
"system.threading.tasks/4.3.0"
,
"path"
:
"system.threading.tasks/4.3.0"
,
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
},
},
...
@@ -3059,7 +3059,7 @@
...
@@ -3059,7 +3059,7 @@
"System.Threading.Timer/4.3.0"
:
{
"System.Threading.Timer/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ
=="
,
"sha512"
:
"sha512-
N9AzP8dUwPxMhg2jh33pV8bOVms5HkXoTWsm/mnfRYPOy842yZkaqTFyz1qEDqneksg8qzSEA2JPnZNqIe68Kg
=="
,
"path"
:
"system.threading.timer/4.3.0"
,
"path"
:
"system.threading.timer/4.3.0"
,
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
},
},
...
@@ -3073,14 +3073,14 @@
...
@@ -3073,14 +3073,14 @@
"System.Xml.ReaderWriter/4.3.0"
:
{
"System.Xml.ReaderWriter/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA
=="
,
"sha512"
:
"sha512-
e9D+WUChqF7SZDcRYiH+NNxXeP5eTKbbvwhnAhs4s5mLcXvGOVR7IynsDxI87hzUwihj6xMx23S4SiLLOUL7kg
=="
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
},
},
"System.Xml.XDocument/4.3.0"
:
{
"System.Xml.XDocument/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ
=="
,
"sha512"
:
"sha512-
gUE7UkiymHpxEDSWJ2oiycH43yvGk51NHzbY7Ub7ZIEFPh6oi5HjWatH4bJc2IeBQhOeRZ/akadnr0YEXH6wZA
=="
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
},
},
...
@@ -3094,7 +3094,7 @@
...
@@ -3094,7 +3094,7 @@
"System.Xml.XPath/4.0.1"
:
{
"System.Xml.XPath/4.0.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA
=="
,
"sha512"
:
"sha512-
7lq2TCqxJ+6eIDZOc7HBVN6TcX4HzuO11O0wuS7XZprAMvxVCqTZQoDArlEglmo2yvTIDKtGYQ3ByIIDZx7bIQ
=="
,
"path"
:
"system.xml.xpath/4.0.1"
,
"path"
:
"system.xml.xpath/4.0.1"
,
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
},
},
...
...
Edu.Module.Log/Edu.Module.Log.csproj
0 → 100644
View file @
aa887a90
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
</ItemGroup>
</Project>
Edu.
LogModule
/UserChangeLogModule.cs
→
Edu.
Module.Log
/UserChangeLogModule.cs
View file @
aa887a90
...
@@ -4,7 +4,7 @@ using System;
...
@@ -4,7 +4,7 @@ using System;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Text
;
using
System.Text
;
namespace
Edu.
LogModule
namespace
Edu.
Module.Log
{
{
public
class
UserChangeLogModule
public
class
UserChangeLogModule
{
{
...
@@ -32,5 +32,27 @@ namespace Edu.LogModule
...
@@ -32,5 +32,27 @@ namespace Edu.LogModule
{
{
return
changeLogRepository
.
Insert
(
extModel
)
>
0
;
return
changeLogRepository
.
Insert
(
extModel
)
>
0
;
}
}
/// <summary>
/// 新增日志
/// </summary>
/// <param name="CreateBy">创建人</param>
/// <param name="GroupId">集团编号</param>
/// <param name="SchoolId">校区编号</param>
/// <param name="content">日志内容</param>
/// <returns></returns>
public
bool
SetUserChangeLogModule
(
int
CreateBy
,
int
GroupId
,
int
SchoolId
,
string
content
)
{
RB_User_ChangeLog_ViewModel
model
=
new
RB_User_ChangeLog_ViewModel
()
{
Id
=
0
,
CreateBy
=
CreateBy
,
CreateTime
=
DateTime
.
Now
,
Group_Id
=
GroupId
,
School_Id
=
SchoolId
,
LogContent
=
content
};
return
changeLogRepository
.
Insert
(
model
);
}
}
}
}
}
Edu.Module.User/DepartmentModule.cs
View file @
aa887a90
...
@@ -141,11 +141,29 @@ namespace Edu.Module.User
...
@@ -141,11 +141,29 @@ namespace Edu.Module.User
{
{
deptList
=
new
List
<
RB_Department_ViewModel
>();
deptList
=
new
List
<
RB_Department_ViewModel
>();
}
}
//校区部门
List
<
DepartmentTree_ViewModel
>
schoolDeptList
=
new
List
<
DepartmentTree_ViewModel
>();
if
(
schoolList
!=
null
)
{
foreach
(
var
item
in
schoolList
)
{
DepartmentTree_ViewModel
tModel
=
new
DepartmentTree_ViewModel
()
{
DeptId
=
item
.
SId
+
item
.
Group_Id
,
DeptName
=
item
.
SName
,
ParentId
=
item
.
Dept_Id
,
ChildList
=
new
List
<
DepartmentTree_ViewModel
>()
};
tModel
.
ChildList
=
GetDeptTreeList
(
0
,
deptList
.
Where
(
qitem
=>
qitem
.
School_Id
>
0
).
ToList
(),
SchoolId
:
item
.
SId
,
null
);
schoolDeptList
.
Add
(
tModel
);
}
}
List
<
DepartmentTree_ViewModel
>
list
=
new
List
<
DepartmentTree_ViewModel
>();
List
<
DepartmentTree_ViewModel
>
list
=
new
List
<
DepartmentTree_ViewModel
>();
if
(
deptList
!=
null
&&
deptList
.
Count
>
0
)
if
(
deptList
!=
null
&&
deptList
.
Count
>
0
)
{
{
var
firstList
=
deptList
.
Where
(
qitem
=>
qitem
.
ParentId
==
0
).
ToList
();
var
firstList
=
deptList
.
Where
(
qitem
=>
qitem
.
ParentId
==
0
&&
qitem
.
School_Id
==
0
).
ToList
();
if
(
firstList
!=
null
&&
firstList
.
Count
>
0
)
if
(
firstList
!=
null
&&
firstList
.
Count
>
0
)
{
{
foreach
(
var
fItem
in
firstList
)
foreach
(
var
fItem
in
firstList
)
...
@@ -157,7 +175,15 @@ namespace Edu.Module.User
...
@@ -157,7 +175,15 @@ namespace Edu.Module.User
ParentId
=
fItem
.
ParentId
,
ParentId
=
fItem
.
ParentId
,
ChildList
=
new
List
<
DepartmentTree_ViewModel
>()
ChildList
=
new
List
<
DepartmentTree_ViewModel
>()
};
};
tModel
.
ChildList
=
GetDeptTreeList
(
fItem
.
DeptId
,
deptList
);
tModel
.
ChildList
=
GetDeptTreeList
(
fItem
.
DeptId
,
deptList
.
Where
(
qitem
=>
qitem
.
School_Id
==
0
).
ToList
(),
SchoolId
:
0
,
schoolDeptList
);
if
(
schoolDeptList
!=
null
)
{
var
newSchoolDeptList
=
schoolDeptList
.
Where
(
qitem
=>
qitem
.
DeptId
==
fItem
.
DeptId
)?.
ToList
();
if
(
newSchoolDeptList
!=
null
&&
newSchoolDeptList
.
Count
>
0
)
{
tModel
.
ChildList
.
AddRange
(
newSchoolDeptList
);
}
}
list
.
Add
(
tModel
);
list
.
Add
(
tModel
);
}
}
}
}
...
@@ -165,15 +191,19 @@ namespace Edu.Module.User
...
@@ -165,15 +191,19 @@ namespace Edu.Module.User
return
list
;
return
list
;
}
}
/// <summary>
/// <summary>
/// 递归生成树形结构
/// 递归生成树形结构
/// </summary>
/// </summary>
/// <param name="parentId">父节点编号</param>
/// <param name="parentId">父节点编号</param>
/// <param name="sourceList">数据源列表</param>
/// <param name="sourceList">数据源列表</param>
private
List
<
DepartmentTree_ViewModel
>
GetDeptTreeList
(
int
parentId
,
List
<
RB_Department_ViewModel
>
sourceList
)
private
List
<
DepartmentTree_ViewModel
>
GetDeptTreeList
(
int
parentId
,
List
<
RB_Department_ViewModel
>
sourceList
,
int
SchoolId
=
0
,
List
<
DepartmentTree_ViewModel
>
schoolDeptList
=
null
)
{
{
List
<
DepartmentTree_ViewModel
>
treeList
=
new
List
<
DepartmentTree_ViewModel
>();
List
<
DepartmentTree_ViewModel
>
treeList
=
new
List
<
DepartmentTree_ViewModel
>();
foreach
(
var
item
in
sourceList
.
Where
(
qitem
=>
qitem
.
ParentId
==
parentId
))
foreach
(
var
item
in
sourceList
.
Where
(
qitem
=>
qitem
.
ParentId
==
parentId
&&
qitem
.
School_Id
==
SchoolId
))
{
{
DepartmentTree_ViewModel
model
=
new
DepartmentTree_ViewModel
()
DepartmentTree_ViewModel
model
=
new
DepartmentTree_ViewModel
()
{
{
...
@@ -182,7 +212,15 @@ namespace Edu.Module.User
...
@@ -182,7 +212,15 @@ namespace Edu.Module.User
ParentId
=
item
.
ParentId
,
ParentId
=
item
.
ParentId
,
ChildList
=
new
List
<
DepartmentTree_ViewModel
>(),
ChildList
=
new
List
<
DepartmentTree_ViewModel
>(),
};
};
model
.
ChildList
=
GetDeptTreeList
(
item
.
DeptId
,
sourceList
);
model
.
ChildList
=
GetDeptTreeList
(
item
.
DeptId
,
sourceList
,
SchoolId
,
schoolDeptList
);
if
(
schoolDeptList
!=
null
)
{
var
newSchoolDeptList
=
schoolDeptList
.
Where
(
qitem
=>
qitem
.
ParentId
==
item
.
DeptId
)?.
ToList
();
if
(
newSchoolDeptList
!=
null
)
{
model
.
ChildList
.
AddRange
(
newSchoolDeptList
);
}
}
treeList
.
Add
(
model
);
treeList
.
Add
(
model
);
}
}
return
treeList
;
return
treeList
;
...
...
Edu.Module.User/Edu.Module.User.csproj
View file @
aa887a90
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
<ProjectReference Include="..\Edu.Aop\Edu.Aop.csproj" />
<ProjectReference Include="..\Edu.Aop\Edu.Aop.csproj" />
<ProjectReference Include="..\Edu.Common\Edu.Common.csproj" />
<ProjectReference Include="..\Edu.Common\Edu.Common.csproj" />
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Module.Log\Edu.Module.Log.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
</ItemGroup>
</ItemGroup>
...
...
Edu.Module.User/ManagerModule.cs
View file @
aa887a90
using
Edu.AOP.CustomerAttribute
;
using
Edu.AOP.CustomerAttribute
;
using
Edu.Common.Enum
;
using
Edu.Common.Enum
;
using
Edu.Common.Enum.User
;
using
Edu.Common.Enum.User
;
using
Edu.Common.Plugin
;
using
Edu.Model.CacheModel
;
using
Edu.Model.CacheModel
;
using
Edu.Model.ViewModel.User
;
using
Edu.Model.ViewModel.User
;
using
Edu.Module.Log
;
using
Edu.Repository.User
;
using
Edu.Repository.User
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
...
@@ -36,6 +38,11 @@ namespace Edu.Module.User
...
@@ -36,6 +38,11 @@ namespace Edu.Module.User
/// </summary>
/// </summary>
private
readonly
RB_DepartmentRepository
departmentRepository
=
new
RB_DepartmentRepository
();
private
readonly
RB_DepartmentRepository
departmentRepository
=
new
RB_DepartmentRepository
();
/// <summary>
/// 用户信息日志处理类对象
/// </summary>
private
readonly
UserChangeLogModule
userChangeLogModule
=
new
UserChangeLogModule
();
/// <summary>
/// <summary>
/// 获取管理者列表
/// 获取管理者列表
/// </summary>
/// </summary>
...
@@ -56,13 +63,13 @@ namespace Edu.Module.User
...
@@ -56,13 +63,13 @@ namespace Edu.Module.User
/// <returns></returns>
/// <returns></returns>
public
List
<
AdminEmp_ViewModel
>
GetAdminEmpPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
AdminEmp_ViewModel
query
)
public
List
<
AdminEmp_ViewModel
>
GetAdminEmpPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
AdminEmp_ViewModel
query
)
{
{
var
list
=
managerRepository
.
GetAdminEmpPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
var
list
=
managerRepository
.
GetAdminEmpPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
if
(
list
!=
null
&&
list
.
Count
>
0
)
if
(
list
!=
null
&&
list
.
Count
>
0
)
{
{
string
postIds
=
string
.
Join
(
","
,
list
.
Where
(
qitem
=>
qitem
.
Post_Id
>
0
).
Select
(
qitem
=>
qitem
.
Post_Id
));
string
postIds
=
string
.
Join
(
","
,
list
.
Where
(
qitem
=>
qitem
.
Post_Id
>
0
).
Select
(
qitem
=>
qitem
.
Post_Id
));
foreach
(
var
item
in
list
)
foreach
(
var
item
in
list
)
{
{
}
}
}
}
return
list
;
return
list
;
...
@@ -76,8 +83,10 @@ namespace Edu.Module.User
...
@@ -76,8 +83,10 @@ namespace Edu.Module.User
public
bool
SetManagerModule
(
RB_Manager_ViewModel
model
)
public
bool
SetManagerModule
(
RB_Manager_ViewModel
model
)
{
{
bool
flag
;
bool
flag
;
if
(
model
.
MId
>
0
)
if
(
model
.
MId
>
0
)
{
{
var
oldModel
=
GetManagerModule
(
model
.
MId
);
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
{
nameof
(
RB_Manager_ViewModel
.
MName
),
model
.
MName
.
Trim
()},
{
nameof
(
RB_Manager_ViewModel
.
MName
),
model
.
MName
.
Trim
()},
...
@@ -87,7 +96,71 @@ namespace Edu.Module.User
...
@@ -87,7 +96,71 @@ namespace Edu.Module.User
{
nameof
(
RB_Manager_ViewModel
.
UpdateTime
),
model
.
UpdateTime
},
{
nameof
(
RB_Manager_ViewModel
.
UpdateTime
),
model
.
UpdateTime
},
{
nameof
(
RB_Manager_ViewModel
.
Dept_Id
),
model
.
Dept_Id
},
{
nameof
(
RB_Manager_ViewModel
.
Dept_Id
),
model
.
Dept_Id
},
{
nameof
(
RB_Manager_ViewModel
.
Post_Id
),
model
.
Post_Id
},
{
nameof
(
RB_Manager_ViewModel
.
Post_Id
),
model
.
Post_Id
},
{
nameof
(
RB_Manager_ViewModel
.
IDCard
),
model
.
IDCard
},
{
nameof
(
RB_Manager_ViewModel
.
Sex
),
model
.
Sex
},
{
nameof
(
RB_Manager_ViewModel
.
EntryTime
),
model
.
EntryTime
},
{
nameof
(
RB_Manager_ViewModel
.
Address
),
model
.
Address
},
{
nameof
(
RB_Manager_ViewModel
.
BirthDate
),
model
.
BirthDate
},
{
nameof
(
RB_Manager_ViewModel
.
LeaveStatus
),
model
.
LeaveStatus
},
{
nameof
(
RB_Manager_ViewModel
.
LeaveTime
),
model
.
LeaveTime
},
{
nameof
(
RB_Manager_ViewModel
.
Education
),
model
.
Education
},
};
};
string
logContent
=
""
;
if
(
model
.
MName
!=
oldModel
.
MName
)
{
logContent
+=
string
.
Format
(
",将姓名由【{0}】修改为【{1}】。"
,
oldModel
.
MName
,
oldModel
.
MName
);
}
if
(
model
.
MTel
!=
oldModel
.
MTel
)
{
logContent
+=
string
.
Format
(
",将电话由【{0}】修改为【{1}】。"
,
oldModel
.
MTel
,
oldModel
.
MTel
);
}
if
(
model
.
Dept_Id
!=
oldModel
.
Dept_Id
)
{
var
deptList
=
departmentRepository
.
GetDepartmentListRepository
(
new
RB_Department_ViewModel
()
{
QDeptIds
=
model
.
Dept_Id
+
","
+
oldModel
.
Dept_Id
});
logContent
+=
string
.
Format
(
",将部门由【{0}】修改为【{1}】。"
,
(
deptList
.
Where
(
qitem
=>
qitem
.
DeptId
==
oldModel
.
Dept_Id
)?.
FirstOrDefault
()?.
DeptName
??
""
),
(
deptList
.
Where
(
qitem
=>
qitem
.
DeptId
==
model
.
Dept_Id
)?.
FirstOrDefault
()?.
DeptName
??
""
));
}
if
(
model
.
Post_Id
!=
oldModel
.
Post_Id
)
{
var
postList
=
postRepository
.
GetPostListRepository
(
new
RB_Post_ViewModel
()
{
QPostIds
=
model
.
Post_Id
+
","
+
oldModel
.
Post_Id
});
logContent
+=
string
.
Format
(
",将岗位由【{0}】修改为【{1}】。"
,
(
postList
.
Where
(
qitem
=>
qitem
.
PostId
==
oldModel
.
Post_Id
)?.
FirstOrDefault
()?.
PostName
??
""
),
(
postList
.
Where
(
qitem
=>
qitem
.
PostId
==
model
.
Post_Id
)?.
FirstOrDefault
()?.
PostName
??
""
));
}
if
(
model
.
IDCard
!=
oldModel
.
IDCard
)
{
logContent
+=
string
.
Format
(
",将身份证由【{0}】修改为【{1}】。"
,
oldModel
.
IDCard
,
model
.
IDCard
);
}
if
(
model
.
Sex
!=
oldModel
.
Sex
)
{
logContent
+=
string
.
Format
(
",将性别由【{0}】修改为【{1}】。"
,
oldModel
.
Sex
,
model
.
Sex
);
}
if
(
model
.
EntryTime
!=
oldModel
.
EntryTime
)
{
logContent
+=
string
.
Format
(
",将入职时间由【{0}】修改为【{1}】。"
,
oldModel
.
EntryTime
,
model
.
EntryTime
);
}
if
(
model
.
Address
!=
oldModel
.
Address
)
{
logContent
+=
string
.
Format
(
",将地址由【{0}】修改为【{1}】。"
,
oldModel
.
Address
,
model
.
Address
);
}
if
(
model
.
BirthDate
!=
oldModel
.
BirthDate
)
{
logContent
+=
string
.
Format
(
",将生日由【{0}】修改为【{1}】。"
,
Common
.
ConvertHelper
.
FormatDate
(
oldModel
.
BirthDate
),
Common
.
ConvertHelper
.
FormatDate
(
model
.
BirthDate
));
}
if
(
model
.
LeaveStatus
!=
oldModel
.
LeaveStatus
)
{
logContent
+=
string
.
Format
(
",将在职状态由【{0}】修改为【{1}】。"
,
oldModel
.
LeaveStatus
.
ToName
(),
model
.
LeaveStatus
.
ToName
());
}
if
(
model
.
LeaveTime
!=
oldModel
.
LeaveTime
)
{
logContent
+=
string
.
Format
(
",将离职时间由【{0}】修改为【{1}】。"
,
oldModel
?.
LeaveTime
,
model
.
LeaveTime
);
}
if
(
model
.
Education
!=
oldModel
.
Education
)
{
logContent
+=
string
.
Format
(
",将学历由【{0}】修改为【{1}】。"
,
oldModel
.
Education
.
ToName
(),
model
.
Education
.
ToName
());
}
if
(!
string
.
IsNullOrEmpty
(
logContent
))
{
//新增日志
userChangeLogModule
.
SetUserChangeLogModule
(
model
.
CreateBy
,
model
.
Group_Id
,
model
.
School_Id
,
logContent
);
}
flag
=
managerRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Manager_ViewModel
.
MId
),
model
.
MId
));
flag
=
managerRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Manager_ViewModel
.
MId
),
model
.
MId
));
}
}
else
else
...
@@ -95,6 +168,7 @@ namespace Edu.Module.User
...
@@ -95,6 +168,7 @@ namespace Edu.Module.User
var
newId
=
managerRepository
.
Insert
(
model
);
var
newId
=
managerRepository
.
Insert
(
model
);
model
.
MId
=
newId
;
model
.
MId
=
newId
;
flag
=
newId
>
0
;
flag
=
newId
>
0
;
userChangeLogModule
.
SetUserChangeLogModule
(
model
.
CreateBy
,
model
.
Group_Id
,
model
.
School_Id
,
"新建用户"
);
}
}
return
flag
;
return
flag
;
}
}
...
@@ -106,7 +180,8 @@ namespace Edu.Module.User
...
@@ -106,7 +180,8 @@ namespace Edu.Module.User
/// <returns></returns>
/// <returns></returns>
public
RB_Manager_ViewModel
GetManagerModule
(
int
MId
)
public
RB_Manager_ViewModel
GetManagerModule
(
int
MId
)
{
{
return
managerRepository
.
GetEntity
<
RB_Manager_ViewModel
>(
MId
);
var
extModel
=
managerRepository
.
GetEntity
<
RB_Manager_ViewModel
>(
MId
);
return
extModel
;
}
}
/// <summary>
/// <summary>
...
...
Edu.Module.User/bin/Release/netcoreapp3.0/Edu.Module.User.deps.json
View file @
aa887a90
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
"Edu.Aop"
:
"1.0.0"
,
"Edu.Aop"
:
"1.0.0"
,
"Edu.Common"
:
"1.0.0"
,
"Edu.Common"
:
"1.0.0"
,
"Edu.Model"
:
"1.0.0"
,
"Edu.Model"
:
"1.0.0"
,
"Edu.Module.Log"
:
"1.0.0"
,
"Edu.Repository"
:
"1.0.0"
"Edu.Repository"
:
"1.0.0"
},
},
"runtime"
:
{
"runtime"
:
{
...
@@ -1947,6 +1948,15 @@
...
@@ -1947,6 +1948,15 @@
"Edu.Model.dll"
:
{}
"Edu.Model.dll"
:
{}
}
}
},
},
"Edu.Module.Log/1.0.0"
:
{
"dependencies"
:
{
"Edu.Model"
:
"1.0.0"
,
"Edu.Repository"
:
"1.0.0"
},
"runtime"
:
{
"Edu.Module.Log.dll"
:
{}
}
},
"Edu.Repository/1.0.0"
:
{
"Edu.Repository/1.0.0"
:
{
"dependencies"
:
{
"dependencies"
:
{
"Edu.Common"
:
"1.0.0"
,
"Edu.Common"
:
"1.0.0"
,
...
@@ -2283,14 +2293,14 @@
...
@@ -2283,14 +2293,14 @@
"Microsoft.NETCore.Targets/1.1.0"
:
{
"Microsoft.NETCore.Targets/1.1.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg
=="
,
"sha512"
:
"sha512-
jtuKp4+ddUpehBOlmQJNWek/tXwXLeDAGtkkrHS1Qi6nOPmaLCuvDKFaqBu2c4DGKci+JMDUk4R+6jQ8P8l1aw
=="
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
},
"Microsoft.Win32.Primitives/4.3.0"
:
{
"Microsoft.Win32.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0Uunx
A=="
,
"sha512"
:
"sha512-
ZthhVqE8T07PsCHMAixDJJjmbdc07VO3GW8FULO+YWr/CmTLolwJoJdXRL/z2/4FAOtCJaJ/H+TPhtH2v1oaU
A=="
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2346,7 +2356,7 @@
...
@@ -2346,7 +2356,7 @@
"NETStandard.Library/1.6.1"
:
{
"NETStandard.Library/1.6.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A
=="
,
"sha512"
:
"sha512-
UQNdem5WY//vGStfYv8LFMcWvNTLxUocZ9YfGg4Ps2WaDerp+HrO46tDjQX88/wZaBkwv+Xq/mqjfPeMDz6QnQ
=="
,
"path"
:
"netstandard.library/1.6.1"
,
"path"
:
"netstandard.library/1.6.1"
,
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
},
},
...
@@ -2381,28 +2391,28 @@
...
@@ -2381,28 +2391,28 @@
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q
=="
,
"sha512"
:
"sha512-
uoCdP75em+GOf04ew/VTet4nr9h/uVMJkrAF9vgRXc4NV4c94R5bzL853tU/kjEfQEUn79aEzzL/ETNhLTasow
=="
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA
=="
,
"sha512"
:
"sha512-
h6SbWq7Fjz9udTUOzuhx1sLYBaIs9YmKpiAb17H9E0YYYIOknAusPKVGv1bExrka1WRtbnpTXpuoBfYU8zVH1w
=="
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-c
3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAK
w=="
,
"sha512"
:
"sha512-c
HH7MckuzKikSR6L6RrySZ2m2C9DDsse28va9U2bE2Op1KotonVDj8JB8qLlXC3jNrdH0SuHfZ4jsHpKuTT0i
w=="
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.native.System/4.3.0"
:
{
"runtime.native.System/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7J
w=="
,
"sha512"
:
"sha512-
S+nQhAdiCsSEeAqawUDCKvQl6sO501hZaT/8V49VpKGSNJQKZh0z2pw+TRDOo9LJv8yjCWMHypHgQBTEEUmw2
w=="
,
"path"
:
"runtime.native.system/4.3.0"
,
"path"
:
"runtime.native.system/4.3.0"
,
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
},
},
...
@@ -2416,84 +2426,84 @@
...
@@ -2416,84 +2426,84 @@
"runtime.native.System.IO.Compression/4.3.0"
:
{
"runtime.native.System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ
=="
,
"sha512"
:
"sha512-
ubimUZNWVWNbB55MO1Ev9uq66w2jmHgx4wNCaUHUs4G6qHPyGm5b0cV+zS2ai0aS9sO1e6StzJJ98OIhVQ2Oyw
=="
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Net.Http/4.3.0"
:
{
"runtime.native.System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg
=="
,
"sha512"
:
"sha512-
iTbzUFkAYPzlBjSNi4/tv6GWiw4c3D2mYScFgPgS5BUEO7K21AYXeIU7l8KtErqYEn/+DJ5FZLDDd9xMEASN4Q
=="
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ
3Q=="
,
"sha512"
:
"sha512-
5DyXXwEyil5vfxbfszS9HVXqMrPBsvZtTe1COwiDt4hfjp/yTFbACWb4JZ2IfYP+r+mb0pwobpBLQ5aW7qUv
3Q=="
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnr
w=="
,
"sha512"
:
"sha512-
fFcF1RvzmvWvBqBeyLa5MX/HO5cGe2Tef6uZnUKv0LJ0MwKhXensaDd48pXDgDLrHOCH9yLg8ENb6ppmgA/Up
w=="
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A
=="
,
"sha512"
:
"sha512-
y1X4xOQmneMsDwpkiRAzHI+PaH7eycMb1jIFU3bAb20Ks0l14ZSOx9HTHQviOtztYuLZ9shZNRJNvWVbJSIMpg
=="
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ
=="
,
"sha512"
:
"sha512-
vv4ZlH/xxDOrL3r5y76cdsmzlCS/yrOTs4xjGNwe1P57f0CkTQdzMz9dSHo4tWk9Eg4bA3DiVwVpVO+kqAEZQg
=="
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ
=="
,
"sha512"
:
"sha512-
FwiyAuPHsMyQVxhdC9NvJgnaYzEu0080It56MNVonOUX54ezZzafsjuSeRht8R4slkTDwU0laIXWuUEN7U6tTA
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g
=="
,
"sha512"
:
"sha512-
wH7IrGz1YyAPIt4nJXut7EyjQ5xgs2qc23YN0OiMCoA0i2OoAXgpNAPSl0QDjXB+CeKe+ZRnhGNeKfYBX1YdLw
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg
=="
,
"sha512"
:
"sha512-
WWabnawXg2BVm76El1mwkgzOljzAOK8YHe4AenFiKKDG8/nXs38RtInyrHcG2xNLrCLSfRwrhfS4RPAQH5E0ew
=="
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLr
Q=="
,
"sha512"
:
"sha512-
rBEA8wlrj/iZvNMyz/lksEz+ps3LknjwavzCG+23vm1WwLZWYIEoQIDi10pgXzgUROHC9j2ppoownmB9YzARm
Q=="
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A
=="
,
"sha512"
:
"sha512-
0DLUJpbpi+CthPVmOzA7bkNKwNuxvFi4V8sYsSYQuLuQbBAd462CHOrIMM29ivBeUsEvdtdAel+JZa4s9t6dFQ
=="
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg
=="
,
"sha512"
:
"sha512-
Tq1k9cfn9PGxTwX8QmWS9NQ9Rt4HS/r+i6SPe2R5cM9OO+RgWbRK0ExGGcZqjuqyzekHfHBYrW8sVUNvaZjw8w
=="
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
...
@@ -2556,7 +2566,7 @@
...
@@ -2556,7 +2566,7 @@
"System.AppContext/4.3.0"
:
{
"System.AppContext/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA
=="
,
"sha512"
:
"sha512-
do9UYqgS80R3NfDLsxXgAyv0w4y003ik6KmfYBpJ5CTBQb/K8ylQfrx7WlnXwvdmxj2kti2NKPv8/8nua54/ng
=="
,
"path"
:
"system.appcontext/4.3.0"
,
"path"
:
"system.appcontext/4.3.0"
,
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
},
},
...
@@ -2570,14 +2580,14 @@
...
@@ -2570,14 +2580,14 @@
"System.Collections/4.3.0"
:
{
"System.Collections/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw
=="
,
"sha512"
:
"sha512-
tfqWMsO3XZc72+g/jdFG2bdAErjOc/SlQBXa9+maU/TvZPu6Ew8a2HQOfLAuY8CVuqviTaeEu7ptsbxPB+8SaA
=="
,
"path"
:
"system.collections/4.3.0"
,
"path"
:
"system.collections/4.3.0"
,
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
},
},
"System.Collections.Concurrent/4.3.0"
:
{
"System.Collections.Concurrent/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ
=="
,
"sha512"
:
"sha512-
tRgZFvPa9jMS4qRluyUvD5Ll6gJeG5vG5UHWZ7nK83dOzpCux8pRuJY2TiPvoqx/anCRNEweVl+89ieenbnHHg
=="
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
},
},
...
@@ -2598,7 +2608,7 @@
...
@@ -2598,7 +2608,7 @@
"System.ComponentModel/4.3.0"
:
{
"System.ComponentModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw
=="
,
"sha512"
:
"sha512-
0WhdQqaBmYmIgmgADNmjTenYep1MsRO2qgATQiGkLVjinEfRBATw+OaMUTU3FQtUDxCyl2HNz789BpBCb9NcSQ
=="
,
"path"
:
"system.componentmodel/4.3.0"
,
"path"
:
"system.componentmodel/4.3.0"
,
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
},
},
...
@@ -2633,7 +2643,7 @@
...
@@ -2633,7 +2643,7 @@
"System.Console/4.3.0"
:
{
"System.Console/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg
=="
,
"sha512"
:
"sha512-
HyI4eNqHaD7sDyxN7eTC3MmVA34LrK86IgXY4bznqGgpJ52zrigum5ZZj0ZxD+Xbnwhix/cwgJazOstiKBP/LQ
=="
,
"path"
:
"system.console/4.3.0"
,
"path"
:
"system.console/4.3.0"
,
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
},
},
...
@@ -2647,7 +2657,7 @@
...
@@ -2647,7 +2657,7 @@
"System.Diagnostics.Debug/4.3.0"
:
{
"System.Diagnostics.Debug/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g
=="
,
"sha512"
:
"sha512-
3jTiSHr6dO9uSJAoUcH8Wg29Nc+cQHSmkkn9ul6a9HQhW0KboGrGLiHGCt2AXISFHK7YlGP0fzes2X6/gbpDgQ
=="
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
},
},
...
@@ -2668,7 +2678,7 @@
...
@@ -2668,7 +2678,7 @@
"System.Diagnostics.Tools/4.3.0"
:
{
"System.Diagnostics.Tools/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA
=="
,
"sha512"
:
"sha512-
uVam5oaDJ+lrCkzR5paF0bXKewt8/h8ZaX8xIqm48ypbpdpkp/EWM+uTegiUvraO3Fv+o3oj0cPtprJISNhXXQ
=="
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
},
},
...
@@ -2682,7 +2692,7 @@
...
@@ -2682,7 +2692,7 @@
"System.Diagnostics.Tracing/4.3.0"
:
{
"System.Diagnostics.Tracing/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw
=="
,
"sha512"
:
"sha512-
sRRUOGLj+PCOa9xei6b4JUSg0CSxwBm+EkyNAngFW9ARE6S3D19o9Ol5SeGUr1tFSVt4vX+xdl0OSz581Ksd4Q
=="
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
},
...
@@ -2696,63 +2706,63 @@
...
@@ -2696,63 +2706,63 @@
"System.Dynamic.Runtime/4.3.0"
:
{
"System.Dynamic.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag
=="
,
"sha512"
:
"sha512-
zxQXMykO4ZAptqREvoqNlbzdBz+SusbQqr8acRtXQGZ3wDyH+Mi6VFImuIyeFsPMkNLhNvk2xBzNHnY1Bi9zjQ
=="
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
},
},
"System.Globalization/4.3.0"
:
{
"System.Globalization/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg
=="
,
"sha512"
:
"sha512-
QsvKtsliUgA7KWLgXPibgflvlvg0r3g05jzNMwz5tvRg4ZPnRT8xtzr8CBCDdBVQs7x8qUcHvciUykA8bAo7jw
=="
,
"path"
:
"system.globalization/4.3.0"
,
"path"
:
"system.globalization/4.3.0"
,
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Calendars/4.3.0"
:
{
"System.Globalization.Calendars/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA
=="
,
"sha512"
:
"sha512-
AaI3lmNJGDhuQ2gvrcj1mL4mFMVNXQ+mQ4a4nMq+jiZk3tDJO6SShiteHoJ+tMAF8u4ipEF0oUHe8aL7hYiFxg
=="
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Extensions/4.3.0"
:
{
"System.Globalization.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ
=="
,
"sha512"
:
"sha512-
YTMfoFzh5xRVINlBLjD1b5quJPh9eMpFr4xg17wSRFnVz4IxKltD084XB1curpdQlrAsYjf1wIsf+ddlQl0HnA
=="
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
},
},
"System.IO/4.3.0"
:
{
"System.IO/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg
=="
,
"sha512"
:
"sha512-
lHnCA1CwGlY3hbvMSgRrjGLpj6XJKvvrZ4I/0IFV+CrjPXorggUMrdjFWzWMngdWbYQMYIE3sCatHKInWtMBTQ
=="
,
"path"
:
"system.io/4.3.0"
,
"path"
:
"system.io/4.3.0"
,
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression/4.3.0"
:
{
"System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg
=="
,
"sha512"
:
"sha512-
S2tSQT+SjN1MIbKlgqmkowPHD384bX1O1U7vbg+RDMQVLWNUqqOCADy4y/lGkLFwj6P4MfVoukR6HKm3HjmH9w
=="
,
"path"
:
"system.io.compression/4.3.0"
,
"path"
:
"system.io.compression/4.3.0"
,
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression.ZipFile/4.3.0"
:
{
"System.IO.Compression.ZipFile/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg
=="
,
"sha512"
:
"sha512-
SapbBchwyGYdnkT1vtLcKSJHHtQ8r8qhsJ7NTMwK9WQijD7y73L9OTf75iGIAHS7RCZbAyBefsSvHw6RmUEjZQ
=="
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem/4.3.0"
:
{
"System.IO.FileSystem/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTd
A=="
,
"sha512"
:
"sha512-
Uoayf21U2TOqHjRz1/nxbVvanOaOkisgy8bZLwJUPeloZLiS7TL+t2/doDWQ4Wzq1Xc5qmwtmR3GpRUgh9s5U
A=="
,
"path"
:
"system.io.filesystem/4.3.0"
,
"path"
:
"system.io.filesystem/4.3.0"
,
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw
=="
,
"sha512"
:
"sha512-
qCnhqnKBWOop9amxE4FdfIdhnrHk2nXp/Vbn5ea1/vGXgvA+IrqI/YRSP0TB00ajXKOrZTthyhRwmNx2YFtKNA
=="
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2766,14 +2776,14 @@
...
@@ -2766,14 +2776,14 @@
"System.Linq/4.3.0"
:
{
"System.Linq/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw
=="
,
"sha512"
:
"sha512-
/OIh4dHw7pUiq4t06EMVZOL3DhQY+1wCtjiUHZwFmm83cnpwTv6hKNtULiMP8Q26HYXOx7u3d+AY0IzYPGxOtQ
=="
,
"path"
:
"system.linq/4.3.0"
,
"path"
:
"system.linq/4.3.0"
,
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
},
},
"System.Linq.Expressions/4.3.0"
:
{
"System.Linq.Expressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg
=="
,
"sha512"
:
"sha512-
0jD/FCSXymfWCrk0UAR9Q2wmNk3VJ0f28ECpZdw2Dj56e4gYrdduDxrMZKCDu8oDJJSFGUIcuXT6cDodrd4wVQ
=="
,
"path"
:
"system.linq.expressions/4.3.0"
,
"path"
:
"system.linq.expressions/4.3.0"
,
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
},
},
...
@@ -2787,7 +2797,7 @@
...
@@ -2787,7 +2797,7 @@
"System.Net.Http/4.3.0"
:
{
"System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEw
A=="
,
"sha512"
:
"sha512-
Yp04JL85F38LQzElsET91QqJsNQm+BHOZ5PR8IHpi+yM8KBIOVc8RkZXrRYtmDw/4Pu0zxqNKupI9xNUkuZv7
A=="
,
"path"
:
"system.net.http/4.3.0"
,
"path"
:
"system.net.http/4.3.0"
,
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
},
},
...
@@ -2801,84 +2811,84 @@
...
@@ -2801,84 +2811,84 @@
"System.Net.Primitives/4.3.0"
:
{
"System.Net.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA
=="
,
"sha512"
:
"sha512-
BZYIpCiPjW/UhJ5sir6sU3qtLD/0NuAsrUS0CUubAywpuDEPwTaKrN33OJ5FVpLO8aLqfCGRJQAjWgQvZHkbqg
=="
,
"path"
:
"system.net.primitives/4.3.0"
,
"path"
:
"system.net.primitives/4.3.0"
,
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
},
},
"System.Net.Sockets/4.3.0"
:
{
"System.Net.Sockets/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw
=="
,
"sha512"
:
"sha512-
JS4gfkz7iImQFscfYrIHeEGNyttsC7pjBtdpglbvVO15VrvOa1jaIEeCnopKNrI/XCJWihhbYNgdLNm5v4CFKA
=="
,
"path"
:
"system.net.sockets/4.3.0"
,
"path"
:
"system.net.sockets/4.3.0"
,
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
},
},
"System.ObjectModel/4.3.0"
:
{
"System.ObjectModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ
=="
,
"sha512"
:
"sha512-
eASwOXeVD6d04alRZz9htFleUhFGAm9QT9pU71FCUvew58ojSGQ91OpK753Qv0LdqeUk6Oskqs4LZHaY6OCxhw
=="
,
"path"
:
"system.objectmodel/4.3.0"
,
"path"
:
"system.objectmodel/4.3.0"
,
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
},
},
"System.Reflection/4.3.0"
:
{
"System.Reflection/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ
=="
,
"sha512"
:
"sha512-
/U196t6BR0QGPIodNy1kESvR1co1pW6fhtNZXyOIrers7dpk4+sHvuQjOfZq++KhcpTVZYAttknYEpLBrqn1Bw
=="
,
"path"
:
"system.reflection/4.3.0"
,
"path"
:
"system.reflection/4.3.0"
,
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit/4.3.0"
:
{
"System.Reflection.Emit/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg
=="
,
"sha512"
:
"sha512-
GCAFZkuA/6JuYqVQIpDh1+DNdPZ9cfUY7NvAnQ0DBs3avOZVNVTRIhqZE1eIMu+Qj7sF4U+eRxW0gSfV6hQAgQ
=="
,
"path"
:
"system.reflection.emit/4.3.0"
,
"path"
:
"system.reflection.emit/4.3.0"
,
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng
=="
,
"sha512"
:
"sha512-
/fyzpXnU506v9HfSpaTSGSPnJWFg4b8t0nbKHNwJ5LFquvJAtND6td2Cpp+Ek1OLRuR0WxJ+YCB6ZW2GyvpBZQ
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA
=="
,
"sha512"
:
"sha512-
FX/zDlUSbxIwBM3ePmXoFfeiEPXRqwtoDH12velyRYhTv41pmM3fKLWL2vceLrJ1kOZTKFjHScPz+j3arI2p7g
=="
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Extensions/4.3.0"
:
{
"System.Reflection.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQN
Q=="
,
"sha512"
:
"sha512-
gfClVzHQcT0eY3qSVcMI6cQxwRmjFQfIrINEpBJMA6ftlNIhO/H8/e6V78YzX+0z7Bw2VJFJP4G7oIcbO32ol
Q=="
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Primitives/4.3.0"
:
{
"System.Reflection.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlI
A=="
,
"sha512"
:
"sha512-
uln4id8a086oqZBDylX/0jTZQ8qkoAdTjI1ZkUieD+nJkH9qQfRxCWSNCe2W0qVyRiQZe+iKerY5T5dtOyYcX
A=="
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
},
},
"System.Reflection.TypeExtensions/4.3.0"
:
{
"System.Reflection.TypeExtensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA
=="
,
"sha512"
:
"sha512-
ER4elwccfGOYXV69hI3W3nCwMelkAtu3VSs8lhHfE0EjqW5qG8qmv9lbhCdKOEWwI4B/LlXCbsyo38nGYY1Bnw
=="
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
},
"System.Resources.ResourceManager/4.3.0"
:
{
"System.Resources.ResourceManager/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A
=="
,
"sha512"
:
"sha512-
AN3tKJp9LAOcCA9l+sm67HYGSAhMIWApcLYl6U6yuB9/7U8vybia7BhPUWvlO9D1Bojqhh7fQs4KWYoHLG+Jyw
=="
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
},
"System.Runtime/4.3.0"
:
{
"System.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhi
w=="
,
"sha512"
:
"sha512-
R7ADy3PoW/NP1vgBNBlitlNxZm9OjzlHnPAyY0xvrcJjyh3PqrcDbRErvZwR5TRZxgMnaBT0hZRpHS4EHXzKL
w=="
,
"path"
:
"system.runtime/4.3.0"
,
"path"
:
"system.runtime/4.3.0"
,
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
},
},
...
@@ -2892,35 +2902,35 @@
...
@@ -2892,35 +2902,35 @@
"System.Runtime.Extensions/4.3.0"
:
{
"System.Runtime.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g
=="
,
"sha512"
:
"sha512-
KqXVl/pu190dAwqKc8fczs34LdLeNEuH69NmCTKmKoN8y1fcxapVIEtrbUVTebiyO2r66m/VP5HaPLU0ejzP6w
=="
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Handles/4.3.0"
:
{
"System.Runtime.Handles/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVg
g=="
,
"sha512"
:
"sha512-
yDJvHNMQNLHqvBxK63gK5/TrEbNuaZJkBTHapyiq8FwQycDoWlHwSWPqzcpbDnNH3adqL1AV+3Crpuye5Q+QN
g=="
,
"path"
:
"system.runtime.handles/4.3.0"
,
"path"
:
"system.runtime.handles/4.3.0"
,
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices/4.3.0"
:
{
"System.Runtime.InteropServices/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ
=="
,
"sha512"
:
"sha512-
HU/IH6woK1FxbYPBBvVADidlk74DZIFlXgk7VTxmsrlNjS9mq9biwgq25YgMvqRllCFtvuNEKcK6zVcMj8S/jA
=="
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw
=="
,
"sha512"
:
"sha512-
AwOv0R98WGNhdLNFQGvC027YvE4VUsTmDnkSAoxLUcZVrW/KSXCdeevtBdDuP8JvlSy2MoBaEkI45vdwoxYjxQ
=="
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Numerics/4.3.0"
:
{
"System.Runtime.Numerics/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ
=="
,
"sha512"
:
"sha512-
fbmlkJiM9SEw6chayUoKRdBP7DOXObYAxP7d4xuKk6PU8nClgrf4LGPo/Nd3cqXD0+Uvs5G3fxyS8vrAfRrIAg
=="
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
},
},
...
@@ -2934,42 +2944,42 @@
...
@@ -2934,42 +2944,42 @@
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg
=="
,
"sha512"
:
"sha512-
NG72ASyDyPOSIimdioqz0fI9GQckfzbPvQvEQxuIQKLQ0SacMyQRLWPIre2f6i5P8bhEKO7yKX5nZ0a8dL+33w
=="
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Cng/4.3.0"
:
{
"System.Security.Cryptography.Cng/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g
=="
,
"sha512"
:
"sha512-
eew12RoETmll8EN7kEzW7y9jZVbhD/JC5LASxkjrfPesTNQnZMZeeGwV+EY+VqKf2s15IcdI/MUiaN5b+IDueA
=="
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Csp/4.3.0"
:
{
"System.Security.Cryptography.Csp/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA
=="
,
"sha512"
:
"sha512-
kCLk/d0VSgm6jjp4vgJUM77z/+BAUkNt5JvQxs+vQm6RZjYSmmluxWdeI30B8js9rc5ja978s6RYZwoNiJDd9g
=="
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw
=="
,
"sha512"
:
"sha512-
LJJnwE5qD790h2DPHhlXsmlewEmg2xZducxHhNpoWrk9rNDb71HSKMJpioCJ3hCBtQeDSCsj6uhUeipQ8KS9qA
=="
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w
=="
,
"sha512"
:
"sha512-
8+yrkPIQ7N9oxskjATGoYWqNyPdyXqeN08jRQfdybm2TCyObj81iz/zSytiozBSf8GDpNOfiQ4DqAT9t4zfP5g
=="
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg
=="
,
"sha512"
:
"sha512-
hFqAVt9OsfH5loeAlpDj+apYs+RzUdmaI19+f2Cq78Vn1bCvVZxEzrECKJH4iD6foRCpIQCwQ/inxz8KKg7XCw
=="
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2983,7 +2993,7 @@
...
@@ -2983,7 +2993,7 @@
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw
=="
,
"sha512"
:
"sha512-
G15jaQeTp4XU5A3TI+CiJKhji49hqjZSNbz+R0V2dY7hT6gR4zLpEASYqH3m51JTZtmRx0WhBYxbx13OaQuBFA
=="
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
},
...
@@ -3004,7 +3014,7 @@
...
@@ -3004,7 +3014,7 @@
"System.Text.Encoding/4.3.0"
:
{
"System.Text.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZ
w=="
,
"sha512"
:
"sha512-
9+kKiGF7iM11HWsWhHv0bJaY3DdabXRK3A0LAu4RES+F0qf/G9OK2xrzaLVOFXjykQw0V9+y5XBbsTrBgU1C5
w=="
,
"path"
:
"system.text.encoding/4.3.0"
,
"path"
:
"system.text.encoding/4.3.0"
,
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
},
},
...
@@ -3018,7 +3028,7 @@
...
@@ -3018,7 +3028,7 @@
"System.Text.Encoding.Extensions/4.3.0"
:
{
"System.Text.Encoding.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw
=="
,
"sha512"
:
"sha512-
vnL/fBuhf/rHeEsYpSIx14QsU8DLXtoekPCSTeZN4RO3pVweHpnwlGN7Hgs75yY6TVtcYob7za8dufR/wG8WOA
=="
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
},
...
@@ -3039,14 +3049,14 @@
...
@@ -3039,14 +3049,14 @@
"System.Text.RegularExpressions/4.3.0"
:
{
"System.Text.RegularExpressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA
=="
,
"sha512"
:
"sha512-
Cs0QoguH5Uw4d66xuhgS/X4Tjm/Mncged1C2fGRXdhPJr9pUhbir59lm40f/RZsxQLL19efaeedWQbtpJryfAg
=="
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
},
},
"System.Threading/4.3.0"
:
{
"System.Threading/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpI
w=="
,
"sha512"
:
"sha512-
GUdTRQI5b7tP+bxn0wb1H2urT4gVyZmAMAiAsmExO8xGfxbVYnJnaErE1Qz/K1TL/lpymoQUwgaqj8295vHK+
w=="
,
"path"
:
"system.threading/4.3.0"
,
"path"
:
"system.threading/4.3.0"
,
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
},
},
...
@@ -3060,7 +3070,7 @@
...
@@ -3060,7 +3070,7 @@
"System.Threading.Tasks/4.3.0"
:
{
"System.Threading.Tasks/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXi
A=="
,
"sha512"
:
"sha512-
KlMDBDsVbQ/dfjAKi23D1QMSDRE4SmlEXatGsgBmDXZ1dqpnLdJOe/NVyc9Dt2T6Adgo6pBJSucmn/QTj6JWd
A=="
,
"path"
:
"system.threading.tasks/4.3.0"
,
"path"
:
"system.threading.tasks/4.3.0"
,
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
},
},
...
@@ -3088,7 +3098,7 @@
...
@@ -3088,7 +3098,7 @@
"System.Threading.Timer/4.3.0"
:
{
"System.Threading.Timer/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ
=="
,
"sha512"
:
"sha512-
N9AzP8dUwPxMhg2jh33pV8bOVms5HkXoTWsm/mnfRYPOy842yZkaqTFyz1qEDqneksg8qzSEA2JPnZNqIe68Kg
=="
,
"path"
:
"system.threading.timer/4.3.0"
,
"path"
:
"system.threading.timer/4.3.0"
,
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
},
},
...
@@ -3102,14 +3112,14 @@
...
@@ -3102,14 +3112,14 @@
"System.Xml.ReaderWriter/4.3.0"
:
{
"System.Xml.ReaderWriter/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA
=="
,
"sha512"
:
"sha512-
e9D+WUChqF7SZDcRYiH+NNxXeP5eTKbbvwhnAhs4s5mLcXvGOVR7IynsDxI87hzUwihj6xMx23S4SiLLOUL7kg
=="
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
},
},
"System.Xml.XDocument/4.3.0"
:
{
"System.Xml.XDocument/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ
=="
,
"sha512"
:
"sha512-
gUE7UkiymHpxEDSWJ2oiycH43yvGk51NHzbY7Ub7ZIEFPh6oi5HjWatH4bJc2IeBQhOeRZ/akadnr0YEXH6wZA
=="
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
},
},
...
@@ -3123,7 +3133,7 @@
...
@@ -3123,7 +3133,7 @@
"System.Xml.XPath/4.0.1"
:
{
"System.Xml.XPath/4.0.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA
=="
,
"sha512"
:
"sha512-
7lq2TCqxJ+6eIDZOc7HBVN6TcX4HzuO11O0wuS7XZprAMvxVCqTZQoDArlEglmo2yvTIDKtGYQ3ByIIDZx7bIQ
=="
,
"path"
:
"system.xml.xpath/4.0.1"
,
"path"
:
"system.xml.xpath/4.0.1"
,
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
},
},
...
@@ -3156,6 +3166,11 @@
...
@@ -3156,6 +3166,11 @@
"serviceable"
:
false
,
"serviceable"
:
false
,
"sha512"
:
""
"sha512"
:
""
},
},
"Edu.Module.Log/1.0.0"
:
{
"type"
:
"project"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Edu.Repository/1.0.0"
:
{
"Edu.Repository/1.0.0"
:
{
"type"
:
"project"
,
"type"
:
"project"
,
"serviceable"
:
false
,
"serviceable"
:
false
,
...
...
Edu.Repository/Log/RB_User_ChangeLogRepository.cs
View file @
aa887a90
using
Edu.Model.Entity.Log
;
using
Edu.Model.Entity.Log
;
using
Edu.Model.ViewModel.Log
;
using
Edu.Model.ViewModel.Log
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Linq
;
using
System.Text
;
using
System.Text
;
...
@@ -8,7 +7,7 @@ using System.Text;
...
@@ -8,7 +7,7 @@ using System.Text;
namespace
Edu.Repository.Log
namespace
Edu.Repository.Log
{
{
/// <summary>
/// <summary>
/// 用户信息改变日志
/// 用户信息改变日志
仓储层
/// </summary>
/// </summary>
public
class
RB_User_ChangeLogRepository
:
BaseRepository
<
RB_User_ChangeLog
>
public
class
RB_User_ChangeLogRepository
:
BaseRepository
<
RB_User_ChangeLog
>
{
{
...
...
Edu.Repository/bin/Release/netcoreapp3.0/Edu.Repository.deps.json
View file @
aa887a90
...
@@ -2264,14 +2264,14 @@
...
@@ -2264,14 +2264,14 @@
"Microsoft.NETCore.Targets/1.1.0"
:
{
"Microsoft.NETCore.Targets/1.1.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg
=="
,
"sha512"
:
"sha512-
jtuKp4+ddUpehBOlmQJNWek/tXwXLeDAGtkkrHS1Qi6nOPmaLCuvDKFaqBu2c4DGKci+JMDUk4R+6jQ8P8l1aw
=="
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
},
"Microsoft.Win32.Primitives/4.3.0"
:
{
"Microsoft.Win32.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0Uunx
A=="
,
"sha512"
:
"sha512-
ZthhVqE8T07PsCHMAixDJJjmbdc07VO3GW8FULO+YWr/CmTLolwJoJdXRL/z2/4FAOtCJaJ/H+TPhtH2v1oaU
A=="
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"path"
:
"microsoft.win32.primitives/4.3.0"
,
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2327,7 +2327,7 @@
...
@@ -2327,7 +2327,7 @@
"NETStandard.Library/1.6.1"
:
{
"NETStandard.Library/1.6.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A
=="
,
"sha512"
:
"sha512-
UQNdem5WY//vGStfYv8LFMcWvNTLxUocZ9YfGg4Ps2WaDerp+HrO46tDjQX88/wZaBkwv+Xq/mqjfPeMDz6QnQ
=="
,
"path"
:
"netstandard.library/1.6.1"
,
"path"
:
"netstandard.library/1.6.1"
,
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
"hashPath"
:
"netstandard.library.1.6.1.nupkg.sha512"
},
},
...
@@ -2362,28 +2362,28 @@
...
@@ -2362,28 +2362,28 @@
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q
=="
,
"sha512"
:
"sha512-
uoCdP75em+GOf04ew/VTet4nr9h/uVMJkrAF9vgRXc4NV4c94R5bzL853tU/kjEfQEUn79aEzzL/ETNhLTasow
=="
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA
=="
,
"sha512"
:
"sha512-
h6SbWq7Fjz9udTUOzuhx1sLYBaIs9YmKpiAb17H9E0YYYIOknAusPKVGv1bExrka1WRtbnpTXpuoBfYU8zVH1w
=="
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-c
3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAK
w=="
,
"sha512"
:
"sha512-c
HH7MckuzKikSR6L6RrySZ2m2C9DDsse28va9U2bE2Op1KotonVDj8JB8qLlXC3jNrdH0SuHfZ4jsHpKuTT0i
w=="
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.native.System/4.3.0"
:
{
"runtime.native.System/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7J
w=="
,
"sha512"
:
"sha512-
S+nQhAdiCsSEeAqawUDCKvQl6sO501hZaT/8V49VpKGSNJQKZh0z2pw+TRDOo9LJv8yjCWMHypHgQBTEEUmw2
w=="
,
"path"
:
"runtime.native.system/4.3.0"
,
"path"
:
"runtime.native.system/4.3.0"
,
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.4.3.0.nupkg.sha512"
},
},
...
@@ -2397,84 +2397,84 @@
...
@@ -2397,84 +2397,84 @@
"runtime.native.System.IO.Compression/4.3.0"
:
{
"runtime.native.System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ
=="
,
"sha512"
:
"sha512-
ubimUZNWVWNbB55MO1Ev9uq66w2jmHgx4wNCaUHUs4G6qHPyGm5b0cV+zS2ai0aS9sO1e6StzJJ98OIhVQ2Oyw
=="
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"path"
:
"runtime.native.system.io.compression/4.3.0"
,
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Net.Http/4.3.0"
:
{
"runtime.native.System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg
=="
,
"sha512"
:
"sha512-
iTbzUFkAYPzlBjSNi4/tv6GWiw4c3D2mYScFgPgS5BUEO7K21AYXeIU7l8KtErqYEn/+DJ5FZLDDd9xMEASN4Q
=="
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"path"
:
"runtime.native.system.net.http/4.3.0"
,
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ
3Q=="
,
"sha512"
:
"sha512-
5DyXXwEyil5vfxbfszS9HVXqMrPBsvZtTe1COwiDt4hfjp/yTFbACWb4JZ2IfYP+r+mb0pwobpBLQ5aW7qUv
3Q=="
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnr
w=="
,
"sha512"
:
"sha512-
fFcF1RvzmvWvBqBeyLa5MX/HO5cGe2Tef6uZnUKv0LJ0MwKhXensaDd48pXDgDLrHOCH9yLg8ENb6ppmgA/Up
w=="
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A
=="
,
"sha512"
:
"sha512-
y1X4xOQmneMsDwpkiRAzHI+PaH7eycMb1jIFU3bAb20Ks0l14ZSOx9HTHQviOtztYuLZ9shZNRJNvWVbJSIMpg
=="
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ
=="
,
"sha512"
:
"sha512-
vv4ZlH/xxDOrL3r5y76cdsmzlCS/yrOTs4xjGNwe1P57f0CkTQdzMz9dSHo4tWk9Eg4bA3DiVwVpVO+kqAEZQg
=="
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ
=="
,
"sha512"
:
"sha512-
FwiyAuPHsMyQVxhdC9NvJgnaYzEu0080It56MNVonOUX54ezZzafsjuSeRht8R4slkTDwU0laIXWuUEN7U6tTA
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g
=="
,
"sha512"
:
"sha512-
wH7IrGz1YyAPIt4nJXut7EyjQ5xgs2qc23YN0OiMCoA0i2OoAXgpNAPSl0QDjXB+CeKe+ZRnhGNeKfYBX1YdLw
=="
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg
=="
,
"sha512"
:
"sha512-
WWabnawXg2BVm76El1mwkgzOljzAOK8YHe4AenFiKKDG8/nXs38RtInyrHcG2xNLrCLSfRwrhfS4RPAQH5E0ew
=="
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLr
Q=="
,
"sha512"
:
"sha512-
rBEA8wlrj/iZvNMyz/lksEz+ps3LknjwavzCG+23vm1WwLZWYIEoQIDi10pgXzgUROHC9j2ppoownmB9YzARm
Q=="
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A
=="
,
"sha512"
:
"sha512-
0DLUJpbpi+CthPVmOzA7bkNKwNuxvFi4V8sYsSYQuLuQbBAd462CHOrIMM29ivBeUsEvdtdAel+JZa4s9t6dFQ
=="
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg
=="
,
"sha512"
:
"sha512-
Tq1k9cfn9PGxTwX8QmWS9NQ9Rt4HS/r+i6SPe2R5cM9OO+RgWbRK0ExGGcZqjuqyzekHfHBYrW8sVUNvaZjw8w
=="
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"path"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
...
@@ -2537,7 +2537,7 @@
...
@@ -2537,7 +2537,7 @@
"System.AppContext/4.3.0"
:
{
"System.AppContext/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA
=="
,
"sha512"
:
"sha512-
do9UYqgS80R3NfDLsxXgAyv0w4y003ik6KmfYBpJ5CTBQb/K8ylQfrx7WlnXwvdmxj2kti2NKPv8/8nua54/ng
=="
,
"path"
:
"system.appcontext/4.3.0"
,
"path"
:
"system.appcontext/4.3.0"
,
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
"hashPath"
:
"system.appcontext.4.3.0.nupkg.sha512"
},
},
...
@@ -2551,14 +2551,14 @@
...
@@ -2551,14 +2551,14 @@
"System.Collections/4.3.0"
:
{
"System.Collections/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw
=="
,
"sha512"
:
"sha512-
tfqWMsO3XZc72+g/jdFG2bdAErjOc/SlQBXa9+maU/TvZPu6Ew8a2HQOfLAuY8CVuqviTaeEu7ptsbxPB+8SaA
=="
,
"path"
:
"system.collections/4.3.0"
,
"path"
:
"system.collections/4.3.0"
,
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.4.3.0.nupkg.sha512"
},
},
"System.Collections.Concurrent/4.3.0"
:
{
"System.Collections.Concurrent/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ
=="
,
"sha512"
:
"sha512-
tRgZFvPa9jMS4qRluyUvD5Ll6gJeG5vG5UHWZ7nK83dOzpCux8pRuJY2TiPvoqx/anCRNEweVl+89ieenbnHHg
=="
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"path"
:
"system.collections.concurrent/4.3.0"
,
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
"hashPath"
:
"system.collections.concurrent.4.3.0.nupkg.sha512"
},
},
...
@@ -2579,7 +2579,7 @@
...
@@ -2579,7 +2579,7 @@
"System.ComponentModel/4.3.0"
:
{
"System.ComponentModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw
=="
,
"sha512"
:
"sha512-
0WhdQqaBmYmIgmgADNmjTenYep1MsRO2qgATQiGkLVjinEfRBATw+OaMUTU3FQtUDxCyl2HNz789BpBCb9NcSQ
=="
,
"path"
:
"system.componentmodel/4.3.0"
,
"path"
:
"system.componentmodel/4.3.0"
,
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.componentmodel.4.3.0.nupkg.sha512"
},
},
...
@@ -2614,7 +2614,7 @@
...
@@ -2614,7 +2614,7 @@
"System.Console/4.3.0"
:
{
"System.Console/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg
=="
,
"sha512"
:
"sha512-
HyI4eNqHaD7sDyxN7eTC3MmVA34LrK86IgXY4bznqGgpJ52zrigum5ZZj0ZxD+Xbnwhix/cwgJazOstiKBP/LQ
=="
,
"path"
:
"system.console/4.3.0"
,
"path"
:
"system.console/4.3.0"
,
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
"hashPath"
:
"system.console.4.3.0.nupkg.sha512"
},
},
...
@@ -2628,7 +2628,7 @@
...
@@ -2628,7 +2628,7 @@
"System.Diagnostics.Debug/4.3.0"
:
{
"System.Diagnostics.Debug/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g
=="
,
"sha512"
:
"sha512-
3jTiSHr6dO9uSJAoUcH8Wg29Nc+cQHSmkkn9ul6a9HQhW0KboGrGLiHGCt2AXISFHK7YlGP0fzes2X6/gbpDgQ
=="
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"path"
:
"system.diagnostics.debug/4.3.0"
,
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.debug.4.3.0.nupkg.sha512"
},
},
...
@@ -2649,7 +2649,7 @@
...
@@ -2649,7 +2649,7 @@
"System.Diagnostics.Tools/4.3.0"
:
{
"System.Diagnostics.Tools/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA
=="
,
"sha512"
:
"sha512-
uVam5oaDJ+lrCkzR5paF0bXKewt8/h8ZaX8xIqm48ypbpdpkp/EWM+uTegiUvraO3Fv+o3oj0cPtprJISNhXXQ
=="
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"path"
:
"system.diagnostics.tools/4.3.0"
,
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tools.4.3.0.nupkg.sha512"
},
},
...
@@ -2663,7 +2663,7 @@
...
@@ -2663,7 +2663,7 @@
"System.Diagnostics.Tracing/4.3.0"
:
{
"System.Diagnostics.Tracing/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw
=="
,
"sha512"
:
"sha512-
sRRUOGLj+PCOa9xei6b4JUSg0CSxwBm+EkyNAngFW9ARE6S3D19o9Ol5SeGUr1tFSVt4vX+xdl0OSz581Ksd4Q
=="
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"path"
:
"system.diagnostics.tracing/4.3.0"
,
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
"hashPath"
:
"system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
},
...
@@ -2677,63 +2677,63 @@
...
@@ -2677,63 +2677,63 @@
"System.Dynamic.Runtime/4.3.0"
:
{
"System.Dynamic.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag
=="
,
"sha512"
:
"sha512-
zxQXMykO4ZAptqREvoqNlbzdBz+SusbQqr8acRtXQGZ3wDyH+Mi6VFImuIyeFsPMkNLhNvk2xBzNHnY1Bi9zjQ
=="
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"path"
:
"system.dynamic.runtime/4.3.0"
,
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.dynamic.runtime.4.3.0.nupkg.sha512"
},
},
"System.Globalization/4.3.0"
:
{
"System.Globalization/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg
=="
,
"sha512"
:
"sha512-
QsvKtsliUgA7KWLgXPibgflvlvg0r3g05jzNMwz5tvRg4ZPnRT8xtzr8CBCDdBVQs7x8qUcHvciUykA8bAo7jw
=="
,
"path"
:
"system.globalization/4.3.0"
,
"path"
:
"system.globalization/4.3.0"
,
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Calendars/4.3.0"
:
{
"System.Globalization.Calendars/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA
=="
,
"sha512"
:
"sha512-
AaI3lmNJGDhuQ2gvrcj1mL4mFMVNXQ+mQ4a4nMq+jiZk3tDJO6SShiteHoJ+tMAF8u4ipEF0oUHe8aL7hYiFxg
=="
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"path"
:
"system.globalization.calendars/4.3.0"
,
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.calendars.4.3.0.nupkg.sha512"
},
},
"System.Globalization.Extensions/4.3.0"
:
{
"System.Globalization.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ
=="
,
"sha512"
:
"sha512-
YTMfoFzh5xRVINlBLjD1b5quJPh9eMpFr4xg17wSRFnVz4IxKltD084XB1curpdQlrAsYjf1wIsf+ddlQl0HnA
=="
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"path"
:
"system.globalization.extensions/4.3.0"
,
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.globalization.extensions.4.3.0.nupkg.sha512"
},
},
"System.IO/4.3.0"
:
{
"System.IO/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg
=="
,
"sha512"
:
"sha512-
lHnCA1CwGlY3hbvMSgRrjGLpj6XJKvvrZ4I/0IFV+CrjPXorggUMrdjFWzWMngdWbYQMYIE3sCatHKInWtMBTQ
=="
,
"path"
:
"system.io/4.3.0"
,
"path"
:
"system.io/4.3.0"
,
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression/4.3.0"
:
{
"System.IO.Compression/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg
=="
,
"sha512"
:
"sha512-
S2tSQT+SjN1MIbKlgqmkowPHD384bX1O1U7vbg+RDMQVLWNUqqOCADy4y/lGkLFwj6P4MfVoukR6HKm3HjmH9w
=="
,
"path"
:
"system.io.compression/4.3.0"
,
"path"
:
"system.io.compression/4.3.0"
,
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.4.3.0.nupkg.sha512"
},
},
"System.IO.Compression.ZipFile/4.3.0"
:
{
"System.IO.Compression.ZipFile/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg
=="
,
"sha512"
:
"sha512-
SapbBchwyGYdnkT1vtLcKSJHHtQ8r8qhsJ7NTMwK9WQijD7y73L9OTf75iGIAHS7RCZbAyBefsSvHw6RmUEjZQ
=="
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"path"
:
"system.io.compression.zipfile/4.3.0"
,
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.compression.zipfile.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem/4.3.0"
:
{
"System.IO.FileSystem/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTd
A=="
,
"sha512"
:
"sha512-
Uoayf21U2TOqHjRz1/nxbVvanOaOkisgy8bZLwJUPeloZLiS7TL+t2/doDWQ4Wzq1Xc5qmwtmR3GpRUgh9s5U
A=="
,
"path"
:
"system.io.filesystem/4.3.0"
,
"path"
:
"system.io.filesystem/4.3.0"
,
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.4.3.0.nupkg.sha512"
},
},
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"System.IO.FileSystem.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw
=="
,
"sha512"
:
"sha512-
qCnhqnKBWOop9amxE4FdfIdhnrHk2nXp/Vbn5ea1/vGXgvA+IrqI/YRSP0TB00ajXKOrZTthyhRwmNx2YFtKNA
=="
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"path"
:
"system.io.filesystem.primitives/4.3.0"
,
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2747,14 +2747,14 @@
...
@@ -2747,14 +2747,14 @@
"System.Linq/4.3.0"
:
{
"System.Linq/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw
=="
,
"sha512"
:
"sha512-
/OIh4dHw7pUiq4t06EMVZOL3DhQY+1wCtjiUHZwFmm83cnpwTv6hKNtULiMP8Q26HYXOx7u3d+AY0IzYPGxOtQ
=="
,
"path"
:
"system.linq/4.3.0"
,
"path"
:
"system.linq/4.3.0"
,
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.4.3.0.nupkg.sha512"
},
},
"System.Linq.Expressions/4.3.0"
:
{
"System.Linq.Expressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg
=="
,
"sha512"
:
"sha512-
0jD/FCSXymfWCrk0UAR9Q2wmNk3VJ0f28ECpZdw2Dj56e4gYrdduDxrMZKCDu8oDJJSFGUIcuXT6cDodrd4wVQ
=="
,
"path"
:
"system.linq.expressions/4.3.0"
,
"path"
:
"system.linq.expressions/4.3.0"
,
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.linq.expressions.4.3.0.nupkg.sha512"
},
},
...
@@ -2768,7 +2768,7 @@
...
@@ -2768,7 +2768,7 @@
"System.Net.Http/4.3.0"
:
{
"System.Net.Http/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEw
A=="
,
"sha512"
:
"sha512-
Yp04JL85F38LQzElsET91QqJsNQm+BHOZ5PR8IHpi+yM8KBIOVc8RkZXrRYtmDw/4Pu0zxqNKupI9xNUkuZv7
A=="
,
"path"
:
"system.net.http/4.3.0"
,
"path"
:
"system.net.http/4.3.0"
,
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.http.4.3.0.nupkg.sha512"
},
},
...
@@ -2782,84 +2782,84 @@
...
@@ -2782,84 +2782,84 @@
"System.Net.Primitives/4.3.0"
:
{
"System.Net.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA
=="
,
"sha512"
:
"sha512-
BZYIpCiPjW/UhJ5sir6sU3qtLD/0NuAsrUS0CUubAywpuDEPwTaKrN33OJ5FVpLO8aLqfCGRJQAjWgQvZHkbqg
=="
,
"path"
:
"system.net.primitives/4.3.0"
,
"path"
:
"system.net.primitives/4.3.0"
,
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.primitives.4.3.0.nupkg.sha512"
},
},
"System.Net.Sockets/4.3.0"
:
{
"System.Net.Sockets/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw
=="
,
"sha512"
:
"sha512-
JS4gfkz7iImQFscfYrIHeEGNyttsC7pjBtdpglbvVO15VrvOa1jaIEeCnopKNrI/XCJWihhbYNgdLNm5v4CFKA
=="
,
"path"
:
"system.net.sockets/4.3.0"
,
"path"
:
"system.net.sockets/4.3.0"
,
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
"hashPath"
:
"system.net.sockets.4.3.0.nupkg.sha512"
},
},
"System.ObjectModel/4.3.0"
:
{
"System.ObjectModel/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ
=="
,
"sha512"
:
"sha512-
eASwOXeVD6d04alRZz9htFleUhFGAm9QT9pU71FCUvew58ojSGQ91OpK753Qv0LdqeUk6Oskqs4LZHaY6OCxhw
=="
,
"path"
:
"system.objectmodel/4.3.0"
,
"path"
:
"system.objectmodel/4.3.0"
,
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
"hashPath"
:
"system.objectmodel.4.3.0.nupkg.sha512"
},
},
"System.Reflection/4.3.0"
:
{
"System.Reflection/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ
=="
,
"sha512"
:
"sha512-
/U196t6BR0QGPIodNy1kESvR1co1pW6fhtNZXyOIrers7dpk4+sHvuQjOfZq++KhcpTVZYAttknYEpLBrqn1Bw
=="
,
"path"
:
"system.reflection/4.3.0"
,
"path"
:
"system.reflection/4.3.0"
,
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit/4.3.0"
:
{
"System.Reflection.Emit/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg
=="
,
"sha512"
:
"sha512-
GCAFZkuA/6JuYqVQIpDh1+DNdPZ9cfUY7NvAnQ0DBs3avOZVNVTRIhqZE1eIMu+Qj7sF4U+eRxW0gSfV6hQAgQ
=="
,
"path"
:
"system.reflection.emit/4.3.0"
,
"path"
:
"system.reflection.emit/4.3.0"
,
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"System.Reflection.Emit.ILGeneration/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng
=="
,
"sha512"
:
"sha512-
/fyzpXnU506v9HfSpaTSGSPnJWFg4b8t0nbKHNwJ5LFquvJAtND6td2Cpp+Ek1OLRuR0WxJ+YCB6ZW2GyvpBZQ
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"path"
:
"system.reflection.emit.ilgeneration/4.3.0"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"System.Reflection.Emit.Lightweight/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA
=="
,
"sha512"
:
"sha512-
FX/zDlUSbxIwBM3ePmXoFfeiEPXRqwtoDH12velyRYhTv41pmM3fKLWL2vceLrJ1kOZTKFjHScPz+j3arI2p7g
=="
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"path"
:
"system.reflection.emit.lightweight/4.3.0"
,
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Extensions/4.3.0"
:
{
"System.Reflection.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQN
Q=="
,
"sha512"
:
"sha512-
gfClVzHQcT0eY3qSVcMI6cQxwRmjFQfIrINEpBJMA6ftlNIhO/H8/e6V78YzX+0z7Bw2VJFJP4G7oIcbO32ol
Q=="
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"path"
:
"system.reflection.extensions/4.3.0"
,
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.extensions.4.3.0.nupkg.sha512"
},
},
"System.Reflection.Primitives/4.3.0"
:
{
"System.Reflection.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlI
A=="
,
"sha512"
:
"sha512-
uln4id8a086oqZBDylX/0jTZQ8qkoAdTjI1ZkUieD+nJkH9qQfRxCWSNCe2W0qVyRiQZe+iKerY5T5dtOyYcX
A=="
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"path"
:
"system.reflection.primitives/4.3.0"
,
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.primitives.4.3.0.nupkg.sha512"
},
},
"System.Reflection.TypeExtensions/4.3.0"
:
{
"System.Reflection.TypeExtensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA
=="
,
"sha512"
:
"sha512-
ER4elwccfGOYXV69hI3W3nCwMelkAtu3VSs8lhHfE0EjqW5qG8qmv9lbhCdKOEWwI4B/LlXCbsyo38nGYY1Bnw
=="
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"path"
:
"system.reflection.typeextensions/4.3.0"
,
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
},
"System.Resources.ResourceManager/4.3.0"
:
{
"System.Resources.ResourceManager/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A
=="
,
"sha512"
:
"sha512-
AN3tKJp9LAOcCA9l+sm67HYGSAhMIWApcLYl6U6yuB9/7U8vybia7BhPUWvlO9D1Bojqhh7fQs4KWYoHLG+Jyw
=="
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"path"
:
"system.resources.resourcemanager/4.3.0"
,
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
"hashPath"
:
"system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
},
"System.Runtime/4.3.0"
:
{
"System.Runtime/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhi
w=="
,
"sha512"
:
"sha512-
R7ADy3PoW/NP1vgBNBlitlNxZm9OjzlHnPAyY0xvrcJjyh3PqrcDbRErvZwR5TRZxgMnaBT0hZRpHS4EHXzKL
w=="
,
"path"
:
"system.runtime/4.3.0"
,
"path"
:
"system.runtime/4.3.0"
,
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.4.3.0.nupkg.sha512"
},
},
...
@@ -2873,35 +2873,35 @@
...
@@ -2873,35 +2873,35 @@
"System.Runtime.Extensions/4.3.0"
:
{
"System.Runtime.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g
=="
,
"sha512"
:
"sha512-
KqXVl/pu190dAwqKc8fczs34LdLeNEuH69NmCTKmKoN8y1fcxapVIEtrbUVTebiyO2r66m/VP5HaPLU0ejzP6w
=="
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"path"
:
"system.runtime.extensions/4.3.0"
,
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.extensions.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Handles/4.3.0"
:
{
"System.Runtime.Handles/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVg
g=="
,
"sha512"
:
"sha512-
yDJvHNMQNLHqvBxK63gK5/TrEbNuaZJkBTHapyiq8FwQycDoWlHwSWPqzcpbDnNH3adqL1AV+3Crpuye5Q+QN
g=="
,
"path"
:
"system.runtime.handles/4.3.0"
,
"path"
:
"system.runtime.handles/4.3.0"
,
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.handles.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices/4.3.0"
:
{
"System.Runtime.InteropServices/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ
=="
,
"sha512"
:
"sha512-
HU/IH6woK1FxbYPBBvVADidlk74DZIFlXgk7VTxmsrlNjS9mq9biwgq25YgMvqRllCFtvuNEKcK6zVcMj8S/jA
=="
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"path"
:
"system.runtime.interopservices/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.4.3.0.nupkg.sha512"
},
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"System.Runtime.InteropServices.RuntimeInformation/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw
=="
,
"sha512"
:
"sha512-
AwOv0R98WGNhdLNFQGvC027YvE4VUsTmDnkSAoxLUcZVrW/KSXCdeevtBdDuP8JvlSy2MoBaEkI45vdwoxYjxQ
=="
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"path"
:
"system.runtime.interopservices.runtimeinformation/4.3.0"
,
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
},
},
"System.Runtime.Numerics/4.3.0"
:
{
"System.Runtime.Numerics/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ
=="
,
"sha512"
:
"sha512-
fbmlkJiM9SEw6chayUoKRdBP7DOXObYAxP7d4xuKk6PU8nClgrf4LGPo/Nd3cqXD0+Uvs5G3fxyS8vrAfRrIAg
=="
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"path"
:
"system.runtime.numerics/4.3.0"
,
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
"hashPath"
:
"system.runtime.numerics.4.3.0.nupkg.sha512"
},
},
...
@@ -2915,42 +2915,42 @@
...
@@ -2915,42 +2915,42 @@
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"System.Security.Cryptography.Algorithms/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg
=="
,
"sha512"
:
"sha512-
NG72ASyDyPOSIimdioqz0fI9GQckfzbPvQvEQxuIQKLQ0SacMyQRLWPIre2f6i5P8bhEKO7yKX5nZ0a8dL+33w
=="
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"path"
:
"system.security.cryptography.algorithms/4.3.0"
,
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Cng/4.3.0"
:
{
"System.Security.Cryptography.Cng/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g
=="
,
"sha512"
:
"sha512-
eew12RoETmll8EN7kEzW7y9jZVbhD/JC5LASxkjrfPesTNQnZMZeeGwV+EY+VqKf2s15IcdI/MUiaN5b+IDueA
=="
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"path"
:
"system.security.cryptography.cng/4.3.0"
,
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.cng.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Csp/4.3.0"
:
{
"System.Security.Cryptography.Csp/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA
=="
,
"sha512"
:
"sha512-
kCLk/d0VSgm6jjp4vgJUM77z/+BAUkNt5JvQxs+vQm6RZjYSmmluxWdeI30B8js9rc5ja978s6RYZwoNiJDd9g
=="
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"path"
:
"system.security.cryptography.csp/4.3.0"
,
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"System.Security.Cryptography.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw
=="
,
"sha512"
:
"sha512-
LJJnwE5qD790h2DPHhlXsmlewEmg2xZducxHhNpoWrk9rNDb71HSKMJpioCJ3hCBtQeDSCsj6uhUeipQ8KS9qA
=="
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"path"
:
"system.security.cryptography.encoding/4.3.0"
,
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"System.Security.Cryptography.OpenSsl/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w
=="
,
"sha512"
:
"sha512-
8+yrkPIQ7N9oxskjATGoYWqNyPdyXqeN08jRQfdybm2TCyObj81iz/zSytiozBSf8GDpNOfiQ4DqAT9t4zfP5g
=="
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"path"
:
"system.security.cryptography.openssl/4.3.0"
,
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
},
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"System.Security.Cryptography.Primitives/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg
=="
,
"sha512"
:
"sha512-
hFqAVt9OsfH5loeAlpDj+apYs+RzUdmaI19+f2Cq78Vn1bCvVZxEzrECKJH4iD6foRCpIQCwQ/inxz8KKg7XCw
=="
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"path"
:
"system.security.cryptography.primitives/4.3.0"
,
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
},
...
@@ -2964,7 +2964,7 @@
...
@@ -2964,7 +2964,7 @@
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"System.Security.Cryptography.X509Certificates/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw
=="
,
"sha512"
:
"sha512-
G15jaQeTp4XU5A3TI+CiJKhji49hqjZSNbz+R0V2dY7hT6gR4zLpEASYqH3m51JTZtmRx0WhBYxbx13OaQuBFA
=="
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"path"
:
"system.security.cryptography.x509certificates/4.3.0"
,
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
"hashPath"
:
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
},
...
@@ -2985,7 +2985,7 @@
...
@@ -2985,7 +2985,7 @@
"System.Text.Encoding/4.3.0"
:
{
"System.Text.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZ
w=="
,
"sha512"
:
"sha512-
9+kKiGF7iM11HWsWhHv0bJaY3DdabXRK3A0LAu4RES+F0qf/G9OK2xrzaLVOFXjykQw0V9+y5XBbsTrBgU1C5
w=="
,
"path"
:
"system.text.encoding/4.3.0"
,
"path"
:
"system.text.encoding/4.3.0"
,
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.4.3.0.nupkg.sha512"
},
},
...
@@ -2999,7 +2999,7 @@
...
@@ -2999,7 +2999,7 @@
"System.Text.Encoding.Extensions/4.3.0"
:
{
"System.Text.Encoding.Extensions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw
=="
,
"sha512"
:
"sha512-
vnL/fBuhf/rHeEsYpSIx14QsU8DLXtoekPCSTeZN4RO3pVweHpnwlGN7Hgs75yY6TVtcYob7za8dufR/wG8WOA
=="
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"path"
:
"system.text.encoding.extensions/4.3.0"
,
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
},
...
@@ -3020,14 +3020,14 @@
...
@@ -3020,14 +3020,14 @@
"System.Text.RegularExpressions/4.3.0"
:
{
"System.Text.RegularExpressions/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA
=="
,
"sha512"
:
"sha512-
Cs0QoguH5Uw4d66xuhgS/X4Tjm/Mncged1C2fGRXdhPJr9pUhbir59lm40f/RZsxQLL19efaeedWQbtpJryfAg
=="
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"path"
:
"system.text.regularexpressions/4.3.0"
,
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
"hashPath"
:
"system.text.regularexpressions.4.3.0.nupkg.sha512"
},
},
"System.Threading/4.3.0"
:
{
"System.Threading/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpI
w=="
,
"sha512"
:
"sha512-
GUdTRQI5b7tP+bxn0wb1H2urT4gVyZmAMAiAsmExO8xGfxbVYnJnaErE1Qz/K1TL/lpymoQUwgaqj8295vHK+
w=="
,
"path"
:
"system.threading/4.3.0"
,
"path"
:
"system.threading/4.3.0"
,
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.4.3.0.nupkg.sha512"
},
},
...
@@ -3041,7 +3041,7 @@
...
@@ -3041,7 +3041,7 @@
"System.Threading.Tasks/4.3.0"
:
{
"System.Threading.Tasks/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXi
A=="
,
"sha512"
:
"sha512-
KlMDBDsVbQ/dfjAKi23D1QMSDRE4SmlEXatGsgBmDXZ1dqpnLdJOe/NVyc9Dt2T6Adgo6pBJSucmn/QTj6JWd
A=="
,
"path"
:
"system.threading.tasks/4.3.0"
,
"path"
:
"system.threading.tasks/4.3.0"
,
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.tasks.4.3.0.nupkg.sha512"
},
},
...
@@ -3069,7 +3069,7 @@
...
@@ -3069,7 +3069,7 @@
"System.Threading.Timer/4.3.0"
:
{
"System.Threading.Timer/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ
=="
,
"sha512"
:
"sha512-
N9AzP8dUwPxMhg2jh33pV8bOVms5HkXoTWsm/mnfRYPOy842yZkaqTFyz1qEDqneksg8qzSEA2JPnZNqIe68Kg
=="
,
"path"
:
"system.threading.timer/4.3.0"
,
"path"
:
"system.threading.timer/4.3.0"
,
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
"hashPath"
:
"system.threading.timer.4.3.0.nupkg.sha512"
},
},
...
@@ -3083,14 +3083,14 @@
...
@@ -3083,14 +3083,14 @@
"System.Xml.ReaderWriter/4.3.0"
:
{
"System.Xml.ReaderWriter/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA
=="
,
"sha512"
:
"sha512-
e9D+WUChqF7SZDcRYiH+NNxXeP5eTKbbvwhnAhs4s5mLcXvGOVR7IynsDxI87hzUwihj6xMx23S4SiLLOUL7kg
=="
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"path"
:
"system.xml.readerwriter/4.3.0"
,
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.readerwriter.4.3.0.nupkg.sha512"
},
},
"System.Xml.XDocument/4.3.0"
:
{
"System.Xml.XDocument/4.3.0"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ
=="
,
"sha512"
:
"sha512-
gUE7UkiymHpxEDSWJ2oiycH43yvGk51NHzbY7Ub7ZIEFPh6oi5HjWatH4bJc2IeBQhOeRZ/akadnr0YEXH6wZA
=="
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"path"
:
"system.xml.xdocument/4.3.0"
,
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
"hashPath"
:
"system.xml.xdocument.4.3.0.nupkg.sha512"
},
},
...
@@ -3104,7 +3104,7 @@
...
@@ -3104,7 +3104,7 @@
"System.Xml.XPath/4.0.1"
:
{
"System.Xml.XPath/4.0.1"
:
{
"type"
:
"package"
,
"type"
:
"package"
,
"serviceable"
:
true
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA
=="
,
"sha512"
:
"sha512-
7lq2TCqxJ+6eIDZOc7HBVN6TcX4HzuO11O0wuS7XZprAMvxVCqTZQoDArlEglmo2yvTIDKtGYQ3ByIIDZx7bIQ
=="
,
"path"
:
"system.xml.xpath/4.0.1"
,
"path"
:
"system.xml.xpath/4.0.1"
,
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
"hashPath"
:
"system.xml.xpath.4.0.1.nupkg.sha512"
},
},
...
...
Edu.WebApi/Controllers/Public/PublicController.cs
View file @
aa887a90
...
@@ -291,12 +291,12 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -291,12 +291,12 @@ namespace Edu.WebApi.Controllers.Public
#
region
上传设置
#
region
上传设置
public
ApiResult
GetFileStoreList
()
public
ApiResult
GetFileStoreList
()
{
{
var
parms
=
RequestParm
;
var
query
=
new
RB_File_Store
var
query
=
new
RB_File_Store
();
{
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
Group_Id
=
base
.
UserInfo
.
Group_Id
,
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
School_Id
=
base
.
UserInfo
.
School_Id
};
var
list
=
publicModule
.
GetFileStoreList
(
query
);
var
list
=
publicModule
.
GetFileStoreList
(
query
);
return
ApiResult
.
Success
(
"获取成功"
,
list
);
return
ApiResult
.
Success
(
"获取成功"
,
list
);
}
}
...
@@ -306,7 +306,6 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -306,7 +306,6 @@ namespace Edu.WebApi.Controllers.Public
/// <returns></returns>
/// <returns></returns>
public
ApiResult
AddOrUpdateFileStore
()
public
ApiResult
AddOrUpdateFileStore
()
{
{
var
parms
=
RequestParm
;
var
query
=
Common
.
Plugin
.
JsonHelper
.
DeserializeObject
<
RB_File_Store
>(
RequestParm
.
Msg
.
ToString
());
var
query
=
Common
.
Plugin
.
JsonHelper
.
DeserializeObject
<
RB_File_Store
>(
RequestParm
.
Msg
.
ToString
());
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
...
@@ -319,11 +318,8 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -319,11 +318,8 @@ namespace Edu.WebApi.Controllers.Public
{
{
if
((
int
)
query
.
StoreType
==
0
)
if
((
int
)
query
.
StoreType
==
0
)
{
{
return
ApiResult
.
Failed
(
"请选择存储位置"
);
return
ApiResult
.
Failed
(
"请选择存储位置"
);
}
}
if
(
query
.
ID
==
0
)
if
(
query
.
ID
==
0
)
{
{
query
.
CreateDate
=
System
.
DateTime
.
Now
;
query
.
CreateDate
=
System
.
DateTime
.
Now
;
...
@@ -348,10 +344,11 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -348,10 +344,11 @@ namespace Edu.WebApi.Controllers.Public
/// <returns></returns>
/// <returns></returns>
public
ApiResult
GetFileStoreDetail
()
public
ApiResult
GetFileStoreDetail
()
{
{
var
parms
=
RequestParm
;
var
query
=
new
RB_File_Store
var
query
=
new
RB_File_Store
();
{
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
Group_Id
=
base
.
UserInfo
.
Group_Id
,
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
School_Id
=
base
.
UserInfo
.
School_Id
};
var
model
=
publicModule
.
GetFileStoreList
(
query
).
FirstOrDefault
();
var
model
=
publicModule
.
GetFileStoreList
(
query
).
FirstOrDefault
();
if
(
model
==
null
)
if
(
model
==
null
)
{
{
...
@@ -379,9 +376,11 @@ namespace Edu.WebApi.Controllers.Public
...
@@ -379,9 +376,11 @@ namespace Edu.WebApi.Controllers.Public
/// <returns></returns>
/// <returns></returns>
public
ApiResult
GetDefaultFileStore
()
public
ApiResult
GetDefaultFileStore
()
{
{
var
query
=
new
RB_File_Store
();
var
query
=
new
RB_File_Store
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
{
query
.
School_Id
=
base
.
UserInfo
.
School_Id
;
Group_Id
=
base
.
UserInfo
.
Group_Id
,
School_Id
=
base
.
UserInfo
.
School_Id
};
var
model
=
publicModule
.
GetFileStoreList
(
query
).
Where
(
x
=>
x
.
IsDefault
==
1
).
FirstOrDefault
();
var
model
=
publicModule
.
GetFileStoreList
(
query
).
Where
(
x
=>
x
.
IsDefault
==
1
).
FirstOrDefault
();
if
(
model
==
null
)
if
(
model
==
null
)
{
{
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
aa887a90
...
@@ -639,7 +639,7 @@ namespace Edu.WebApi.Controllers.User
...
@@ -639,7 +639,7 @@ namespace Edu.WebApi.Controllers.User
Sex
=
qitem
.
Sex
==
0
?
"男"
:
"女"
,
Sex
=
qitem
.
Sex
==
0
?
"男"
:
"女"
,
BirthDate
=
Common
.
ConvertHelper
.
FormatDate
(
qitem
.
BirthDate
),
BirthDate
=
Common
.
ConvertHelper
.
FormatDate
(
qitem
.
BirthDate
),
Education
=
qitem
.
Education
.
ToName
(),
Education
=
qitem
.
Education
.
ToName
(),
LeaveStatus
=
qitem
.
LeaveStatus
.
ToName
(),
LeaveStatus
=
qitem
.
LeaveStatus
.
ToName
(),
qitem
.
EmployeeId
,
qitem
.
EmployeeId
,
qitem
.
Account
,
qitem
.
Account
,
qitem
.
AccountType
,
qitem
.
AccountType
,
...
@@ -768,7 +768,7 @@ namespace Edu.WebApi.Controllers.User
...
@@ -768,7 +768,7 @@ namespace Edu.WebApi.Controllers.User
public
ApiResult
GetChildDepartment
()
public
ApiResult
GetChildDepartment
()
{
{
int
DeptId
=
base
.
ParmJObj
.
GetInt
(
"DeptId"
);
int
DeptId
=
base
.
ParmJObj
.
GetInt
(
"DeptId"
);
if
(
DeptId
<=
0
)
if
(
DeptId
<=
0
)
{
{
return
ApiResult
.
ParamIsNull
(
message
:
"请选择部门编号!"
);
return
ApiResult
.
ParamIsNull
(
message
:
"请选择部门编号!"
);
}
}
...
@@ -804,8 +804,6 @@ namespace Edu.WebApi.Controllers.User
...
@@ -804,8 +804,6 @@ namespace Edu.WebApi.Controllers.User
return
ApiResult
.
Success
(
data
:
obj
);
return
ApiResult
.
Success
(
data
:
obj
);
}
}
/// <summary>
/// <summary>
/// 添加修改部门
/// 添加修改部门
/// </summary>
/// </summary>
...
@@ -958,7 +956,7 @@ namespace Edu.WebApi.Controllers.User
...
@@ -958,7 +956,7 @@ namespace Edu.WebApi.Controllers.User
Dept_Id
=
base
.
ParmJObj
.
GetInt
(
"Dept_Id"
),
Dept_Id
=
base
.
ParmJObj
.
GetInt
(
"Dept_Id"
),
QDeptIds
=
base
.
ParmJObj
.
GetStringValue
(
"QDeptIds"
),
QDeptIds
=
base
.
ParmJObj
.
GetStringValue
(
"QDeptIds"
),
EmployeeName
=
base
.
ParmJObj
.
GetStringValue
(
"EmployeeName"
),
//姓名
EmployeeName
=
base
.
ParmJObj
.
GetStringValue
(
"EmployeeName"
),
//姓名
AccountTypeStr
=
base
.
ParmJObj
.
GetStringValue
(
"AccountTypeStr"
),
//人员类型【逗号分割】
AccountTypeStr
=
base
.
ParmJObj
.
GetStringValue
(
"AccountTypeStr"
),
//人员类型【逗号分割】
};
};
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
query
.
Group_Id
=
base
.
UserInfo
.
Group_Id
;
var
list
=
employeeModule
.
GetEmployeeListModule
(
query
);
var
list
=
employeeModule
.
GetEmployeeListModule
(
query
);
...
@@ -979,5 +977,38 @@ namespace Edu.WebApi.Controllers.User
...
@@ -979,5 +977,38 @@ namespace Edu.WebApi.Controllers.User
}));
}));
}
}
#
endregion
#
endregion
#
region
枚举相列表
/// <summary>
/// 获取学历列表
/// </summary>
/// <returns></returns>
public
ApiResult
GetEducationList
()
{
var
list
=
Common
.
Plugin
.
EnumHelper
.
EnumToList
(
typeof
(
EducationEnum
));
list
.
Insert
(
0
,
new
EnumItem
()
{
Id
=
0
,
Name
=
"不限"
});
return
ApiResult
.
Success
(
data
:
list
);
}
/// <summary>
/// 获取离职状态列表
/// </summary>
/// <returns></returns>
public
ApiResult
GetLeaveStatus
()
{
var
list
=
Common
.
Plugin
.
EnumHelper
.
EnumToList
(
typeof
(
LeaveStatusEnum
));
list
.
Insert
(
0
,
new
EnumItem
()
{
Id
=
0
,
Name
=
"不限"
});
return
ApiResult
.
Success
(
data
:
list
);
}
#
endregion
}
}
}
}
\ No newline at end of file
education.sln
View file @
aa887a90
...
@@ -37,7 +37,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.User", "Edu.Modu
...
@@ -37,7 +37,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.User", "Edu.Modu
EndProject
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Public", "Edu.Module.Public\Edu.Module.Public.csproj", "{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Public", "Edu.Module.Public\Edu.Module.Public.csproj", "{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.
LogModule", "Edu.LogModule\Edu.LogModule.csproj", "{5EF242B0-95E1-4D6B-884A-AD0050BA1818
}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.
Module.Log", "Edu.Module.Log\Edu.Module.Log.csproj", "{809E4C87-97F6-4DCB-9232-9C70ECEF2655
}"
EndProject
EndProject
Global
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
@@ -89,10 +89,10 @@ Global
...
@@ -89,10 +89,10 @@ Global
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Release|Any CPU.Build.0 = Release|Any CPU
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5}.Release|Any CPU.Build.0 = Release|Any CPU
{
5EF242B0-95E1-4D6B-884A-AD0050BA1818
}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{
809E4C87-97F6-4DCB-9232-9C70ECEF2655
}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{
5EF242B0-95E1-4D6B-884A-AD0050BA1818
}.Debug|Any CPU.Build.0 = Debug|Any CPU
{
809E4C87-97F6-4DCB-9232-9C70ECEF2655
}.Debug|Any CPU.Build.0 = Debug|Any CPU
{
5EF242B0-95E1-4D6B-884A-AD0050BA1818
}.Release|Any CPU.ActiveCfg = Release|Any CPU
{
809E4C87-97F6-4DCB-9232-9C70ECEF2655
}.Release|Any CPU.ActiveCfg = Release|Any CPU
{
5EF242B0-95E1-4D6B-884A-AD0050BA1818
}.Release|Any CPU.Build.0 = Release|Any CPU
{
809E4C87-97F6-4DCB-9232-9C70ECEF2655
}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
HideSolutionNode = FALSE
...
@@ -108,7 +108,7 @@ Global
...
@@ -108,7 +108,7 @@ Global
{F3E4D4C5-FD08-44DE-AB65-850071BE7FEF} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{F3E4D4C5-FD08-44DE-AB65-850071BE7FEF} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{AD259CCC-048A-4F65-A368-91B8B4A9F200} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{AD259CCC-048A-4F65-A368-91B8B4A9F200} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{8E34CE2D-AAF3-481C-A5E3-5AECC8F7F1B5} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{
5EF242B0-95E1-4D6B-884A-AD0050BA1818
} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{
809E4C87-97F6-4DCB-9232-9C70ECEF2655
} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
EndGlobalSection
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8763B446-FAB1-46BF-9743-F2628533241B}
SolutionGuid = {8763B446-FAB1-46BF-9743-F2628533241B}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment