forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
111 lines (105 loc) · 4.25 KB
/
project.json
File metadata and controls
111 lines (105 loc) · 4.25 KB
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
{
"name": "Microsoft.PowerShell.Commands.Management",
"version": "1.0.0-*",
"buildOptions": {
"nowarn": [ "CS1570" ],
"xmlDoc": true,
"keyFile": "../signing/visualstudiopublic.snk",
"delaySign": true,
"publicSign": false,
"warningsAsErrors": true,
"allowUnsafe": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": [ "UNIX" ]
}
}
},
"dependencies": {
"Microsoft.PowerShell.Security": "1.0.0-*"
},
"frameworks": {
"netstandard1.6": {
"imports": [ "dnxcore50" ],
"buildOptions": {
"define": [ "CORECLR" ],
"compile": {
"exclude": [
"commands/management/ClearRecycleBinCommand.cs",
"commands/management/ControlPanelItemCommand.cs",
"commands/management/CommitTransactionCommand.cs",
"commands/management/Eventlog.cs",
"commands/management/GetClipboardCommand.cs",
"commands/management/GetTransactionCommand.cs",
"commands/management/GetWMIObjectCommand.cs",
"commands/management/Hotfix.cs",
"commands/management/InvokeWMIMethodCommand.cs",
"commands/management/RegisterWMIEventCommand.cs",
"commands/management/RemoveWMIObjectCommand.cs",
"commands/management/RollbackTransactionCommand.cs",
"commands/management/SetClipboardCommand.cs",
"commands/management/SetWMIInstanceCommand.cs",
"commands/management/StartTransactionCommand.cs",
"commands/management/UseTransactionCommand.cs",
"commands/management/WMIHelper.cs",
"commands/management/WebServiceProxy.cs",
"singleshell/installer/MshManagementMshSnapin.cs",
"gen/EventlogResources.cs",
"gen/TransactionResources.cs",
"gen/WebServiceResources.cs",
"gen/HotFixResources.cs",
"gen/ControlPanelResources.cs",
"gen/WmiResources.cs",
"gen/ManagementMshSnapInResources.cs",
"gen/ClearRecycleBinResources.cs",
"gen/ClipboardResources.cs"
]
},
"embed": {
"exclude": [
"resources/EventlogResources.resx",
"resources/TransactionResources.resx",
"resources/WebServiceResources.resx",
"resources/HotFixResources.resx",
"resources/ControlPanelResources.resx",
"resources/WmiResources.resx",
"resources/ManagementMshSnapInResources.resx",
"resources/ClearRecycleBinResources.resx",
"resources/ClipboardResources.resx"
]
}
},
"dependencies": {
"System.ServiceProcess.ServiceController": "4.1.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.Ping": "4.0.0"
}
},
"net451": {
"frameworkAssemblies": {
"System.ServiceProcess": "",
"System.Windows.Forms": "",
"System.Drawing": "",
"System.Web.Services": ""
},
"dependencies": {
"Microsoft.WSMan.Management": "1.0.0-*"
},
"buildOptions": {
"compile": {
"exclude": [
"commands/management/ControlPanelItemCommand.cs",
"gen/ControlPanelResources.cs"
]
},
"embed": {
"exclude": [
"resources/ControlPanelResources.resx"
]
}
}
}
}
}