Skip to content

Commit 593b251

Browse files
Cleaning up the repository
1 parent f82f3a8 commit 593b251

39 files changed

+102
-130
lines changed

C#/Benchtop/BBD302_Init_Move/Program.cs

+15
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ internal class Program
1212
{
1313
static void Main(string[] args)
1414
{
15+
// Uncomment this line (and the equivalent Uninitialize statement at the end)
16+
// If you are using simulations.
17+
//SimulationManager.Instance.InitializeSimulations();
18+
1519
try
1620
{
21+
// Build device list
1722
DeviceManagerCLI.BuildDeviceList();
1823
}
1924
catch (Exception)
@@ -22,8 +27,10 @@ static void Main(string[] args)
2227
return;
2328
}
2429

30+
//Get the first available BBD300 controller
2531
List<string> serialNumbers = DeviceManagerCLI.GetDeviceList(103);
2632

33+
//Check if there was a found device. If not, close the program
2734
if (serialNumbers.Count > 0)
2835
{
2936
Console.WriteLine(serialNumbers[0]);
@@ -38,15 +45,18 @@ static void Main(string[] args)
3845

3946
if (controller != null)
4047
{
48+
//Initialize the controller
4149
controller.Connect(serialNumbers[0]);
4250
controller.GetMotherboardConfiguration(serialNumbers[0], DeviceConfiguration.DeviceSettingsUseOptionType.UseDeviceSettings);
4351

4452
Brushless30XMotorChannel channel = controller.GetChannel(1) as Brushless30XMotorChannel;
4553

4654
if (channel != null)
4755
{
56+
//Initialize the channel
4857
channel.Connect(serialNumbers[0]);
4958
channel.WaitForSettingsInitialized(3000);
59+
// Call LoadMotorConfiguration on the device to initialize the DeviceUnitConverter object required for real unit parameters
5060
channel.LoadMotorConfiguration(channel.DeviceID);
5161

5262
channel.StartPolling(250);
@@ -66,8 +76,13 @@ static void Main(string[] args)
6676
channel.DisableDevice();
6777

6878
}
79+
80+
//Close the controller connection
6981
controller.Disconnect(false);
7082
Console.WriteLine("Controller Disconnected");
83+
84+
// Uncomment this line if you are using simulations
85+
//SimulationManager.Instance.UninitializeSimulations();
7186
}
7287
}
7388

C#/Benchtop/BBD302_Raster_Scan/Program.cs

+16
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,13 @@ internal class Program
1414
{
1515
static void Main(string[] args)
1616
{
17+
// Uncomment this line (and the equivalent Uninitialize statement at the end)
18+
// If you are using simulations.
19+
//SimulationManager.Instance.InitializeSimulations();
20+
1721
try
1822
{
23+
// Build device list
1924
DeviceManagerCLI.BuildDeviceList();
2025
}
2126
catch (Exception)
@@ -24,6 +29,8 @@ static void Main(string[] args)
2429
return;
2530
}
2631

32+
//Get the first available BBD300 controller
33+
//Check if there was a found device. If not, close the program
2734
List<string> serialNumbers = DeviceManagerCLI.GetDeviceList(103);
2835
if (serialNumbers.Count > 0)
2936
{
@@ -38,9 +45,11 @@ static void Main(string[] args)
3845
BenchtopBrushlessMotor controller = BenchtopBrushlessMotor.CreateBenchtopBrushlessMotor(serialNumbers[0]);
3946
if (controller != null)
4047
{
48+
//Initialize the controller
4149
controller.Connect(serialNumbers[0]);
4250
controller.GetMotherboardConfiguration(serialNumbers[0], DeviceConfiguration.DeviceSettingsUseOptionType.UseDeviceSettings);
4351

52+
//Initialize the channels
4453
Brushless30XMotorChannel xAxis = controller.GetChannel(1) as Brushless30XMotorChannel;
4554
Brushless30XMotorChannel yAxis = controller.GetChannel(2) as Brushless30XMotorChannel;
4655

@@ -67,12 +76,14 @@ static void Main(string[] args)
6776
HomeStage(xAxis);
6877
HomeStage(yAxis);
6978

79+
//Set the movement parameters for the scan
7080
xAxis.SetJogVelocityParams(200, 1000);
7181
xAxis.SetVelocityParams(200, 1000);
7282

7383
yAxis.SetJogVelocityParams(200, 1000);
7484
yAxis.SetVelocityParams(200, 1000);
7585

86+
//Scan parameters
7687
Decimal startX = 25;
7788
Decimal startY = 50;
7889

@@ -85,6 +96,7 @@ static void Main(string[] args)
8596
xAxis.SetJogStepSize(Math.Abs(endX - startX) / numberOfXPoints);
8697
yAxis.SetJogStepSize(Math.Abs(endy - startY) / numberOfRows);
8798

99+
//determine the direction the scan will be going for the x and y axes
88100
MotorDirection xDirection = MotorDirection.Forward;
89101
MotorDirection yDirection = MotorDirection.Forward;
90102

@@ -97,6 +109,7 @@ static void Main(string[] args)
97109
yDirection = MotorDirection.Backward;
98110
}
99111

112+
//start the scan
100113
MoveStage(xAxis, startX);
101114
MoveStage(yAxis, startY);
102115

@@ -129,8 +142,11 @@ static void Main(string[] args)
129142
yAxis.DisableDevice();
130143

131144
}
145+
//close the controller connection
132146
controller.Disconnect(false);
133147
Console.WriteLine("Controller Disconnected");
148+
// Uncomment this line if you are using simulations
149+
//SimulationManager.Instance.UninitializeSimulations();
134150
}
135151
}
136152

