dev 1.0.69 → 1.0.70
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dev/Project.rb +2 -2
- metadata +1 -1
data/lib/dev/Project.rb
CHANGED
@@ -310,11 +310,11 @@ class Project < Hash
|
|
310
310
|
#if(self[:type]=="C#")
|
311
311
|
hash.set_value("msbuild_vs9","C:/WINDOWS/Microsoft.NET/Framework/v3.5/MSBuild.exe")
|
312
312
|
hash.set_value("msbuild","C:/WINDOWS/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe")
|
313
|
-
nunit_exe="#{Dev::Environment.dev_root}/dep/google
|
313
|
+
nunit_exe="#{Dev::Environment.dev_root}/dep/google/third-party/NUnit/2.6.0.12051/bin/nunit-console-x86.exe"
|
314
314
|
["2.5.10.11092","2.6.0.12051"].each{ |v|
|
315
315
|
tmp="#{Dev::Environment.dev_root}/dep/github-third-party/NUnit/#{v}/bin/nunit-console-x86.exe"
|
316
316
|
nunit_exe=tmp if File.exist?(tmp) && !File.exist?(nunit_exe)
|
317
|
-
tmp="#{Dev::Environment.dev_root}/dep/google
|
317
|
+
tmp="#{Dev::Environment.dev_root}/dep/google/third-party/NUnit/#{v}/bin/nunit-console-x86.exe"
|
318
318
|
nunit_exe=tmp if File.exist?(tmp) && !File.exist?(nunit_exe)
|
319
319
|
tmp="#{Dev::Environment.dev_root}/dep/ThirdParty/NUnit/2.5.10.11092/bin/net-2.0/nunit-console-x86.exe"
|
320
320
|
nunit_exe=tmp if File.exist?(tmp) && !File.exist?(nunit_exe)
|