~simone.busoli/nunitv2/1071164

« back to all changes in this revision

Viewing changes to src/ConsoleRunner/nunit-console/ConsoleUi.cs

  • Committer: Charlie Poole
  • Date: 2012-10-16 05:09:36 UTC
  • Revision ID: charlie@nunit.org-20121016050936-a8wcr93xybyhtlkm
Add basepath and privatebinpath arguments to nunit-console

Show diffs side-by-side

added added

removed removed

Lines of Context:
311
311
                                domainUsage = DomainUsage.Multiple;
312
312
                        }
313
313
 
314
 
                        if (options.basepath != null && options.basepath != string.Empty)
315
 
                        {
316
 
                                package.BasePath = options.basepath;
317
 
                        }
318
 
 
319
 
                        if (options.privatebinpath != null && options.privatebinpath != string.Empty)
320
 
                        {
321
 
                                package.AutoBinPath = false;
322
 
                                package.PrivateBinPath = options.privatebinpath;
 
314
                        if (options.basepath != null && options.basepath != string.Empty)
 
315
                        {
 
316
                                package.BasePath = options.basepath;
 
317
                        }
 
318
 
 
319
                        if (options.privatebinpath != null && options.privatebinpath != string.Empty)
 
320
                        {
 
321
                                package.AutoBinPath = false;
 
322
                                package.PrivateBinPath = options.privatebinpath;
323
323
                        }
324
324
 
325
325
#if CLR_2_0 || CLR_4_0