├── .gitignore ├── README.md ├── TestWebUIWinR5 ├── Properties │ └── AssemblyInfo.cs ├── TestWebUIWinR5.csproj ├── WinForm.Designer.cs ├── WinForm.cs ├── WinForm.resx └── packages.config ├── TestWebUIWinR6 ├── Properties │ └── AssemblyInfo.cs ├── TestWebUIWinR6.csproj └── packages.config ├── TestWebUI_RhinoMac.sln ├── TestWebUI_RhinoWin.sln ├── TestWebUImacOS ├── Properties │ └── AssemblyInfo.cs ├── TestWebUImacOS.csproj └── packages.config ├── app ├── app.js └── index.html └── src ├── EtoForm.cs ├── PipelineObject.cs ├── TestObject.cs ├── TestWebUICommand.cs └── TestWebUIPlugIn.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/README.md -------------------------------------------------------------------------------- /TestWebUIWinR5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestWebUIWinR5/TestWebUIWinR5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/TestWebUIWinR5.csproj -------------------------------------------------------------------------------- /TestWebUIWinR5/WinForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/WinForm.Designer.cs -------------------------------------------------------------------------------- /TestWebUIWinR5/WinForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/WinForm.cs -------------------------------------------------------------------------------- /TestWebUIWinR5/WinForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/WinForm.resx -------------------------------------------------------------------------------- /TestWebUIWinR5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR5/packages.config -------------------------------------------------------------------------------- /TestWebUIWinR6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestWebUIWinR6/TestWebUIWinR6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR6/TestWebUIWinR6.csproj -------------------------------------------------------------------------------- /TestWebUIWinR6/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUIWinR6/packages.config -------------------------------------------------------------------------------- /TestWebUI_RhinoMac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUI_RhinoMac.sln -------------------------------------------------------------------------------- /TestWebUI_RhinoWin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUI_RhinoWin.sln -------------------------------------------------------------------------------- /TestWebUImacOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUImacOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestWebUImacOS/TestWebUImacOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUImacOS/TestWebUImacOS.csproj -------------------------------------------------------------------------------- /TestWebUImacOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/TestWebUImacOS/packages.config -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/app/app.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/app/index.html -------------------------------------------------------------------------------- /src/EtoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/src/EtoForm.cs -------------------------------------------------------------------------------- /src/PipelineObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/src/PipelineObject.cs -------------------------------------------------------------------------------- /src/TestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/src/TestObject.cs -------------------------------------------------------------------------------- /src/TestWebUICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/src/TestWebUICommand.cs -------------------------------------------------------------------------------- /src/TestWebUIPlugIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraguada/TestWebUI/HEAD/src/TestWebUIPlugIn.cs --------------------------------------------------------------------------------