File renamed without changes.
File renamed without changes.

C#/Benchtop/ISC/ISC/ISC.csproj renamed to C#/Integrated Motors/Labjack/ISC.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{B65B845D-521B-40A7-8630-3FEA69E8D53B}</ProjectGuid>
7+
<ProjectGuid>{E4D002D1-DEFF-4304-B24E-33032AAEB50A}</ProjectGuid>
88
<OutputType>Exe</OutputType>
99
<RootNamespace>ISC</RootNamespace>
1010
<AssemblyName>ISC</AssemblyName>

C#/KCube/KDC101/KDC101_Example.sln

-35
This file was deleted.

C#/KCube/KDC101/obj/x86/Debug/KDC101_Example.csproj.CopyComplete

Whitespace-only changes.

C#/KCube/KDC101/obj/x86/Debug/KDC101_Example.csproj.FileListAbsolute.txt

+14
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,17 @@ C:\Users\mcalle\Documents\GitHub\Motion_Control_Examples\C#\KCube\KDC101\obj\x86
1313
C:\Users\mcalle\Documents\GitHub\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\KDC101_Example.csproj.CopyComplete
1414
C:\Users\mcalle\Documents\GitHub\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\ConsoleApplication.exe
1515
C:\Users\mcalle\Documents\GitHub\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\ConsoleApplication.pdb
16+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\ConsoleApplication.exe.config
17+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\ConsoleApplication.exe
18+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\ConsoleApplication.pdb
19+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.DeviceManagerCLI.dll
20+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.GenericMotorCLI.dll
21+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.KCube.DCServoCLI.dll
22+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.Tools.Common.dll
23+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.Tools.Logging.dll
24+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.PrivateInternal.dll
25+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\bin\Debug\Thorlabs.MotionControl.Tools.WPF.dll
26+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\KDC101_Example.csproj.CoreCompileInputs.cache
27+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\KDC101_Example.csproj.CopyComplete
28+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\ConsoleApplication.exe
29+
C:\Users\manzelmi\Documents\Tech_Github\Motion_Control_Examples\C#\KCube\KDC101\obj\x86\Debug\ConsoleApplication.pdb

C++/Benchtop/BBD30X_Synch_Move/BBD30X_Synch_Move.vcxproj

+3
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@
142142
<ItemGroup>
143143
<ClCompile Include="BBD30X_Synch_Move.cpp" />
144144
</ItemGroup>
145+
<ItemGroup>
146+
<Text Include="..\BBDX0X\Required DLLs.txt" />
147+
</ItemGroup>
145148
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
146149
<ImportGroup Label="ExtensionTargets">
147150
</ImportGroup>

C++/Benchtop/BBD30X_Synch_Move/BBD30X_Synch_Move.vcxproj.filters

+3
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@
1919
<Filter>Source Files</Filter>
2020
</ClCompile>
2121
</ItemGroup>
22+
<ItemGroup>
23+
<Text Include="..\BBDX0X\Required DLLs.txt" />
24+
</ItemGroup>
2225
</Project>

MotionControl_Examples.sln

