FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SmartCode/src/SmartCode/BuildContext.cs at master · dotnetcore/SmartCode · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
dotnetcore
/
SmartCode
Public
Notifications
You must be signed in to change notification settings
Fork
168
Star
578
Code
Issues
15
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SmartCode
/
src
/
SmartCode
/
BuildContext.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (34 loc) · 1.14 KB
Breadcrumbs
SmartCode
/
src
/
SmartCode
/
BuildContext.cs
Copy path
File metadata and controls
37 lines (34 loc) · 1.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Text
;
using
System
.
Threading
;
using
System
.
Threading
.
Tasks
;
using
SmartCode
.
Configuration
;
namespace
SmartCode
{
public
class
BuildContext
{
public
Project
Project
{
get
;
set
;
}
public
IDataSource
DataSource
{
get
;
set
;
}
public
IPluginManager
PluginManager
{
get
;
set
;
}
#region Current
public
String
BuildKey
{
get
;
set
;
}
public
Build
Build
{
get
;
set
;
}
public
String
Result
{
get
;
set
;
}
public
Output
Output
{
get
;
set
;
}
#endregion
public
object
this
[
string
key
]
{
get
=>
Items
[
key
]
;
set
=>
Items
[
key
]
=
value
;
}
public
IDictionary
<
String
,
object
>
Items
{
get
;
set
;
}
=
new
Dictionary
<
String
,
object
>
(
)
;
public
TItem
GetItem
<
TItem
>
(
string
key
)
{
return
(
TItem
)
Items
[
key
]
;
}
public
void
SetItem
(
string
key
,
object
item
)
{
Items
[
key
]
=
item
;
}
public
IList
<
BuildContext
>
DependOn
{
get
;
set
;
}
//public Task BuildTask { get; set; }
public
CountdownEvent
CountDown
{
get
;
}
=
new
CountdownEvent
(
1
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL