-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskybrud.build.json
39 lines (39 loc) · 975 Bytes
/
skybrud.build.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
{
"tasks": {
"postBuild": [
{
"alias": "zip",
"destination": "releases/github/{packageName}.v{version}.zip",
"files": [
{
"source": "src/{packageName}/bin/Release/net472/",
"destination": "bin/",
"patterns": [
"Skybrud.Integrations.BorgerDk.dll",
"Skybrud.Integrations.BorgerDk.xml",
"{packageName}.dll",
"{packageName}.xml"
]
},
{
"source": "src/{packageName}/App_Plugins/Skybrud.BorgerDk",
"destination": "App_Plugins/Skybrud.BorgerDk/",
"patterns": [
"**/*.js",
"**/*.css",
"**/*.html",
"**/*.xml",
"package.manifest"
]
},
{
"source": "src",
"patterns": [
"LICENSE.html"
]
}
]
}
]
}
}