dev_tasks 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dev_tasks.rb +4 -6
- data/lib/push.rb +3 -1
- data/lib/spec.json +1 -1
- data/spec/test_data/csharp_projects/helloDll/log/DEV.default.json +10 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7adfd02d665ce953f778e069c4826ec537341ad5
|
4
|
+
data.tar.gz: 10eaf828901cb039d38935f413b3282c4073cda8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9550e2b8062fb429443ebee30b0e9d25fd2f6c21ed3a3dc08b6703a3a0508e722f72342f58eaf900cd5b6541d992c078224368d5aad559bf6bf064926b3bba30
|
7
|
+
data.tar.gz: 4db9243e5a4dde20a17533564a753e39a9c0c1b40d9f43ba0001d1f13c758223b101cf82c5237853799f4df056f665e5e3af13fb7239f76dbcdd0211fc4bbdca
|
data/lib/dev_tasks.rb
CHANGED
@@ -29,9 +29,7 @@ class DevTasks < Hash
|
|
29
29
|
self[:branch]=Environment.branch
|
30
30
|
|
31
31
|
|
32
|
-
|
33
|
-
|
34
|
-
self[:command_order]=['pull','upgrade','setup','add','build','test','commit','push','verify','publish']
|
32
|
+
self[:task_order]=['pull','upgrade','setup','add','build','test','commit','push','verify','publish']
|
35
33
|
self[:relative_directory]=Environment.relative_directory
|
36
34
|
self[:working_directory]=Environment.working_directory
|
37
35
|
self[:context]=Environment.context
|
@@ -80,7 +78,7 @@ class DevTasks < Hash
|
|
80
78
|
self[:up_to_date] = false
|
81
79
|
if(allartifactsexist && !self[:newest_artifact].nil? && !self[:newest_src_file].nil? && File.exists?(self[:newest_artifact]) && File.exists?(self[:newest_src_file]))
|
82
80
|
if(File.mtime(self[:newest_artifact]) > File.mtime(self[:newest_src_file]))
|
83
|
-
self[:
|
81
|
+
self[:task_order]=['upgrade'] if(File.mtime(self[:newest_artifact]) > File.mtime(self[:newest_src_file]))
|
84
82
|
self[:up_to_date]=true
|
85
83
|
end
|
86
84
|
self[:newest_artifact_file_mtime]=File.mtime(self[:newest_artifact_file]).to_s
|
@@ -164,10 +162,10 @@ end
|
|
164
162
|
DEV_TASKS=DevTasks.new
|
165
163
|
DEV=DEV_TASKS
|
166
164
|
|
167
|
-
desc 'executes tasks in order of
|
165
|
+
desc 'executes tasks in order of task_order, if they are defined'
|
168
166
|
task :dev_tasks_default do
|
169
167
|
DEV_TASKS.update
|
170
|
-
DEV_TASKS[:
|
168
|
+
DEV_TASKS[:task_order].each{|c|
|
171
169
|
Rake::Task[c].invoke if(Rake::Task.task_defined?(c))
|
172
170
|
}
|
173
171
|
puts "Total Time " + DEV_TASKS.timer.elapsed_str
|
data/lib/push.rb
CHANGED
data/lib/spec.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"dev_tasks","version":"1.0.
|
1
|
+
{"name":"dev_tasks","version":"1.0.7"}
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"colorize": true
|
28
28
|
},
|
29
29
|
"files": {
|
30
|
-
"source": "rakefile.rb Properties/AssemblyInfo.cs helloDll.Net2.0.csproj helloDll.Net3.5.csproj helloDll.Net4.0.csproj helloDll.Net4.5.csproj helloDll.cs helloDll.sln DEV.default..json
|
30
|
+
"source": "rakefile.rb Properties/AssemblyInfo.cs helloDll.Net2.0.csproj helloDll.Net3.5.csproj helloDll.Net4.0.csproj helloDll.Net4.5.csproj helloDll.cs helloDll.sln DEV.default..json obj/Debug/helloDll.Net2.0.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net3.5.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net4.0.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net4.5.csproj.FileListAbsolute.txt obj/Release/helloDll.Net2.0.csproj.FileListAbsolute.txt obj/Release/helloDll.Net3.5.csproj.FileListAbsolute.txt obj/Release/helloDll.Net4.0.csproj.FileListAbsolute.txt obj/Release/helloDll.Net4.5.csproj.FileListAbsolute.txt",
|
31
31
|
"build": "helloDll.sln",
|
32
32
|
"artifact": "bin/Net2.0/Debug/helloDll.dll bin/Net2.0/Release/helloDll.dll bin/Net3.5/Debug/helloDll.dll bin/Net3.5/Release/helloDll.dll bin/Net4.0/Debug/helloDll.dll bin/Net4.0/Release/helloDll.dll bin/Net4.5/Debug/helloDll.dll bin/Net4.5/Release/helloDll.dll obj/Debug/helloDll.dll obj/Release/helloDll.dll"
|
33
33
|
},
|
@@ -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 1/2/2015 7:50:11 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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 3712 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 1/2/2015 9:55:50 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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",
|
42
42
|
"error": "",
|
43
43
|
"machine_name": "",
|
44
44
|
"user_name": "",
|
45
|
-
"start_time": "2015-01-02
|
46
|
-
"end_time": "2015-01-02
|
45
|
+
"start_time": "2015-01-02 21:55:50 -0700",
|
46
|
+
"end_time": "2015-01-02 21:55:50 -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 1/2/2015 7:50:11 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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",
|
53
|
+
"exit_code": "pid 5768 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 1/2/2015 9:55:50 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\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\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\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\\dev_tasks.gem\\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",
|
55
55
|
"error": "",
|
56
56
|
"machine_name": "",
|
57
57
|
"user_name": "",
|
58
|
-
"start_time": "2015-01-02
|
59
|
-
"end_time": "2015-01-02
|
58
|
+
"start_time": "2015-01-02 21:55:50 -0700",
|
59
|
+
"end_time": "2015-01-02 21:55:50 -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": "obj/Debug/helloDll.Net2.0.csproj.FileListAbsolute.txt",
|
78
78
|
"newest_artifact_file": "bin/Net2.0/Debug/helloDll.dll",
|
79
79
|
"up_to_date": false
|
80
80
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dev_tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|