~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/ClientUtilities/util/ServerUtilities.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
                                        try
97
97
                                        {
98
98
                                                channel = CreateTcpChannel( name, port, limit );
99
 
#if NET_2_0
100
 
                                                ChannelServices.RegisterChannel( channel, false );
 
99
#if CLR_2_0
 
100
                        ChannelServices.RegisterChannel( channel, false );
101
101
#else
102
102
                                                ChannelServices.RegisterChannel( channel );
103
103
#endif