forked from milesibastos/OFXSharp
-
Notifications
You must be signed in to change notification settings - Fork 16
/
gruntfile.js
64 lines (56 loc) · 1.71 KB
/
gruntfile.js
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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
nugetpush: {
dist: {
src: 'pub/<%= pkg.name %>.<%= pkg.version %>.0.nupkg'
}
},
shell: {
nugetpack: {
options: {
stdout: true
},
command: 'md pub & nuget pack Lib/OfxSharp.csproj -Prop Configuration=Release -OutputDirectory pub'
},
gitcommit: {
options: {
stdout: true
},
command: 'git commit -a -m "version <%= pkg.version %>'
}
},
assemblyinfo: {
options: {
files: ['Lib/OfxSharp.csproj'],
info: {
description: '<%= pkg.description %>',
configuration: 'Release',
company: '<%= pkg.author %>',
product: '<%= pkg.name %>',
copyright: 'Copyright © <%= pkg.author %> ' + (new Date().getYear() + 1900),
version: '<%= pkg.version %>.0',
fileVersion: '<%= pkg.version %>.0'
}
}
},
msbuild: {
src: ['OfxSharp.sln'],
options: {
verbosity: 'minimal',
projectConfiguration: 'Release',
targets: ['Clean', 'Rebuild'],
stdout: true
}
},
nunit: {
options: {
files: ['Tests/bin/Release/OfxSharp.Tests.dll']
}
}
});
grunt.registerTask('default', ['assemblyinfo', 'msbuild', 'nunit', 'shell:nugetpack']);
grunt.registerTask('push', ['default', 'nugetpush', 'shell:gitcommit']);
};