dev_tasks 0.0.167 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8838ce004f08edc01bd49b6a6434de74e40ca642
4
- data.tar.gz: dc74ef9d48510e68b2e5260de572f5f7e081aa84
3
+ metadata.gz: d013d1a669eab58f33f2626efc9a0b0a89d0c9f8
4
+ data.tar.gz: 21c97c8126e26fbb205a7208b015ad19ca0bc573
5
5
  SHA512:
6
- metadata.gz: d722e0d659bfbfdab05568d714777589d1e625b50ef0d778f498922ca700efeaaf4ed3ae19dc8440abfbdf2b4793bb22956b2749cd986cf90c1ed6d0ef955437
7
- data.tar.gz: 7945a95455faf917e4778ae87b241e429962c73496d085d567754dded2b99f6df8fa39928c71fb07e0e63adb63d9251f41121412a2d6f6afd334f64d838e234f
6
+ metadata.gz: 2dd49fe7b32a236248ade1089da6de094b07d43274af7a414395d51350ce7fb06deae5e488c3ec904a638d40c9ab228bc31cd5a777c00161fbc399b797717f5a
7
+ data.tar.gz: abdd26ef7811cc4e56ff25e3af6af58d9cbe171ea9cadbfaca0da09fae182e4e8f380aaa624e5f7444cd3cc2bd47ca823e13a58291d1c933b33644b9a4e86244
@@ -4,9 +4,7 @@ require_relative('./environment.rb')
4
4
  class Commit < CommandArray
5
5
  def update
6
6
  if(Dir.exists?(".git"))
7
- if(`git status`.include?('nothing to commit') || `git status`.include?('untracked files present'))
8
- # skip
9
- else
7
+ if(!`git status`.include?('nothing to commit') || `git status`.include?('untracked files present'))
10
8
  if(File.exists?('commit.message') && File.read('commit.message').gsub(/\s+/, "").length > 0)
11
9
  self.add "git commit -a -v -m \"#{File.read('commit.message')}\""
12
10
  self.add "<%File.open('commit.message','w'){|f|f.write('')}%>"
@@ -1 +1 @@
1
- {"name":"dev_tasks","version":"0.0.167"}
1
+ {"name":"dev_tasks","version":"1.0.0"}
@@ -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/ruby_projects/helloGem/rakefile.rb")
24
+ system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/example.rb")
25
25
  expect(system_deps.length).to eq(2)
26
26
  expect(system_deps.include?('json')).to eq(true)
27
27
  end
@@ -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/ruby_projects/helloGem") do
5
+ Dir.chdir("#{File.dirname(__FILE__)}/test_data/ruby_project") do
6
6
  ruby_dev_task=DevTasks.new
7
- expect(ruby_dev_task[:name]).to eq('helloGem')
7
+ expect(ruby_dev_task[:name]).to eq('ruby_project')
8
8
  end
9
9
  end
10
10
 
@@ -6,4 +6,3 @@ DEV[:commands][:setup] << "svnadmin create repo" if(!File.exists?('repo'))
6
6
  DEV[:publish_path]="file:///#{DEV[:working_directory]}/repo"
7
7
  CLEAN.include("**.*.{suo,cache,ncb,user,opensdf}","obj")
8
8
  CLOBBER.include("bin","repo","#{Environment.dev_root}/tmp/LEP-open")
9
-
@@ -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 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",
40
+ "exit_code": "pid 11024 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/30/2014 3:52:34 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.21\n",
42
42
  "error": "",
43
43
  "machine_name": "",
44
44
  "user_name": "",
45
- "start_time": "2014-12-31 12:37:40 -0700",
46
- "end_time": "2014-12-31 12:37:40 -0700",
45
+ "start_time": "2014-12-30 15:52:33 -0700",
46
+ "end_time": "2014-12-30 15:52:34 -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 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",
53
+ "exit_code": "pid 436 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/30/2014 3:52:34 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",
55
55
  "error": "",
56
56
  "machine_name": "",
57
57
  "user_name": "",
58
- "start_time": "2014-12-31 12:37:40 -0700",
59
- "end_time": "2014-12-31 12:37:41 -0700",
58
+ "start_time": "2014-12-30 15:52:34 -0700",
59
+ "end_time": "2014-12-30 15:52:34 -0700",
60
60
  "elapsed": "[0s]"
61
61
  }
62
62
  ]
@@ -74,7 +74,7 @@
74
74
  ]
75
75
  }
76
76
  },
77
- "newest_source_file": "Properties/AssemblyInfo.cs",
77
+ "newest_source_file": "helloDll.Net2.0.csproj",
78
78
  "newest_artifact_file": "bin/Net2.0/Release/helloDll.dll",
79
79
  "up_to_date": false
80
80
  }
@@ -0,0 +1,2 @@
1
+ require 'json'
2
+ require 'yaml'
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: 0.0.167
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-11 00:00:00.000000000 Z
11
+ date: 2014-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -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/ruby_projects/helloGem/rakefile.rb
112
+ - spec/test_data/example.rb
113
+ - spec/test_data/ruby_project/rakefile.rb
113
114
  - spec/test_data/cpp_projects/helloLib/DEV.default..json
114
115
  - spec/test_data/csharp_projects/helloDll/DEV.default..json
115
116
  - 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.14
146
+ rubygems_version: 2.0.3
147
147
  signing_key:
148
148
  specification_version: 4
149
149
  summary: development rake tasks
@@ -1,60 +0,0 @@
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
- }
@@ -1,3 +0,0 @@
1
- require_relative '../../../../lib/dev_tasks.rb'
2
- require 'json'
3
- require 'yaml'