-
Notifications
You must be signed in to change notification settings - Fork 2
/
gruntfile.js
58 lines (50 loc) · 1.58 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
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/*.nupkg'
}
},
shell: {
nugetpack: {
options: {
stdout: true
},
command: 'md pub & nuget pack EvolveSharp/EvolveSharp.csproj -Prop Configuration=Release -OutputDirectory pub'
}
},
assemblyinfo: {
options: {
files: ['EvolveSharp/EvolveSharp.csproj', 'Samples/Tsp/Tsp.csproj', 'Tests/UnitTests/UnitTests.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: ['EvolveSharp.sln'],
options: {
verbosity: 'minimal',
projectConfiguration: 'Release',
targets: ['Clean', 'Rebuild'],
stdout: true
}
},
nunit: {
options: {
files: ['Tests/UnitTests/bin/Release/UnitTests.dll']
}
}
});
grunt.registerTask('default', ['assemblyinfo', 'msbuild', 'nunit', 'shell:nugetpack']);
grunt.registerTask('push', ['default', 'nugetpush']);
};