Ignore:
Timestamp:
May 29, 2020, 10:45:52 PM (4 years ago)
Author:
coas-nagasima
Message:

Visual Studio 2019 と Bridge.NET でビルドできるよう更新。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/webapp/webmrbc/App.cs

    r321 r425  
    174174                                        }
    175175                                        if ((item.classGroupCode == 0xE) && (cls.classCode == 0xF0)) {
    176                                                 cls.properties = (JsonPropertyInfo[])profProps.Concat(properties);
     176                                                cls.properties = profProps.Concat(properties).ToArray();
    177177                                                NodeProfileClass = cls;
    178178                                        }
     
    344344        public class Collections
    345345        {
    346                 [Name(false)]
     346                [Convention(Notation.PascalCase)]
    347347                internal static ENodeWorkspace LocalNode;
    348                 [Name(false)]
     348                [Convention(Notation.PascalCase)]
    349349                internal static Collection<IClassWorkspace> ClassWorkspaces;
    350                 [Name(false)]
     350                [Convention(Notation.PascalCase)]
    351351                internal static EcnlTaskWorkspace EcnlTaskWorkspace;
    352                 [Name(false)]
     352                [Convention(Notation.PascalCase)]
    353353                internal static MainLoopWorkspace MainLoopWorkspace;
    354354        }
     
    356356        public class Views
    357357        {
    358                 [Name(false)]
     358                [Convention(Notation.PascalCase)]
    359359                internal static MainMenuView MainMenuView;
    360                 [Name(false)]
     360                [Convention(Notation.PascalCase)]
    361361                internal static ClassSelectorView ClassSelectorView;
    362                 [Name(false)]
     362                [Convention(Notation.PascalCase)]
    363363                internal static EObjectModalView EObjectModalView;
    364364        }
     
    408408                                        byte b = bytes[i + index];
    409409                                        if (b < 0x20)
    410                                                 sb += "\x1B[1;3;31m" + String.FromCharCode(b + 0x40) + "\x1B[0m";
     410                                                sb += "\x1B[1;3;31m" + StringPrototype.FromCharCode(b + 0x40) + "\x1B[0m";
    411411                                        else
    412                                                 sb += String.FromCharCode(b);
     412                                                sb += StringPrototype.FromCharCode(b);
    413413                                }
    414414                        }
Note: See TracChangeset for help on using the changeset viewer.