dev_tasks 0.0.166 → 0.0.167
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/commit.rb +3 -1
- data/lib/dev_tasks.rb +19 -4
- data/lib/spec.json +1 -1
- data/spec/dependencies_spec.rb +1 -1
- data/spec/dev_tasks_spec.rb +2 -2
- data/spec/test_data/cpp_projects/helloLib/rakefile.rb +1 -0
- data/spec/test_data/csharp_projects/helloDll/log/DEV.default.json +9 -9
- data/spec/test_data/ruby_projects/helloGem/log/DEV.json +60 -0
- data/spec/test_data/ruby_projects/helloGem/rakefile.rb +3 -0
- metadata +4 -4
- data/spec/test_data/example.rb +0 -2
- data/spec/test_data/ruby_project/rakefile.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8838ce004f08edc01bd49b6a6434de74e40ca642
|
4
|
+
data.tar.gz: dc74ef9d48510e68b2e5260de572f5f7e081aa84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d722e0d659bfbfdab05568d714777589d1e625b50ef0d778f498922ca700efeaaf4ed3ae19dc8440abfbdf2b4793bb22956b2749cd986cf90c1ed6d0ef955437
|
7
|
+
data.tar.gz: 7945a95455faf917e4778ae87b241e429962c73496d085d567754dded2b99f6df8fa39928c71fb07e0e63adb63d9251f41121412a2d6f6afd334f64d838e234f
|
data/lib/commit.rb
CHANGED
@@ -4,7 +4,9 @@ require_relative('./environment.rb')
|
|
4
4
|
class Commit < CommandArray
|
5
5
|
def update
|
6
6
|
if(Dir.exists?(".git"))
|
7
|
-
if(
|
7
|
+
if(`git status`.include?('nothing to commit') || `git status`.include?('untracked files present'))
|
8
|
+
# skip
|
9
|
+
else
|
8
10
|
if(File.exists?('commit.message') && File.read('commit.message').gsub(/\s+/, "").length > 0)
|
9
11
|
self.add "git commit -a -v -m \"#{File.read('commit.message')}\""
|
10
12
|
self.add "<%File.open('commit.message','w'){|f|f.write('')}%>"
|
data/lib/dev_tasks.rb
CHANGED
@@ -90,11 +90,26 @@ class DevTasks < Hash
|
|
90
90
|
|
91
91
|
def define_task task_name
|
92
92
|
if(!Rake::Task.task_defined?(task_name))
|
93
|
-
ruby="desc '#{task_name}
|
93
|
+
ruby="desc '#{DevTasks.description(task_name)} ';task :#{task_name} do;DEV_TASKS.execute_task '#{task_name}';end"
|
94
94
|
eval(ruby)
|
95
95
|
end
|
96
96
|
end
|
97
97
|
|
98
|
+
def self.description task_name
|
99
|
+
descriptions={
|
100
|
+
"add"=>"add untracked files to revision control system",
|
101
|
+
"build"=>"executes build commands",
|
102
|
+
"test"=>"executes test commands",
|
103
|
+
"setup"=>"executes setup commands",
|
104
|
+
"commit"=>"commit changes to revision control system"
|
105
|
+
}
|
106
|
+
if descriptions.has_key?(task_name.to_s)
|
107
|
+
descriptions[task_name.to_s]
|
108
|
+
else
|
109
|
+
"#{task_name} task"
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
98
113
|
def update_tasks
|
99
114
|
dev_task_defaults=Array.new
|
100
115
|
self[:commands].each do |key,array|
|
@@ -166,7 +181,7 @@ task :help do
|
|
166
181
|
puts "use rake -T to see available tasks"
|
167
182
|
end
|
168
183
|
|
169
|
-
desc 'rake projects defined in DEV_TASKS[:dependencies][:projects]'
|
184
|
+
#desc 'rake projects defined in DEV_TASKS[:dependencies][:projects]'
|
170
185
|
task :rake_dependencies_projects do
|
171
186
|
Console.announce_task_start "rake_dependencies_projects"
|
172
187
|
DEV_TASKS[:dependencies][:projects].each{|project|
|
@@ -175,7 +190,7 @@ task :rake_dependencies_projects do
|
|
175
190
|
}
|
176
191
|
end
|
177
192
|
|
178
|
-
desc 'clobber projects defined in DEV_TASKS[:dependencies][:projects]'
|
193
|
+
#desc 'clobber projects defined in DEV_TASKS[:dependencies][:projects]'
|
179
194
|
task :clobber_dependencies_projects do
|
180
195
|
Console.announce_task_start "clobber_dependencies_projects"
|
181
196
|
DEV_TASKS[:dependencies][:projects].each{|project|
|
@@ -184,7 +199,7 @@ task :clobber_dependencies_projects do
|
|
184
199
|
}
|
185
200
|
end
|
186
201
|
|
187
|
-
desc 'clean projects defined in DEV_TASKS[:dependencies][:projects]'
|
202
|
+
#desc 'clean projects defined in DEV_TASKS[:dependencies][:projects]'
|
188
203
|
task :clean_dependencies_projects do
|
189
204
|
Console.announce_task_start "clean_dependencies_projects"
|
190
205
|
DEV_TASKS[:dependencies][:projects].each{|project|
|
data/lib/spec.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"dev_tasks","version":"0.0.
|
1
|
+
{"name":"dev_tasks","version":"0.0.167"}
|
data/spec/dependencies_spec.rb
CHANGED
@@ -21,7 +21,7 @@ describe Dependencies do
|
|
21
21
|
end
|
22
22
|
|
23
23
|
it "should be able to extract ruby dependencies" do
|
24
|
-
system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/
|
24
|
+
system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/ruby_projects/helloGem/rakefile.rb")
|
25
25
|
expect(system_deps.length).to eq(2)
|
26
26
|
expect(system_deps.include?('json')).to eq(true)
|
27
27
|
end
|
data/spec/dev_tasks_spec.rb
CHANGED
@@ -2,9 +2,9 @@ require_relative '../lib/dev_tasks.rb'
|
|
2
2
|
|
3
3
|
describe DevTasks do
|
4
4
|
it "should be able to load example ruby project" do
|
5
|
-
Dir.chdir("#{File.dirname(__FILE__)}/test_data/
|
5
|
+
Dir.chdir("#{File.dirname(__FILE__)}/test_data/ruby_projects/helloGem") do
|
6
6
|
ruby_dev_task=DevTasks.new
|
7
|
-
expect(ruby_dev_task[:name]).to eq('
|
7
|
+
expect(ruby_dev_task[:name]).to eq('helloGem')
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Debug /p:Platform=\"Any CPU\"",
|
38
38
|
"timeout": 0,
|
39
39
|
"directory": "",
|
40
|
-
"exit_code": "pid
|
41
|
-
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/30/2014 3:29:31 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Debug|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.25\n",
|
40
|
+
"exit_code": "pid 3376 exit 0",
|
41
|
+
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/31/2014 12:37:40 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Debug|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.23\n",
|
42
42
|
"error": "",
|
43
43
|
"machine_name": "",
|
44
44
|
"user_name": "",
|
45
|
-
"start_time": "2014-12-
|
46
|
-
"end_time": "2014-12-
|
45
|
+
"start_time": "2014-12-31 12:37:40 -0700",
|
46
|
+
"end_time": "2014-12-31 12:37:40 -0700",
|
47
47
|
"elapsed": "[0s]"
|
48
48
|
},
|
49
49
|
{
|
50
50
|
"input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Release /p:Platform=\"Any CPU\"",
|
51
51
|
"timeout": 0,
|
52
52
|
"directory": "",
|
53
|
-
"exit_code": "pid
|
54
|
-
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/30/2014 3:29:31 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Release|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.23\n",
|
53
|
+
"exit_code": "pid 2836 exit 0",
|
54
|
+
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/31/2014 12:37:40 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Release|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.28\n",
|
55
55
|
"error": "",
|
56
56
|
"machine_name": "",
|
57
57
|
"user_name": "",
|
58
|
-
"start_time": "2014-12-
|
59
|
-
"end_time": "2014-12-
|
58
|
+
"start_time": "2014-12-31 12:37:40 -0700",
|
59
|
+
"end_time": "2014-12-31 12:37:41 -0700",
|
60
60
|
"elapsed": "[0s]"
|
61
61
|
}
|
62
62
|
]
|
@@ -74,7 +74,7 @@
|
|
74
74
|
]
|
75
75
|
}
|
76
76
|
},
|
77
|
-
"newest_source_file": "
|
77
|
+
"newest_source_file": "Properties/AssemblyInfo.cs",
|
78
78
|
"newest_artifact_file": "bin/Net2.0/Release/helloDll.dll",
|
79
79
|
"up_to_date": false
|
80
80
|
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"name": "helloGem",
|
3
|
+
"svn_exports": {
|
4
|
+
},
|
5
|
+
"scm": "none",
|
6
|
+
"scm_origin": "",
|
7
|
+
"branch": null,
|
8
|
+
"command_order": [
|
9
|
+
"pull",
|
10
|
+
"upgrade",
|
11
|
+
"setup",
|
12
|
+
"add",
|
13
|
+
"build",
|
14
|
+
"test",
|
15
|
+
"commit",
|
16
|
+
"push",
|
17
|
+
"verify",
|
18
|
+
"publish"
|
19
|
+
],
|
20
|
+
"relative_directory": "LEP-open/DevTasksGem/spec/test_data/ruby_projects/helloGem",
|
21
|
+
"working_directory": "/Users/louie/wrk/LEP-open/DevTasksGem/spec/test_data/ruby_projects/helloGem",
|
22
|
+
"context": "wrk",
|
23
|
+
"machine": "bluefin-2",
|
24
|
+
"platform": "universal.x86_64-darwin14",
|
25
|
+
"dev_root": "/Users/louie",
|
26
|
+
"settings": {
|
27
|
+
"colorize": true
|
28
|
+
},
|
29
|
+
"files": {
|
30
|
+
"source": "rakefile.rb",
|
31
|
+
"build": "helloGem.gemspec",
|
32
|
+
"artifact": "helloGem-0.0.1.gem"
|
33
|
+
},
|
34
|
+
"commands": {
|
35
|
+
"build": [
|
36
|
+
{
|
37
|
+
"input": "gem build helloGem.gemspec",
|
38
|
+
"timeout": 0,
|
39
|
+
"directory": "",
|
40
|
+
"exit_code": "pid 1511 exit 0",
|
41
|
+
"output": " Successfully built RubyGem\n Name: helloGem\n Version: 0.0.1\n File: helloGem-0.0.1.gem\n",
|
42
|
+
"error": "",
|
43
|
+
"machine_name": "",
|
44
|
+
"user_name": "",
|
45
|
+
"start_time": "2015-01-02 10:50:03 -0700",
|
46
|
+
"end_time": "2015-01-02 10:50:03 -0700",
|
47
|
+
"elapsed": "[0s]"
|
48
|
+
}
|
49
|
+
]
|
50
|
+
},
|
51
|
+
"dependencies": {
|
52
|
+
"ruby": [
|
53
|
+
"json",
|
54
|
+
"yaml"
|
55
|
+
]
|
56
|
+
},
|
57
|
+
"newest_source_file": "rakefile.rb",
|
58
|
+
"newest_artifact_file": "helloGem-0.0.1.gem",
|
59
|
+
"up_to_date": false
|
60
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dev_tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.167
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
@@ -109,11 +109,11 @@ files:
|
|
109
109
|
- spec/spec_helper.rb
|
110
110
|
- spec/test_data/cpp_projects/helloLib/rakefile.rb
|
111
111
|
- spec/test_data/csharp_projects/helloDll/rakefile.rb
|
112
|
-
- spec/test_data/
|
113
|
-
- spec/test_data/ruby_project/rakefile.rb
|
112
|
+
- spec/test_data/ruby_projects/helloGem/rakefile.rb
|
114
113
|
- spec/test_data/cpp_projects/helloLib/DEV.default..json
|
115
114
|
- spec/test_data/csharp_projects/helloDll/DEV.default..json
|
116
115
|
- spec/test_data/csharp_projects/helloDll/log/DEV.default.json
|
116
|
+
- spec/test_data/ruby_projects/helloGem/log/DEV.json
|
117
117
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net2.0.csproj
|
118
118
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net3.5.csproj
|
119
119
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net4.0.csproj
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
version: '0'
|
144
144
|
requirements: []
|
145
145
|
rubyforge_project:
|
146
|
-
rubygems_version: 2.0.
|
146
|
+
rubygems_version: 2.0.14
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: development rake tasks
|
data/spec/test_data/example.rb
DELETED
File without changes
|