Commit 0f3305e1d37420a63aad9c42edb0bcd930c6b3f7
1 parent
ebf4e3eedc
Exists in
master
Update Task 2045
Showing 54 changed files with 166 additions and 142 deletions Side-by-side Diff
- releases/RM2045/20170307_RM2045.rar
- releases/RM2045/20170307_RM2045_NEW.rar
- sources/RoboforkApp/DesignerCanvas.cs
- sources/RoboforkApp/bin/Debug/RboforkApp.exe
- sources/RoboforkApp/bin/Debug/RboforkApp.pdb
- sources/RoboforkApp/bin/Release/RboforkApp.exe
- sources/RoboforkApp/bin/Release/RboforkApp.pdb
- sources/RoboforkApp/obj/Debug/App.g.cs
- sources/RoboforkApp/obj/Debug/App.g.i.cs
- sources/RoboforkApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
- sources/RoboforkApp/obj/Debug/EditNodeWindow.g.cs
- sources/RoboforkApp/obj/Debug/EditNodeWindow.g.i.cs
- sources/RoboforkApp/obj/Debug/GeneratedInternalTypeHelper.g.cs
- sources/RoboforkApp/obj/Debug/GeneratedInternalTypeHelper.g.i.cs
- sources/RoboforkApp/obj/Debug/MainWindow.g.cs
- sources/RoboforkApp/obj/Debug/MainWindow.g.i.cs
- sources/RoboforkApp/obj/Debug/RboforkApp.exe
- sources/RoboforkApp/obj/Debug/RboforkApp.pdb
- sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.cache
- sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.cache
- sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.lref
- sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.lref
- sources/RoboforkApp/obj/Debug/RoboforkApp.csproj.FileListAbsolute.txt
- sources/RoboforkApp/obj/Debug/RoboforkMenu.g.cs
- sources/RoboforkApp/obj/Debug/RoboforkMenu.g.i.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucDisplayCoordinate.g.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucDisplayCoordinate.g.i.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucNode.g.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucNode.g.i.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucStartEndButton.g.cs
- sources/RoboforkApp/obj/Debug/UserControls/ucStartEndButton.g.i.cs
- sources/RoboforkApp/obj/Release/App.g.cs
- sources/RoboforkApp/obj/Release/App.g.i.cs
- sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
- sources/RoboforkApp/obj/Release/EditNodeWindow.g.cs
- sources/RoboforkApp/obj/Release/EditNodeWindow.g.i.cs
- sources/RoboforkApp/obj/Release/GeneratedInternalTypeHelper.g.i.cs
- sources/RoboforkApp/obj/Release/MainWindow.g.cs
- sources/RoboforkApp/obj/Release/MainWindow.g.i.cs
- sources/RoboforkApp/obj/Release/RboforkApp.exe
- sources/RoboforkApp/obj/Release/RboforkApp.pdb
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.lref
- sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref
- sources/RoboforkApp/obj/Release/RoboforkApp.csproj.FileListAbsolute.txt
- sources/RoboforkApp/obj/Release/RoboforkMenu.g.cs
- sources/RoboforkApp/obj/Release/RoboforkMenu.g.i.cs
- sources/RoboforkApp/obj/Release/UserControls/ucDisplayCoordinate.g.cs
- sources/RoboforkApp/obj/Release/UserControls/ucDisplayCoordinate.g.i.cs
- sources/RoboforkApp/obj/Release/UserControls/ucNode.g.cs
- sources/RoboforkApp/obj/Release/UserControls/ucNode.g.i.cs
- sources/RoboforkApp/obj/Release/UserControls/ucStartEndButton.g.cs
- sources/RoboforkApp/obj/Release/UserControls/ucStartEndButton.g.i.cs
releases/RM2045/20170307_RM2045.rar
No preview for this file type
releases/RM2045/20170307_RM2045_NEW.rar
No preview for this file type
sources/RoboforkApp/DesignerCanvas.cs
... | ... | @@ -2583,14 +2583,14 @@ |
2583 | 2583 | { |
2584 | 2584 | if (l1.Y < l2.Y) |
2585 | 2585 | { |
2586 | - if (point.X > l1.X + radius && point.X < l2.X - radius && point.Y > l1.Y + radius && point.Y < l2.Y - radius) | |
2586 | + if (point.X > l1.X - radius && point.X < l2.X + radius && point.Y > l1.Y - radius && point.Y < l2.Y + radius) | |
2587 | 2587 | { |
2588 | 2588 | falg = true; |
2589 | 2589 | } |
2590 | 2590 | } |
2591 | 2591 | else |
2592 | 2592 | { |
2593 | - if (point.X > l1.X + radius && point.X < l2.X - radius && point.Y < l1.Y - radius && point.Y > l2.Y + radius) | |
2593 | + if (point.X > l1.X - radius && point.X < l2.X + radius && point.Y < l1.Y + radius && point.Y > l2.Y - radius) | |
2594 | 2594 | { |
2595 | 2595 | falg = true; |
2596 | 2596 | } |
2597 | 2597 | |
... | ... | @@ -2600,14 +2600,14 @@ |
2600 | 2600 | { |
2601 | 2601 | if (l1.Y < l2.Y) |
2602 | 2602 | { |
2603 | - if (point.X < l1.X - radius && point.X > l2.X + radius && point.Y > l1.Y + radius && point.Y < l2.Y - radius) | |
2603 | + if (point.X < l1.X + radius && point.X > l2.X - radius && point.Y > l1.Y - radius && point.Y < l2.Y + radius) | |
2604 | 2604 | { |
2605 | 2605 | falg = true; |
2606 | 2606 | } |
2607 | 2607 | } |
2608 | 2608 | else |
2609 | 2609 | { |
2610 | - if (point.X < l1.X - radius && point.X > l2.X + radius && point.Y < l1.Y - radius && point.Y > l2.Y + radius) | |
2610 | + if (point.X < l1.X + radius && point.X > l2.X - radius && point.Y < l1.Y + radius && point.Y > l2.Y - radius) | |
2611 | 2611 | { |
2612 | 2612 | falg = true; |
2613 | 2613 | } |
sources/RoboforkApp/bin/Debug/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/bin/Debug/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/bin/Release/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/bin/Release/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/obj/Debug/App.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/App.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
No preview for this file type
sources/RoboforkApp/obj/Debug/EditNodeWindow.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/EditNodeWindow.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/GeneratedInternalTypeHelper.g.cs
1 | -๏ปฟ//------------------------------------------------------------------------------ | |
2 | -// <auto-generated> | |
3 | -// This code was generated by a tool. | |
4 | -// Runtime Version:4.0.30319.18444 | |
5 | -// | |
6 | -// Changes to this file may cause incorrect behavior and will be lost if | |
7 | -// the code is regenerated. | |
8 | -// </auto-generated> | |
9 | -//------------------------------------------------------------------------------ | |
10 | - | |
11 | -namespace XamlGeneratedNamespace { | |
12 | - | |
13 | - | |
14 | - /// <summary> | |
15 | - /// GeneratedInternalTypeHelper | |
16 | - /// </summary> | |
17 | - [System.Diagnostics.DebuggerNonUserCodeAttribute()] | |
18 | - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] | |
19 | - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] | |
20 | - public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { | |
21 | - | |
22 | - /// <summary> | |
23 | - /// CreateInstance | |
24 | - /// </summary> | |
25 | - protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { | |
26 | - return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | |
27 | - | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); | |
28 | - } | |
29 | - | |
30 | - /// <summary> | |
31 | - /// GetPropertyValue | |
32 | - /// </summary> | |
33 | - protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { | |
34 | - return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); | |
35 | - } | |
36 | - | |
37 | - /// <summary> | |
38 | - /// SetPropertyValue | |
39 | - /// </summary> | |
40 | - protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { | |
41 | - propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); | |
42 | - } | |
43 | - | |
44 | - /// <summary> | |
45 | - /// CreateDelegate | |
46 | - /// </summary> | |
47 | - protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { | |
48 | - return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod | |
49 | - | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { | |
50 | - delegateType, | |
51 | - handler}, null))); | |
52 | - } | |
53 | - | |
54 | - /// <summary> | |
55 | - /// AddEventHandler | |
56 | - /// </summary> | |
57 | - protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { | |
58 | - eventInfo.AddEventHandler(target, handler); | |
59 | - } | |
60 | - } | |
61 | -} | |
1 | +๏ปฟ |
sources/RoboforkApp/obj/Debug/GeneratedInternalTypeHelper.g.i.cs
1 | 1 | ๏ปฟ//------------------------------------------------------------------------------ |
2 | 2 | // <auto-generated> |
3 | 3 | // This code was generated by a tool. |
4 | -// Runtime Version:4.0.30319.18444 | |
4 | +// Runtime Version:4.0.30319.42000 | |
5 | 5 | // |
6 | 6 | // Changes to this file may cause incorrect behavior and will be lost if |
7 | 7 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/MainWindow.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/MainWindow.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.cache
... | ... | @@ -4,12 +4,12 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Debug\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | DEBUG;TRACE |
12 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-2053965097 |
14 | 14 | |
15 | 15 | 21611329127 |
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.cache
... | ... | @@ -4,17 +4,17 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Debug\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | DEBUG;TRACE |
12 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-2053965097 |
14 | 14 | |
15 | -251748032653 | |
15 | +25-448053284 | |
16 | 16 | 12612105591 |
17 | 17 | EditNodeWindow.xaml;Resources\Brushes.xaml;Resources\DesignerItem.xaml;Resources\Expander.xaml;Resources\LangResources.xaml;Resources\ResizeChrome.xaml;Resources\ScrollBar.xaml;Resources\ScrollViewer.xaml;Resources\Slider.xaml;Resources\StatusBar.xaml;Resources\Styles.xaml;Resources\ToolBar.xaml;Resources\Toolbox.xaml;Resources\Tooltip.xaml;Resources\ZoomBox.xaml;RoboforkMenu.xaml;UserControls\ucDisplayCoordinate.xaml;UserControls\ucNode.xaml;UserControls\ucStartEndButton.xaml;Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;MainWindow.xaml; |
18 | 18 | |
19 | -False | |
19 | +True |
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.i.lref
1 | +๏ปฟE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\GeneratedInternalTypeHelper.g.i.cs | |
2 | + | |
3 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\MainWindow.xaml;; |
sources/RoboforkApp/obj/Debug/RboforkApp_MarkupCompile.lref
1 | -๏ปฟ | |
1 | +๏ปฟE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\GeneratedInternalTypeHelper.g.cs | |
2 | 2 | |
3 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\MainWindow.xaml;; | |
3 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\MainWindow.xaml;; |
sources/RoboforkApp/obj/Debug/RoboforkApp.csproj.FileListAbsolute.txt
... | ... | @@ -206,4 +206,46 @@ |
206 | 206 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Debug\RboforkApp.g.resources |
207 | 207 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Debug\RboforkApp.exe |
208 | 208 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Debug\RboforkApp.pdb |
209 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Debug\RboforkApp.exe.config | |
210 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RboforkApp.exe | |
211 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RboforkApp.pdb | |
212 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Debug\RboforkApp.exe | |
213 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Debug\RboforkApp.pdb | |
214 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RoboforkApp.csprojResolveAssemblyReference.cache | |
215 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\EditNodeWindow.baml | |
216 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Brushes.baml | |
217 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Expander.baml | |
218 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\LangResources.baml | |
219 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\ScrollBar.baml | |
220 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\ScrollViewer.baml | |
221 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Slider.baml | |
222 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\StatusBar.baml | |
223 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Styles.baml | |
224 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\ToolBar.baml | |
225 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Tooltip.baml | |
226 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucDisplayCoordinate.baml | |
227 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucNode.baml | |
228 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucStartEndButton.baml | |
229 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\App.baml | |
230 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\EditNodeWindow.g.cs | |
231 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RoboforkMenu.g.cs | |
232 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucDisplayCoordinate.g.cs | |
233 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucNode.g.cs | |
234 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\UserControls\ucStartEndButton.g.cs | |
235 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\MainWindow.g.cs | |
236 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\App.g.cs | |
237 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\GeneratedInternalTypeHelper.g.cs | |
238 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RboforkApp_MarkupCompile.cache | |
239 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RboforkApp_MarkupCompile.lref | |
240 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\DesignerItem.baml | |
241 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\ResizeChrome.baml | |
242 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\Toolbox.baml | |
243 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Resources\ZoomBox.baml | |
244 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RoboforkMenu.baml | |
245 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Stencils\BasicShapes.baml | |
246 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Stencils\FlowChartSymbols.baml | |
247 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Stencils\RegelungstechnikSymbole.baml | |
248 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\Stencils\SymbolStencils.baml | |
249 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\MainWindow.baml | |
250 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Debug\RboforkApp.g.resources |
sources/RoboforkApp/obj/Debug/RoboforkMenu.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/RoboforkMenu.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucDisplayCoordinate.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucDisplayCoordinate.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucNode.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucNode.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucStartEndButton.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Debug/UserControls/ucStartEndButton.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/App.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/App.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
No preview for this file type
sources/RoboforkApp/obj/Release/EditNodeWindow.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/EditNodeWindow.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/GeneratedInternalTypeHelper.g.i.cs
1 | 1 | ๏ปฟ//------------------------------------------------------------------------------ |
2 | 2 | // <auto-generated> |
3 | 3 | // This code was generated by a tool. |
4 | -// Runtime Version:4.0.30319.18444 | |
4 | +// Runtime Version:4.0.30319.42000 | |
5 | 5 | // |
6 | 6 | // Changes to this file may cause incorrect behavior and will be lost if |
7 | 7 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/MainWindow.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/MainWindow.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/RboforkApp.exe
No preview for this file type
sources/RoboforkApp/obj/Release/RboforkApp.pdb
No preview for this file type
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.cache
... | ... | @@ -4,12 +4,12 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | TRACE |
12 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-2053965097 |
14 | 14 | |
15 | 15 | 21611329127 |
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.cache
... | ... | @@ -4,17 +4,17 @@ |
4 | 4 | winexe |
5 | 5 | C# |
6 | 6 | .cs |
7 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\ | |
7 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\ | |
8 | 8 | RoboforkApp |
9 | 9 | none |
10 | 10 | false |
11 | 11 | TRACE |
12 | -C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\App.xaml | |
12 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\App.xaml | |
13 | 13 | 24-2053965097 |
14 | 14 | |
15 | -25-1656452128 | |
15 | +25442429231 | |
16 | 16 | 12612105591 |
17 | 17 | EditNodeWindow.xaml;Resources\Brushes.xaml;Resources\DesignerItem.xaml;Resources\Expander.xaml;Resources\LangResources.xaml;Resources\ResizeChrome.xaml;Resources\ScrollBar.xaml;Resources\ScrollViewer.xaml;Resources\Slider.xaml;Resources\StatusBar.xaml;Resources\Styles.xaml;Resources\ToolBar.xaml;Resources\Toolbox.xaml;Resources\Tooltip.xaml;Resources\ZoomBox.xaml;RoboforkMenu.xaml;UserControls\ucDisplayCoordinate.xaml;UserControls\ucNode.xaml;UserControls\ucStartEndButton.xaml;Stencils\BasicShapes.xaml;Stencils\FlowChartSymbols.xaml;Stencils\RegelungstechnikSymbole.xaml;Stencils\SymbolStencils.xaml;MainWindow.xaml; |
18 | 18 | |
19 | -True | |
19 | +False |
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.i.lref
1 | -๏ปฟC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.i.cs | |
2 | - | |
3 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\MainWindow.xaml;; |
sources/RoboforkApp/obj/Release/RboforkApp_MarkupCompile.lref
1 | -๏ปฟC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.cs | |
1 | +๏ปฟE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.cs | |
2 | 2 | |
3 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | -FC:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\MainWindow.xaml;; | |
3 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\DesignerItem.xaml;; | |
4 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ResizeChrome.xaml;; | |
5 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\Toolbox.xaml;; | |
6 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Resources\ZoomBox.xaml;; | |
7 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\RoboforkMenu.xaml;; | |
8 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\BasicShapes.xaml;; | |
9 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\FlowChartSymbols.xaml;; | |
10 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\RegelungstechnikSymbole.xaml;; | |
11 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\Stencils\SymbolStencils.xaml;; | |
12 | +FE:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\MainWindow.xaml;; |
sources/RoboforkApp/obj/Release/RoboforkApp.csproj.FileListAbsolute.txt
... | ... | @@ -244,4 +244,46 @@ |
244 | 244 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\Stencils\SymbolStencils.baml |
245 | 245 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\MainWindow.baml |
246 | 246 | C:\Users\nam\Desktop\robofork_newSPEC\20170306\sources\RoboforkApp\obj\Release\RboforkApp.g.resources |
247 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Release\RboforkApp.exe.config | |
248 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Release\RboforkApp.exe | |
249 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\bin\Release\RboforkApp.pdb | |
250 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RoboforkApp.csprojResolveAssemblyReference.cache | |
251 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\EditNodeWindow.baml | |
252 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Brushes.baml | |
253 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Expander.baml | |
254 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\LangResources.baml | |
255 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\ScrollBar.baml | |
256 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\ScrollViewer.baml | |
257 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Slider.baml | |
258 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\StatusBar.baml | |
259 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Styles.baml | |
260 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\ToolBar.baml | |
261 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Tooltip.baml | |
262 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucDisplayCoordinate.baml | |
263 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucNode.baml | |
264 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucStartEndButton.baml | |
265 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\App.baml | |
266 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\EditNodeWindow.g.cs | |
267 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RoboforkMenu.g.cs | |
268 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucDisplayCoordinate.g.cs | |
269 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucNode.g.cs | |
270 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\UserControls\ucStartEndButton.g.cs | |
271 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\MainWindow.g.cs | |
272 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\App.g.cs | |
273 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\GeneratedInternalTypeHelper.g.cs | |
274 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RboforkApp_MarkupCompile.cache | |
275 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RboforkApp_MarkupCompile.lref | |
276 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\DesignerItem.baml | |
277 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\ResizeChrome.baml | |
278 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\Toolbox.baml | |
279 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Resources\ZoomBox.baml | |
280 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RoboforkMenu.baml | |
281 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Stencils\BasicShapes.baml | |
282 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Stencils\FlowChartSymbols.baml | |
283 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Stencils\RegelungstechnikSymbole.baml | |
284 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\Stencils\SymbolStencils.baml | |
285 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\MainWindow.baml | |
286 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RboforkApp.g.resources | |
287 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RboforkApp.exe | |
288 | +E:\02_Project\Du an Anh Dai\Robofork2\sources\RoboforkApp\obj\Release\RboforkApp.pdb |
sources/RoboforkApp/obj/Release/RoboforkMenu.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/RoboforkMenu.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucDisplayCoordinate.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucDisplayCoordinate.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucNode.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucNode.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucStartEndButton.g.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |
sources/RoboforkApp/obj/Release/UserControls/ucStartEndButton.g.i.cs
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | //------------------------------------------------------------------------------ |
3 | 3 | // <auto-generated> |
4 | 4 | // This code was generated by a tool. |
5 | -// Runtime Version:4.0.30319.18444 | |
5 | +// Runtime Version:4.0.30319.42000 | |
6 | 6 | // |
7 | 7 | // Changes to this file may cause incorrect behavior and will be lost if |
8 | 8 | // the code is regenerated. |