aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/ProjectItemsViews/CSharpScriptItemView.xaml
blob: 682956205b29cd95bbf6dc3e3a1f4d9d3b111a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<UserControl x:Class="Tango.Scripting.IDE.ProjectItemsViews.CSharpScriptItemView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Tango.Scripting.IDE.ProjectItemsViews"
             xmlns:editors="clr-namespace:Tango.Scripting.Editors;assembly=Tango.Scripting.Editors"
             mc:Ignorable="d" 
             d:DesignHeight="450" d:DesignWidth="800">
    <Grid>
        <editors:ScriptEditor />
    </Grid>
</UserControl>
System.Threading.Tasks; using Tango.Settings; namespace Tango.MachineStudio.Synchronization { public class SynchronizationModuleSettings : SettingsBase { /// <summary> /// Gets or sets the local master database file. /// </summary> public String LocalMasterDBFile { get; set; } /// <summary> /// Gets or sets the local slave database file. /// </summary> public String LocalSlaveDBFile { get; set; } /// <summary> /// Gets or sets the remote SQLite file. /// </summary> public String RemoteSQLiteFile { get; set; } } }