dev_tasks 1.0.0 → 1.0.1
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/commit.rb +3 -1
- data/lib/spec.json +1 -1
- data/spec/dependencies_spec.rb +1 -1
- data/spec/dev_tasks_spec.rb +2 -2
- data/spec/test_data/cpp_projects/helloLib/rakefile.rb +1 -0
- data/spec/test_data/csharp_projects/helloDll/log/DEV.default.json +9 -9
- data/spec/test_data/ruby_projects/helloGem/log/DEV.json +60 -0
- data/spec/test_data/ruby_projects/helloGem/rakefile.rb +3 -0
- metadata +5 -5
- data/spec/test_data/example.rb +0 -2
- data/spec/test_data/ruby_project/rakefile.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d226bbe54274bde0a1eec07dacf54c78c7c57782
|
4
|
+
data.tar.gz: e51297b1642eaa1e82c497221f72a937f2c0ecff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4eed4e684b4f4fc9e648a2bb4ec22b90300c77b1d0d6c285783b2fcbad208533e25e278871e5c3b24a7a29fdb539d4033dbdd61bd98f44c9f852c7990267564d
|
7
|
+
data.tar.gz: 774b58e2a8fb120318ce9e13d99d08d4f0812aeae07960ca4f8bb9d2e310918e840d23a1119548722e98cea9ff4a2c9dab00b529659a23fb37f3bcdc7907cf18
|
data/lib/commit.rb
CHANGED
@@ -4,7 +4,9 @@ require_relative('./environment.rb')
|
|
4
4
|
class Commit < CommandArray
|
5
5
|
def update
|
6
6
|
if(Dir.exists?(".git"))
|
7
|
-
if(
|
7
|
+
if(`git status`.include?('nothing to commit') || `git status`.include?('untracked files present'))
|
8
|
+
# skip
|
9
|
+
else
|
8
10
|
if(File.exists?('commit.message') && File.read('commit.message').gsub(/\s+/, "").length > 0)
|
9
11
|
self.add "git commit -a -v -m \"#{File.read('commit.message')}\""
|
10
12
|
self.add "<%File.open('commit.message','w'){|f|f.write('')}%>"
|
data/lib/spec.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"dev_tasks","version":"1.0.
|
1
|
+
{"name":"dev_tasks","version":"1.0.1"}
|
data/spec/dependencies_spec.rb
CHANGED
@@ -21,7 +21,7 @@ describe Dependencies do
|
|
21
21
|
end
|
22
22
|
|
23
23
|
it "should be able to extract ruby dependencies" do
|
24
|
-
system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/
|
24
|
+
system_deps = Dependencies.ruby_dependencies File.read("#{File.dirname(__FILE__)}/test_data/ruby_projects/helloGem/rakefile.rb")
|
25
25
|
expect(system_deps.length).to eq(2)
|
26
26
|
expect(system_deps.include?('json')).to eq(true)
|
27
27
|
end
|
data/spec/dev_tasks_spec.rb
CHANGED
@@ -2,9 +2,9 @@ require_relative '../lib/dev_tasks.rb'
|
|
2
2
|
|
3
3
|
describe DevTasks do
|
4
4
|
it "should be able to load example ruby project" do
|
5
|
-
Dir.chdir("#{File.dirname(__FILE__)}/test_data/
|
5
|
+
Dir.chdir("#{File.dirname(__FILE__)}/test_data/ruby_projects/helloGem") do
|
6
6
|
ruby_dev_task=DevTasks.new
|
7
|
-
expect(ruby_dev_task[:name]).to eq('
|
7
|
+
expect(ruby_dev_task[:name]).to eq('helloGem')
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Debug /p:Platform=\"Any CPU\"",
|
38
38
|
"timeout": 0,
|
39
39
|
"directory": "",
|
40
|
-
"exit_code": "pid
|
41
|
-
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/30/2014 3: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",
|
40
|
+
"exit_code": "pid 3376 exit 0",
|
41
|
+
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/31/2014 12:37:40 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Debug|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.23\n",
|
42
42
|
"error": "",
|
43
43
|
"machine_name": "",
|
44
44
|
"user_name": "",
|
45
|
-
"start_time": "2014-12-
|
46
|
-
"end_time": "2014-12-
|
45
|
+
"start_time": "2014-12-31 12:37:40 -0700",
|
46
|
+
"end_time": "2014-12-31 12:37:40 -0700",
|
47
47
|
"elapsed": "[0s]"
|
48
48
|
},
|
49
49
|
{
|
50
50
|
"input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Release /p:Platform=\"Any CPU\"",
|
51
51
|
"timeout": 0,
|
52
52
|
"directory": "",
|
53
|
-
"exit_code": "pid
|
54
|
-
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/30/2014 3: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",
|
53
|
+
"exit_code": "pid 2836 exit 0",
|
54
|
+
"output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 12/31/2014 12:37:40 PM.\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Release|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\DevTasksGem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.28\n",
|
55
55
|
"error": "",
|
56
56
|
"machine_name": "",
|
57
57
|
"user_name": "",
|
58
|
-
"start_time": "2014-12-
|
59
|
-
"end_time": "2014-12-
|
58
|
+
"start_time": "2014-12-31 12:37:40 -0700",
|
59
|
+
"end_time": "2014-12-31 12:37:41 -0700",
|
60
60
|
"elapsed": "[0s]"
|
61
61
|
}
|
62
62
|
]
|
@@ -74,7 +74,7 @@
|
|
74
74
|
]
|
75
75
|
}
|
76
76
|
},
|
77
|
-
"newest_source_file": "
|
77
|
+
"newest_source_file": "Properties/AssemblyInfo.cs",
|
78
78
|
"newest_artifact_file": "bin/Net2.0/Release/helloDll.dll",
|
79
79
|
"up_to_date": false
|
80
80
|
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"name": "helloGem",
|
3
|
+
"svn_exports": {
|
4
|
+
},
|
5
|
+
"scm": "none",
|
6
|
+
"scm_origin": "",
|
7
|
+
"branch": null,
|
8
|
+
"command_order": [
|
9
|
+
"pull",
|
10
|
+
"upgrade",
|
11
|
+
"setup",
|
12
|
+
"add",
|
13
|
+
"build",
|
14
|
+
"test",
|
15
|
+
"commit",
|
16
|
+
"push",
|
17
|
+
"verify",
|
18
|
+
"publish"
|
19
|
+
],
|
20
|
+
"relative_directory": "LEP-open/DevTasksGem/spec/test_data/ruby_projects/helloGem",
|
21
|
+
"working_directory": "/Users/louie/wrk/LEP-open/DevTasksGem/spec/test_data/ruby_projects/helloGem",
|
22
|
+
"context": "wrk",
|
23
|
+
"machine": "bluefin-2",
|
24
|
+
"platform": "universal.x86_64-darwin14",
|
25
|
+
"dev_root": "/Users/louie",
|
26
|
+
"settings": {
|
27
|
+
"colorize": true
|
28
|
+
},
|
29
|
+
"files": {
|
30
|
+
"source": "rakefile.rb",
|
31
|
+
"build": "helloGem.gemspec",
|
32
|
+
"artifact": "helloGem-0.0.1.gem"
|
33
|
+
},
|
34
|
+
"commands": {
|
35
|
+
"build": [
|
36
|
+
{
|
37
|
+
"input": "gem build helloGem.gemspec",
|
38
|
+
"timeout": 0,
|
39
|
+
"directory": "",
|
40
|
+
"exit_code": "pid 1511 exit 0",
|
41
|
+
"output": " Successfully built RubyGem\n Name: helloGem\n Version: 0.0.1\n File: helloGem-0.0.1.gem\n",
|
42
|
+
"error": "",
|
43
|
+
"machine_name": "",
|
44
|
+
"user_name": "",
|
45
|
+
"start_time": "2015-01-02 10:50:03 -0700",
|
46
|
+
"end_time": "2015-01-02 10:50:03 -0700",
|
47
|
+
"elapsed": "[0s]"
|
48
|
+
}
|
49
|
+
]
|
50
|
+
},
|
51
|
+
"dependencies": {
|
52
|
+
"ruby": [
|
53
|
+
"json",
|
54
|
+
"yaml"
|
55
|
+
]
|
56
|
+
},
|
57
|
+
"newest_source_file": "rakefile.rb",
|
58
|
+
"newest_artifact_file": "helloGem-0.0.1.gem",
|
59
|
+
"up_to_date": false
|
60
|
+
}
|
metadata
CHANGED
@@ -1,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.1
|
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-
|
11
|
+
date: 2014-10-11 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/
|
113
|
-
- spec/test_data/ruby_project/rakefile.rb
|
112
|
+
- spec/test_data/ruby_projects/helloGem/rakefile.rb
|
114
113
|
- spec/test_data/cpp_projects/helloLib/DEV.default..json
|
115
114
|
- spec/test_data/csharp_projects/helloDll/DEV.default..json
|
116
115
|
- spec/test_data/csharp_projects/helloDll/log/DEV.default.json
|
116
|
+
- spec/test_data/ruby_projects/helloGem/log/DEV.json
|
117
117
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net2.0.csproj
|
118
118
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net3.5.csproj
|
119
119
|
- spec/test_data/csharp_projects/helloDll/helloDll.Net4.0.csproj
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
version: '0'
|
144
144
|
requirements: []
|
145
145
|
rubyforge_project:
|
146
|
-
rubygems_version: 2.0.
|
146
|
+
rubygems_version: 2.0.14
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: development rake tasks
|
data/spec/test_data/example.rb
DELETED
File without changes
|