This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.json
126 lines (126 loc) · 2.78 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"language": "neutral",
"copyright": "Copyright © 2016 Shmueli Englard",
"version": "2.0.11-*",
"description": "Exposes the hidden System.AppDomain in .NET Core. Required supporting classes are also exposed.",
"authors":
[
"Shmueli Englard"
],
"title": "System.AppDomain",
"dependencies":
{
"StyleCop.Analyzers":
{
"type": "build",
"version": "1.0.0",
"include": "analyzers"
}
},
"frameworks":
{
"dnxcore50":
{
"dependencies":
{
"System.Linq": "4.0.0.0",
"System.Linq.Expressions": "4.0.0",
"System.Reflection": "4.0.10.0",
"System.Reflection.TypeExtensions": "4.0.1-beta-23409",
"System.Runtime.InteropServices": "4.0.10.0"
}
},
"netstandard1.3":
{
"dependencies":
{
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime.InteropServices": "4.1.0"
}
},
"netcoreapp10":
{
"dependencies":
{
"Microsoft.NETCore.App":
{
"type": "platform",
"version": "1.0.0"
},
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime.InteropServices": "4.1.0"
}
}
},
"configurations":
{
"Test":
{
"buildOptions":
{
"define":
[
"TEST"
],
"emitEntryPoint": true,
"debugType": "full",
"optimize": false
}
}
},
"packOptions":
{
"repository":
{
"type": "git",
"url": "https://github.com/SamuelEnglard/System.AppDomain.git"
},
"owners":
[
"Shmueli Englard"
],
"summary": "Exposes the hidden System.AppDomain in .NET Core",
"tags":
[
"AppDomain",
".NET Core"
],
"projectUrl": "https://github.com/SamuelEnglard/System.AppDomain",
"licenseUrl": "https://github.com/SamuelEnglard/System.AppDomain/blob/master/LICENSE",
"copyright": "Copyright © 2016 Shmueli Englard",
"language": "en-us",
"releaseNotes": "Bug fixes, lowered NET Standard, and better ability to link to hidden events"
},
"buildOptions":
{
"keyFile": "System.AppDomain.snk",
"xmlDoc": true,
"nowarn":
[
"CC0001",
"RECS0145",
"RECS0129",
"SA1633",
"SA1200",
"SA1127",
"SA1311",
"SA1101",
"SA1600",
"SA1201",
"SA1214",
"SA1516",
"SA1513",
"SA1202",
"RECS0091",
"RCS1024"
]
}
}