+48-29
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KNA101", "C#\KCube\KNA101\K
105105
EndProject
106106
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KPA101", "C#\KCube\KPA101\KPA101.csproj", "{D88C2190-F947-4315-818D-536D30CB1E23}"
107107
EndProject
108-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSC101", "C#\KCube\KSC101\KSC101.csproj", "{63C030F9-1A07-4169-843B-289EBAF6048C}"
109-
EndProject
110108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSG101", "C#\KCube\KSG101\KSG101.csproj", "{092259EF-8DA5-48A0-839B-2EC8A051FD2D}"
111109
EndProject
112110
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KST101", "C#\KCube\KST101\KST101.csproj", "{690C7783-59FD-4137-98F4-D4078B09153A}"
@@ -142,8 +140,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
142140
README.md = README.md
143141
EndProjectSection
144142
EndProject
145-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ISC", "C#\Benchtop\ISC\ISC\ISC.csproj", "{B65B845D-521B-40A7-8630-3FEA69E8D53B}"
146-
EndProject
147143
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BBD302_Init_Move", "C#\Benchtop\BBD302_Init_Move\BBD302_Init_Move.csproj", "{94836F69-EC55-4828-8E10-BC600F641823}"
148144
EndProject
149145
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BBD302_Raster_Scan", "C#\Benchtop\BBD302_Raster_Scan\BBD302_Raster_Scan.csproj", "{8F8A50A9-BAB3-427B-84F4-BE25BAC6FDBD}"
@@ -172,6 +168,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BBD30X_Synch_Move", "C#\Ben
172168
EndProject
173169
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BBD30X_Synch_Move", "C++\Benchtop\BBD30X_Synch_Move\BBD30X_Synch_Move.vcxproj", "{B551B748-D250-4AAD-BC34-EB366C9C14D6}"
174170
EndProject
171+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KBD101_Triggering", "C#\KCube\KBD101_Triggering\KBD101_Triggering.csproj", "{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}"
172+
EndProject
173+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Integrated Motors", "Integrated Motors", "{F392A555-771A-48F1-892C-A64C9D09E783}"
174+
EndProject
175+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ISC", "C#\Integrated Motors\Labjack\ISC.csproj", "{E4D002D1-DEFF-4304-B24E-33032AAEB50A}"
176+
EndProject
177+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LTS_Integrated Stepper", "C#\Integrated Motors\LTS\LTS_Integrated Stepper.csproj", "{6E55ABB6-D411-431E-B360-B8483502F659}"
178+
EndProject
175179
Global
176180
GlobalSection(SolutionConfigurationPlatforms) = preSolution
177181
Debug|Any CPU = Debug|Any CPU
@@ -602,18 +606,6 @@ Global
602606
{D88C2190-F947-4315-818D-536D30CB1E23}.Release|x64.Build.0 = Release|Any CPU
603607
{D88C2190-F947-4315-818D-536D30CB1E23}.Release|x86.ActiveCfg = Release|Any CPU
604608
{D88C2190-F947-4315-818D-536D30CB1E23}.Release|x86.Build.0 = Release|Any CPU
605-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
606-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|Any CPU.Build.0 = Debug|Any CPU
607-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|x64.ActiveCfg = Debug|Any CPU
608-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|x64.Build.0 = Debug|Any CPU
609-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|x86.ActiveCfg = Debug|Any CPU
610-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Debug|x86.Build.0 = Debug|Any CPU
611-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|Any CPU.ActiveCfg = Release|Any CPU
612-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|Any CPU.Build.0 = Release|Any CPU
613-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|x64.ActiveCfg = Release|Any CPU
614-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|x64.Build.0 = Release|Any CPU
615-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|x86.ActiveCfg = Release|Any CPU
616-
{63C030F9-1A07-4169-843B-289EBAF6048C}.Release|x86.Build.0 = Release|Any CPU
617609
{092259EF-8DA5-48A0-839B-2EC8A051FD2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
618610
{092259EF-8DA5-48A0-839B-2EC8A051FD2D}.Debug|Any CPU.Build.0 = Debug|Any CPU
619611
{092259EF-8DA5-48A0-839B-2EC8A051FD2D}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -782,18 +774,6 @@ Global
782774
{9B624893-CBE6-4F74-96AA-1135C6864490}.Release|x64.Build.0 = Release|Any CPU
783775
{9B624893-CBE6-4F74-96AA-1135C6864490}.Release|x86.ActiveCfg = Release|Any CPU
784776
{9B624893-CBE6-4F74-96AA-1135C6864490}.Release|x86.Build.0 = Release|Any CPU
785-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
786-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|Any CPU.Build.0 = Debug|Any CPU
787-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|x64.ActiveCfg = Debug|Any CPU
788-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|x64.Build.0 = Debug|Any CPU
789-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|x86.ActiveCfg = Debug|Any CPU
790-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Debug|x86.Build.0 = Debug|Any CPU
791-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|Any CPU.ActiveCfg = Release|Any CPU
792-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|Any CPU.Build.0 = Release|Any CPU
793-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|x64.ActiveCfg = Release|Any CPU
794-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|x64.Build.0 = Release|Any CPU
795-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|x86.ActiveCfg = Release|Any CPU
796-
{B65B845D-521B-40A7-8630-3FEA69E8D53B}.Release|x86.Build.0 = Release|Any CPU
797777
{94836F69-EC55-4828-8E10-BC600F641823}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
798778
{94836F69-EC55-4828-8E10-BC600F641823}.Debug|Any CPU.Build.0 = Debug|Any CPU
799779
{94836F69-EC55-4828-8E10-BC600F641823}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -926,6 +906,42 @@ Global
926906
{B551B748-D250-4AAD-BC34-EB366C9C14D6}.Release|x64.Build.0 = Release|x64
927907
{B551B748-D250-4AAD-BC34-EB366C9C14D6}.Release|x86.ActiveCfg = Release|Win32
928908
{B551B748-D250-4AAD-BC34-EB366C9C14D6}.Release|x86.Build.0 = Release|Win32
909+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
910+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
911+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|x64.ActiveCfg = Debug|Any CPU
912+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|x64.Build.0 = Debug|Any CPU
913+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|x86.ActiveCfg = Debug|Any CPU
914+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Debug|x86.Build.0 = Debug|Any CPU
915+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
916+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|Any CPU.Build.0 = Release|Any CPU
917+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|x64.ActiveCfg = Release|Any CPU
918+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|x64.Build.0 = Release|Any CPU
919+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|x86.ActiveCfg = Release|Any CPU
920+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6}.Release|x86.Build.0 = Release|Any CPU
921+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
922+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|Any CPU.Build.0 = Debug|Any CPU
923+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|x64.ActiveCfg = Debug|Any CPU
924+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|x64.Build.0 = Debug|Any CPU
925+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|x86.ActiveCfg = Debug|Any CPU
926+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Debug|x86.Build.0 = Debug|Any CPU
927+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|Any CPU.ActiveCfg = Release|Any CPU
928+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|Any CPU.Build.0 = Release|Any CPU
929+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|x64.ActiveCfg = Release|Any CPU
930+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|x64.Build.0 = Release|Any CPU
931+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|x86.ActiveCfg = Release|Any CPU
932+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A}.Release|x86.Build.0 = Release|Any CPU
933+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
934+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|Any CPU.Build.0 = Debug|Any CPU
935+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|x64.ActiveCfg = Debug|Any CPU
936+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|x64.Build.0 = Debug|Any CPU
937+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|x86.ActiveCfg = Debug|Any CPU
938+
{6E55ABB6-D411-431E-B360-B8483502F659}.Debug|x86.Build.0 = Debug|Any CPU
939+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|Any CPU.ActiveCfg = Release|Any CPU
940+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|Any CPU.Build.0 = Release|Any CPU
941+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|x64.ActiveCfg = Release|Any CPU
942+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|x64.Build.0 = Release|Any CPU
943+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|x86.ActiveCfg = Release|Any CPU
944+
{6E55ABB6-D411-431E-B360-B8483502F659}.Release|x86.Build.0 = Release|Any CPU
929945
EndGlobalSection
930946
GlobalSection(SolutionProperties) = preSolution
931947
HideSolutionNode = FALSE
@@ -977,7 +993,6 @@ Global
977993
{0A8017AB-0CCB-4B64-A7A5-BB2EF23AF15F} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
978994
{B85C9F53-7BD5-4E35-926B-5F23EE1C346C} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
979995
{D88C2190-F947-4315-818D-536D30CB1E23} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
980-
{63C030F9-1A07-4169-843B-289EBAF6048C} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
981996
{092259EF-8DA5-48A0-839B-2EC8A051FD2D} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
982997
{690C7783-59FD-4137-98F4-D4078B09153A} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
983998
{380F48F4-E8AE-449A-B6B8-1319199BCCC4} = {070FCEC2-3619-474E-9E1C-B921287F7F6F}
@@ -1006,6 +1021,10 @@ Global
10061021
{3ABC75BF-4DB9-45E8-8E58-9FAE4EE5CFA4} = {53064D2E-BD47-44B7-B75D-B835F74E61DF}
10071022
{B70EFEE8-7F30-4C01-AC5D-9FBA0613EF63} = {434EC6FB-2905-43A6-B80C-24627BDBAC9E}
10081023
{B551B748-D250-4AAD-BC34-EB366C9C14D6} = {D03C6B6E-466C-4E0F-9AF4-B7CB0288A722}
1024+
{BA45813D-A770-49BC-82C8-9B60D0C0E9D6} = {16ED9190-8D28-439E-B63D-E0896F865CF1}
1025+
{F392A555-771A-48F1-892C-A64C9D09E783} = {B964465E-1E35-4998-B114-05B13906EF14}
1026+
{E4D002D1-DEFF-4304-B24E-33032AAEB50A} = {F392A555-771A-48F1-892C-A64C9D09E783}
1027+
{6E55ABB6-D411-431E-B360-B8483502F659} = {F392A555-771A-48F1-892C-A64C9D09E783}
10091028
EndGlobalSection
10101029
GlobalSection(ExtensibilityGlobals) = postSolution
10111030
SolutionGuid = {0E819AF5-C7CF-4B48-9F7A-75C053699079}

0 commit comments

Comments
 (0)