├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Build.bat ├── BuildAllVersions.bat ├── Output-Debug.txt ├── ReadMe.md ├── Sponsors.md ├── TestAllModules ├── Applications │ ├── TestApplicationAsp.cs │ └── TestApplicationWin.cs ├── Modules │ ├── Email │ │ └── SendEmailControllerTest.cs │ ├── TestBase.cs │ └── UniversalSearch │ │ └── UniversalSearchControllerTest.cs └── TestAllModules.csproj ├── Ultra.Email ├── BusinessObjects │ ├── SmtpEmailAccount.cs │ └── TestEmailParameters.cs ├── Controllers │ ├── SendEmailController.cs │ └── SmtpEmailAccountController.cs ├── DatabaseUpdate │ └── Updater.cs ├── Email.PNG ├── EmailModule.Designer.cs ├── EmailModule.cs ├── IBoToEmail.cs ├── Images │ └── ExpressAppLogo.png ├── LICENSE.txt ├── Model.DesignedDiffs.xafml ├── Module.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReadMe.md ├── Resources │ └── Gear.ico ├── SendTestEmailAction.gif ├── Ultra.Email.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.FTP ├── BusinessObjects │ └── ReadMe.txt ├── Controllers │ └── ReadMe.txt ├── DatabaseUpdate │ ├── ReadMe.txt │ └── Updater.cs ├── Images │ ├── ExpressAppLogo.png │ └── ReadMe.txt ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── ReadMe.md ├── Ultra.FTP.csproj ├── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs └── licenses │ └── LICENSE.txt ├── Ultra.MainDemo.Module.Web ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── Ultra.MainDemo.Module.Web.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.MainDemo.Module.Win ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── Ultra.MainDemo.Module.Win.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.MainDemo.Module ├── BusinessObjects │ ├── Customer.cs │ └── EmailModule │ │ └── EmailObject.cs ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── Ultra.MainDemo.Module.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.MainDemo.Web ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Error.aspx ├── Error.aspx.cs ├── Error.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Images │ └── Logo.png ├── Login.aspx ├── Login.aspx.cs ├── Login.aspx.designer.cs ├── Model.Desktop.xafml ├── Model.Tablet.xafml ├── Model.xafml ├── Properties │ └── AssemblyInfo.cs ├── Ultra.MainDemo.Web.csproj ├── Web.Debug.config ├── Web.EasyTest.config ├── Web.Release.config ├── Web.config ├── WebApplication.cs └── WebApplication.resx ├── Ultra.MainDemo.Win ├── App.config ├── ExpressApp.ico ├── Model.xafml ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Ultra.MainDemo.Win.csproj ├── WinApplication.Designer.cs ├── WinApplication.cs └── WinApplication.resx ├── Ultra.Scripting.Core.Win ├── Class1.cs ├── CodeEditor.cs ├── Controllers │ └── ReadMe.txt ├── DatabaseUpdate │ ├── ReadMe.txt │ └── Updater.cs ├── Images │ ├── ExpressAppLogo.png │ └── ReadMe.txt ├── LICENSE.txt ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── MySyntaxHighlightService.cs ├── ReadMe.md ├── SyntaxColors.cs ├── Ultra.Scripting.Core.Win.csproj ├── Ultra.Scripting.Win.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.Scripting.Core ├── BusinessObjects │ ├── Script.cs │ ├── ScriptAssemblyReference.cs │ ├── ScriptLanguage.cs │ └── ViewScript.cs ├── Controllers │ ├── ScriptController.cs │ └── ScriptHookController.cs ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── Interfaces │ └── IExecute.cs ├── LICENSE.txt ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── ReadMe.md ├── Ultra.Scripting.Core.csproj └── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs ├── Ultra.Scripting.Win ├── LICENSE.txt └── Ultra.Scripting.Win.csproj ├── Ultra.SequenceGenerator ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── LICENSE.txt ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── ReadMe.md ├── Sequencer.cs ├── SequencerSettings.cs ├── Ultra.SequenceGenerator.csproj ├── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs └── XpoServerId.cs ├── Ultra.SharedCode ├── Contracts │ └── IObfuscate.cs └── Ultra.SharedCode.csproj ├── Ultra.Twilio.Sms ├── BusinessObjects │ ├── ReadMe.txt │ ├── TwilioAccount.cs │ └── TwilioPhoneNumber.cs ├── Controllers │ ├── ReadMe.txt │ └── TwilioAccountController.cs ├── DatabaseUpdate │ ├── ReadMe.txt │ └── Updater.cs ├── Images │ ├── ExpressAppLogo.png │ └── ReadMe.txt ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── ReadMe.md ├── Ultra.Twilio.Sms.csproj ├── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs └── licenses │ └── LICENSE.txt ├── Ultra.UniversalSearch ├── Controllers │ └── UniversalSearchController.cs ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── LICENSE.txt ├── Model.DesignedDiffs.xafml ├── Module.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReadMe.md ├── Resources │ ├── Gear.ico │ └── User-Search02-WF.ico ├── Ultra.UniversalSearch.csproj ├── UltraUniversalSearch.gif ├── UniversalSearchAttribute.cs ├── UniversalSearchModule.Designer.cs ├── UniversalSearchModule.cs ├── UniversalSearchResult.cs ├── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs └── WhatIsNew.txt ├── Ultra.sln ├── UltraFrameworkForXaf.sln ├── UltraModuleTemplate ├── DatabaseUpdate │ └── Updater.cs ├── Images │ └── ExpressAppLogo.png ├── Model.DesignedDiffs.xafml ├── Module.Designer.cs ├── Module.cs ├── Module.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReadMe.md ├── Resources │ └── Gear.ico ├── UltraModuleTemplate.csproj ├── Updaters │ ├── ModelLocalizationGroupGeneratorUpdater.cs │ └── ModelLocalizationNodesGeneratorUpdater.cs └── licenses │ └── LICENSE.txt └── Xari.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Build.bat -------------------------------------------------------------------------------- /BuildAllVersions.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/BuildAllVersions.bat -------------------------------------------------------------------------------- /Output-Debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Output-Debug.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Sponsors.md -------------------------------------------------------------------------------- /TestAllModules/Applications/TestApplicationAsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/Applications/TestApplicationAsp.cs -------------------------------------------------------------------------------- /TestAllModules/Applications/TestApplicationWin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/Applications/TestApplicationWin.cs -------------------------------------------------------------------------------- /TestAllModules/Modules/Email/SendEmailControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/Modules/Email/SendEmailControllerTest.cs -------------------------------------------------------------------------------- /TestAllModules/Modules/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/Modules/TestBase.cs -------------------------------------------------------------------------------- /TestAllModules/Modules/UniversalSearch/UniversalSearchControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/Modules/UniversalSearch/UniversalSearchControllerTest.cs -------------------------------------------------------------------------------- /TestAllModules/TestAllModules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/TestAllModules/TestAllModules.csproj -------------------------------------------------------------------------------- /Ultra.Email/BusinessObjects/SmtpEmailAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/BusinessObjects/SmtpEmailAccount.cs -------------------------------------------------------------------------------- /Ultra.Email/BusinessObjects/TestEmailParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/BusinessObjects/TestEmailParameters.cs -------------------------------------------------------------------------------- /Ultra.Email/Controllers/SendEmailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Controllers/SendEmailController.cs -------------------------------------------------------------------------------- /Ultra.Email/Controllers/SmtpEmailAccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Controllers/SmtpEmailAccountController.cs -------------------------------------------------------------------------------- /Ultra.Email/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.Email/Email.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Email.PNG -------------------------------------------------------------------------------- /Ultra.Email/EmailModule.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/EmailModule.Designer.cs -------------------------------------------------------------------------------- /Ultra.Email/EmailModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/EmailModule.cs -------------------------------------------------------------------------------- /Ultra.Email/IBoToEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/IBoToEmail.cs -------------------------------------------------------------------------------- /Ultra.Email/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.Email/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.Email/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.Email/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Module.resx -------------------------------------------------------------------------------- /Ultra.Email/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Ultra.Email/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Properties/Resources.resx -------------------------------------------------------------------------------- /Ultra.Email/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/ReadMe.md -------------------------------------------------------------------------------- /Ultra.Email/Resources/Gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Resources/Gear.ico -------------------------------------------------------------------------------- /Ultra.Email/SendTestEmailAction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/SendTestEmailAction.gif -------------------------------------------------------------------------------- /Ultra.Email/Ultra.Email.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Ultra.Email.csproj -------------------------------------------------------------------------------- /Ultra.Email/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Email/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Email/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.FTP/BusinessObjects/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/BusinessObjects/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.FTP/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.FTP/DatabaseUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/DatabaseUpdate/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.FTP/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.FTP/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.FTP/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Images/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.FTP/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.FTP/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.FTP/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Module.cs -------------------------------------------------------------------------------- /Ultra.FTP/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Module.resx -------------------------------------------------------------------------------- /Ultra.FTP/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/ReadMe.md -------------------------------------------------------------------------------- /Ultra.FTP/Ultra.FTP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Ultra.FTP.csproj -------------------------------------------------------------------------------- /Ultra.FTP/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.FTP/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.FTP/licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.FTP/licenses/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Module.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Module.resx -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Ultra.MainDemo.Module.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Ultra.MainDemo.Module.Web.csproj -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Web/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Web/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Module.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Module.resx -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Ultra.MainDemo.Module.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Ultra.MainDemo.Module.Win.csproj -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module.Win/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module.Win/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/BusinessObjects/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/BusinessObjects/Customer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/BusinessObjects/EmailModule/EmailObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/BusinessObjects/EmailModule/EmailObject.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Module.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Module.resx -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Ultra.MainDemo.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Ultra.MainDemo.Module.csproj -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Module/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Module/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Default.aspx -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Default.aspx.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Error.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Error.aspx -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Error.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Error.aspx.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Error.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Error.aspx.designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Global.asax -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Global.asax.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Images/Logo.png -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Login.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Login.aspx -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Login.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Login.aspx.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Login.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Login.aspx.designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Model.Desktop.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Model.Desktop.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Model.Tablet.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Model.Tablet.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Model.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Ultra.MainDemo.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Ultra.MainDemo.Web.csproj -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Web.Debug.config -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Web.EasyTest.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Web.EasyTest.config -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Web.Release.config -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/Web.config -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/WebApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/WebApplication.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Web/WebApplication.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Web/WebApplication.resx -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/App.config -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/ExpressApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/ExpressApp.ico -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Model.xafml -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Program.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Properties/Resources.resx -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Properties/Settings.settings -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/Ultra.MainDemo.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/Ultra.MainDemo.Win.csproj -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/WinApplication.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/WinApplication.Designer.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/WinApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/WinApplication.cs -------------------------------------------------------------------------------- /Ultra.MainDemo.Win/WinApplication.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.MainDemo.Win/WinApplication.resx -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Class1.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/CodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/CodeEditor.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/DatabaseUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/DatabaseUpdate/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Images/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Module.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Module.resx -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/MySyntaxHighlightService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/MySyntaxHighlightService.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/ReadMe.md -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/SyntaxColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/SyntaxColors.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Ultra.Scripting.Core.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Ultra.Scripting.Core.Win.csproj -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Ultra.Scripting.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Ultra.Scripting.Win.csproj -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core.Win/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core.Win/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/BusinessObjects/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/BusinessObjects/Script.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/BusinessObjects/ScriptAssemblyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/BusinessObjects/ScriptAssemblyReference.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/BusinessObjects/ScriptLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/BusinessObjects/ScriptLanguage.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/BusinessObjects/ViewScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/BusinessObjects/ViewScript.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Controllers/ScriptController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Controllers/ScriptController.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Controllers/ScriptHookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Controllers/ScriptHookController.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Interfaces/IExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Interfaces/IExecute.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Module.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Module.resx -------------------------------------------------------------------------------- /Ultra.Scripting.Core/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/ReadMe.md -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Ultra.Scripting.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Ultra.Scripting.Core.csproj -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Core/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Core/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Scripting.Win/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Win/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.Scripting.Win/Ultra.Scripting.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Scripting.Win/Ultra.Scripting.Win.csproj -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Module.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/ReadMe.md -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Sequencer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Sequencer.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/SequencerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/SequencerSettings.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Ultra.SequenceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Ultra.SequenceGenerator.csproj -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.SequenceGenerator/XpoServerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SequenceGenerator/XpoServerId.cs -------------------------------------------------------------------------------- /Ultra.SharedCode/Contracts/IObfuscate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SharedCode/Contracts/IObfuscate.cs -------------------------------------------------------------------------------- /Ultra.SharedCode/Ultra.SharedCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.SharedCode/Ultra.SharedCode.csproj -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/BusinessObjects/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/BusinessObjects/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/BusinessObjects/TwilioAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/BusinessObjects/TwilioAccount.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/BusinessObjects/TwilioPhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/BusinessObjects/TwilioPhoneNumber.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Controllers/TwilioAccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Controllers/TwilioAccountController.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/DatabaseUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/DatabaseUpdate/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Images/ReadMe.txt -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Module.Designer.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Module.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Module.resx -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/ReadMe.md -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Ultra.Twilio.Sms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Ultra.Twilio.Sms.csproj -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.Twilio.Sms/licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.Twilio.Sms/licenses/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Controllers/UniversalSearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Controllers/UniversalSearchController.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /Ultra.UniversalSearch/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/LICENSE.txt -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Module.resx -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Properties/Resources.resx -------------------------------------------------------------------------------- /Ultra.UniversalSearch/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/ReadMe.md -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Resources/Gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Resources/Gear.ico -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Resources/User-Search02-WF.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Resources/User-Search02-WF.ico -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Ultra.UniversalSearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Ultra.UniversalSearch.csproj -------------------------------------------------------------------------------- /Ultra.UniversalSearch/UltraUniversalSearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/UltraUniversalSearch.gif -------------------------------------------------------------------------------- /Ultra.UniversalSearch/UniversalSearchAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/UniversalSearchAttribute.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/UniversalSearchModule.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/UniversalSearchModule.Designer.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/UniversalSearchModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/UniversalSearchModule.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/UniversalSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/UniversalSearchResult.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /Ultra.UniversalSearch/WhatIsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.UniversalSearch/WhatIsNew.txt -------------------------------------------------------------------------------- /Ultra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Ultra.sln -------------------------------------------------------------------------------- /UltraFrameworkForXaf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraFrameworkForXaf.sln -------------------------------------------------------------------------------- /UltraModuleTemplate/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /UltraModuleTemplate/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /UltraModuleTemplate/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Module.Designer.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Module.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Module.resx -------------------------------------------------------------------------------- /UltraModuleTemplate/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Properties/Resources.resx -------------------------------------------------------------------------------- /UltraModuleTemplate/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/ReadMe.md -------------------------------------------------------------------------------- /UltraModuleTemplate/Resources/Gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Resources/Gear.ico -------------------------------------------------------------------------------- /UltraModuleTemplate/UltraModuleTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/UltraModuleTemplate.csproj -------------------------------------------------------------------------------- /UltraModuleTemplate/Updaters/ModelLocalizationGroupGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Updaters/ModelLocalizationGroupGeneratorUpdater.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/Updaters/ModelLocalizationNodesGeneratorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/Updaters/ModelLocalizationNodesGeneratorUpdater.cs -------------------------------------------------------------------------------- /UltraModuleTemplate/licenses/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/UltraModuleTemplate/licenses/LICENSE.txt -------------------------------------------------------------------------------- /Xari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egarim/Ultra/HEAD/Xari.png --------------------------------------------------------------------------------