Browse Source

Added MyMeta and ICSharpCode.DataTools libraries which are required by new version of DbTools plugin

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2709 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Dickon Field 18 years ago
parent
commit
4887977c40
  1. 314
      doc/ChangeLog.xml
  2. 51
      src/Libraries/ICSharpCode.DataTools/ICSharpCode.DataTools.csproj
  3. 94
      src/Libraries/ICSharpCode.DataTools/OleDbUtils.cs
  4. 36
      src/Libraries/ICSharpCode.DataTools/Properties/AssemblyInfo.cs
  5. 306
      src/SharpDevelop.sln

314
doc/ChangeLog.xml

@ -1,4 +1,278 @@ @@ -1,4 +1,278 @@
<ChangeLog project="SharpDevelop">
<Change author="Daniel Grunwald" date="10/07/2007">Update to Cecil 0.6.
Fixed some bugs.
C# parser: include position information for statements/expressions.</Change>
<Change author="Daniel Grunwald" date="09/30/2007">Fixed forum-19066: Invalid params for External Tools.
Changed some instances of "combine" to "solution".</Change>
<Change author="Daniel Grunwald" date="09/30/2007">Reapply our patches to the DockPanel Suite.</Change>
<Change author="Daniel Grunwald" date="09/30/2007">Update to DockPanel Suite v2.1.</Change>
<Change author="Daniel Grunwald" date="09/29/2007">Fixed crash when closing the solution while building.</Change>
<Change author="Daniel Grunwald" date="09/29/2007">Show build progress in status bar.</Change>
<Change author="Daniel Grunwald" date="09/29/2007">Some fixes suggested by FxCop.
Fixed using the "Suppress message" command on constructors.</Change>
<Change author="Daniel Grunwald" date="09/29/2007">Add a .targets file to the build that gets automatically included when the C# 2.0 or VB 8 compiler is used. This .targets file will display warnings when the project uses MSBuild 3.5 features.
Fixed Project &gt; Check with FxCop.</Change>
<Change author="Daniel Grunwald" date="09/28/2007">Fixed deleting directories when "Use recycle bin" option was activated.</Change>
<Change author="Daniel Grunwald" date="09/27/2007">Fixed bug introduced in revision 2688 that could cause non-partial classes to become a CompoundClass with two identical parts when the file is edited.
This caused symptoms like seeing fields and properties twice in the code completion drop-down, seeing method overloads twice; and indirectly caused several problems with the Rename refactoring.</Change>
<Change author="Daniel Grunwald" date="09/27/2007">Fixed build.
Embedded SharpDevelop.exe.manifest in SharpDevelop.exe.</Change>
<Change author="Daniel Grunwald" date="09/27/2007">Support embedding the .manifest in the .exe.</Change>
<Change author="Daniel Grunwald" date="09/27/2007">Build engine: reduce the number of events build workers sent to the host process</Change>
<Change author="Daniel Grunwald" date="09/26/2007">Add ICSharpCode.SharpDevelop.BuildWorker.exe to setup.</Change>
<Change author="Daniel Grunwald" date="09/26/2007">Rewritten build system. Separated solution build logic (BuildEngine) from project build logic (MSBuildEngine).
New features:
- Supports non-MSBuild projects.
- Setting different properties for each project in a solution.
- Build can run in a worker process
- Builds multiple projects in parallel</Change>
<Change author="Daniel Grunwald" date="09/24/2007">Fixed exception when deleting a file that had multiple view contents open in the same WorkbenchWindow (e.g. Source view+Designer view, or Source view+Subversion History).</Change>
<Change author="Daniel Grunwald" date="09/24/2007">Fixed build again.</Change>
<Change author="Daniel Grunwald" date="09/24/2007">Fixed SD2-1378: Bookmarks behave incorrectly when removing text</Change>
<Change author="Daniel Grunwald" date="09/24/2007">Implemented SD2-1371: Use recycle bin to delete files.
Fixed bug introduced in last revision that caused the unit tests to fail.</Change>
<Change author="Daniel Grunwald" date="09/24/2007" />
<Change author="Daniel Grunwald" date="09/24/2007">When there are duplicate classes, treat both parts as implicitly partial. Fixes SD2-1217: Duplicate class name support in ProjectContent.</Change>
<Change author="Daniel Grunwald" date="09/24/2007">SdStatusBar.BeginTask: reset WorkDone to 0.</Change>
<Change author="Daniel Grunwald" date="09/24/2007">Applied patch by Ray Gilbert: CodeDomOutputVisitor now supports more language constructs. (see http://www.codeproject.com/csharp/codedom_assistant.asp)</Change>
<Change author="Daniel Grunwald" date="09/23/2007">Add sample project for text anchors.</Change>
<Change author="Daniel Grunwald" date="09/23/2007">Fixed removing lines in the text editor.</Change>
<Change author="Daniel Grunwald" date="09/23/2007">Add TextAnchor to text editor.
Usage: TextAnchor anchor = document.GetLineSegment(lineNumber).CreateAnchor(columnNumber);
anchor.LineNumber and anchor.ColumnNumber are updated when text is inserted/removed in the document. anchor.IsDeleted will be true when the text location containing the anchor was removed.
LineSegment gets an IsDeleted property, so a LineSegment reference can be used as anchor for a line.</Change>
<Change author="Daniel Grunwald" date="09/22/2007">Fixed forum-15062: TextEditor changes encoding of UTF-16 files to UTF-8.</Change>
<Change author="Daniel Grunwald" date="09/22/2007">TextView.VirtualTop: X was a column number, Y a pixel position. Now both are pixel positions.
CSharpOutputVisitor: use System.Runtime.InteropServices.DefaultParameterValueAttribute when converting VB optional parameters.</Change>
<Change author="Daniel Grunwald" date="09/22/2007">Fixed forum-18069: Text selection lags mouse depending on font
TextEditor now provides TextChanged event so users do not have to attach to textEditor.Document.DocumentChanged.
Improved the heuristic that determines which comments belong to a class for the "Move class to file" command.
Prevent SharpDevelop from crashing if code-completion cache is corrupted.</Change>
<Change author="Daniel Grunwald" date="09/17/2007">Merged CSharpCodeCompletion sample enhancements from /branches/2.1 to trunk.
Fixed forum-18847: selections do not work correctly when selecting from invalid lines to valid lines.
When code converter crashes, report the file that it was processing during the crash.</Change>
<Change author="Daniel Grunwald" date="09/11/2007">Fixed SD2-1377: Exception adding reference to Compact Framework application.
C# code completion: Members of anonymous types are properties, not fields.</Change>
<Change author="Daniel Grunwald" date="09/10/2007">RunProject command: compile project before running it.
C# syntax highlighting: add contextual keywords introduced in C# 3.0.
C# parser: support "from T x in e" syntax in query expressions.</Change>
<Change author="Daniel Grunwald" date="09/10/2007">NRefactory: Support parsing statements like "SomeDelegate d = GenericMethod&lt;string&gt;;"
Renamed FieldReferenceExpression to MemberReferenceExpression.</Change>
<Change author="Daniel Grunwald" date="08/26/2007">Fixed NullableBoolEditor: the editor must be able to show the difference between the null value and an ambiguous value (multiple selected components with different values).</Change>
<Change author="Daniel Grunwald" date="08/26/2007">Add more controls to toolbox, support editing properties of type "Cursor" and "bool?".</Change>
<Change author="Daniel Grunwald" date="08/26/2007">Support creating event handlers by double-clicking buttons in the WPF designer.</Change>
<Change author="Daniel Grunwald" date="08/25/2007">Worked on event support in WPF designer.
Fixed C# parser bug regarding expressions like "(T)-val".</Change>
<Change author="Russell Wilkins" date="08/25/2007">SideTab updates</Change>
<Change author="Daniel Grunwald" date="08/24/2007">Various bug fixes.</Change>
<Change author="Daniel Grunwald" date="08/24/2007">Make Properties class thread-safe. (probably fixes forum-18390).</Change>
<Change author="Daniel Grunwald" date="08/24/2007">Fixed forum-18448: crash when editing XML file containing a reference to a non-existing DTD.</Change>
<Change author="Daniel Grunwald" date="08/24/2007">Improved C# code completion (typing constraints on generic classes).</Change>
<Change author="Daniel Grunwald" date="08/23/2007">Fixed build.
Allow unit testing of view contents by decoupling OpenedFile from FileService and Workbench.</Change>
<Change author="Daniel Grunwald" date="08/23/2007">Fixed SD2-953: Code error is thrown runing a WinForm with the form .resx file opened
The forms designer now uses OpenedFile (SD2-1234) to allow sharing unsaved resource files between resource editor and forms designer.</Change>
<Change author="Daniel Grunwald" date="08/23/2007">Fixed forum-18481: Problem with Boo Forms Designer when using TableLayoutPanel</Change>
<Change author="Daniel Grunwald" date="08/13/2007">Fixed forum-18391 and forum-18392 (pretty printer bugs).
VBNetOutputVisitor: Don't output "ByVal" by default.</Change>
<Change author="Daniel Grunwald" date="08/13/2007">Worked on VB&lt;-&gt;C# converter.
Fixed SD2-980: VB 'For Each' statement not converted correcly to C#
Text editor: Use TextLocation struct instead of System.Drawing.Point to represent line/column pairs.</Change>
<Change author="Christoph Wille" date="08/13/2007">SHFB (Sandcastle Help File Builder, http://codeplex.com/SHFB) version 1.5.0.1 (for Sandcastle June 2007 CTP) added, NDoc removed</Change>
<Change author="Daniel Grunwald" date="08/12/2007">Worked on VB-&gt;C# converter.</Change>
<Change author="Daniel Grunwald" date="08/12/2007">More improvements for the C#-&gt;VB converter.</Change>
<Change author="Daniel Grunwald" date="08/12/2007">Improved C#-&gt;VB converter.</Change>
<Change author="Daniel Grunwald" date="08/11/2007">Worked on C# -&gt; VB converter.
Fixed SD2-1022: Delegates usage not converted correctly from C# to VB.</Change>
<Change author="Daniel Grunwald" date="08/10/2007">Fixed SD2-803: Implicit interface implementations are not converted correctly to VB</Change>
<Change author="Daniel Grunwald" date="08/09/2007">Fixed SD2-1028: local variables should be always initialized when converting code from VB to C#.</Change>
<Change author="Daniel Grunwald" date="08/09/2007">Fixed SD2-1069: Conversion of VB ReDim statement to C# not implemented.</Change>
<Change author="Daniel Grunwald" date="08/09/2007">Move Search&amp;Replace into an AddIn.</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Fixed forum-18320: exception when converting VB code using named arguments to Boo.
Add ShellExecuteDisplayBinding: allows to launch files using the default program associated with them in SharpDevelop's "Open With" menu.</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Implemented SD2-1054: Opening a file with different editor</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Worked on SD2-1054: Opening a file with different editor
Still missing: "Set as default"</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Property pad now works correctly with the Windows Forms designer.</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Merged SD 2.2 revision 2624:2639 to trunk.</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Set correct caret column when pressing return.</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Fixed SD2-1298: Converting single assignment and comparison statement from C# to VB.NET</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Fixed nunit.framework detection (fixes build)</Change>
<Change author="Daniel Grunwald" date="08/08/2007">Fixed SD2-1355: FormattingStrategy: meaning of IndentLine, FormatLine return value</Change>
<Change author="Daniel Grunwald" date="08/06/2007">Add "RequiredTargetFramework" meta data to references.</Change>
<Change author="Daniel Grunwald" date="08/05/2007">Fixed build.</Change>
<Change author="Daniel Grunwald" date="08/05/2007">GacReferencePanel: when the GAC contains multiple versions of an assembly, show the version that MSBuild will use.</Change>
<Change author="Daniel Grunwald" date="08/05/2007">Use MSBuild's ResolveAssemblyReferences task to make sure we load the correct assembly version for code-completion. E.g. a reference to "System.Net" loads a different assembly depending on the target framework. SharpDevelop now can also find assemblies in custom reference paths, using assembly tables and everything else supported by MSBuild (including custom ResolveAssemblyReferences tasks).
The property pad uses the information from MSBuild to show the resolved assembly version.</Change>
<Change author="Daniel Grunwald" date="08/04/2007">Project options page: allow choosing 3.0 and 3.5 as target framework.</Change>
<Change author="Daniel Grunwald" date="08/04/2007">Remove skip-messages for projects not compiled when compiling only a single project using F9.
Replace ICSharpCode.SharpDevelop.Func&lt;...&gt; with System.Func&lt;...&gt;; use System.Linq.Enumerable instead of the ICSharpCode.SharpDevelop.Linq helper class.</Change>
<Change author="Daniel Grunwald" date="08/04/2007">Use MSBuild 3.5.
SharpDevelop can now compile C# 3.0 projects created with VS2008 Beta 2.</Change>
<Change author="Daniel Grunwald" date="08/04/2007">WpfDesigner tests: Change WPF namespace from winfx/2006/xaml/presentation to netfx/2007/xaml/presentation</Change>
<Change author="Daniel Grunwald" date="08/04/2007">Merge Merged SD 2.2 revision 2603:2624 to trunk.
</Change>
<Change author="Daniel Grunwald" date="07/19/2007">Fixed method insight for constructors.</Change>
<Change author="Daniel Grunwald" date="07/19/2007">CSharpExpressionFinder: better support for field initializers</Change>
<Change author="Daniel Grunwald" date="07/19/2007">Fixed two problems in C# expression finder (wrong context detected for property setters and nested types)</Change>
<Change author="Daniel Grunwald" date="07/19/2007">Fixed code completion bug: calls from nested classes to static methods in the parent class now are resolved correctly.</Change>
<Change author="Daniel Grunwald" date="07/19/2007">More C# code completion fixes.</Change>
<Change author="Daniel Grunwald" date="07/19/2007">C# expression finder: Fix "if (a &gt; b) {}".</Change>
<Change author="Daniel Grunwald" date="07/19/2007">Fixed C# expression finder bug for statements like "if (a &lt; b) {}"</Change>
<Change author="Daniel Grunwald" date="07/18/2007">Fixed forum-17917: Overriding properties that have get/set accessors with different visibility as the property does not insert the visibility modifier in the overriding code.
Overriding abstract members now inserts "throw new NotImplementedException();" instead of a call to the base method.</Change>
<Change author="Daniel Grunwald" date="07/12/2007">Merged SD 2.2 revision 2560:2603 to trunk.</Change>
<Change author="Daniel Grunwald" date="07/10/2007">TextEditor: Fixed UpdateToEnd when there are folded regions.</Change>
<Change author="Daniel Grunwald" date="07/10/2007">TextAreaMouseHandler: This patch by Troy Simpson fixes an issue with selecting text via double-click, then following-up with a gutter selection.
GapTextBufferStrategy: rewrote PlaceGap, fixing a performance issue when deleting text in large documents
DefaultHighlightingStrategy: cache currentLine.Offset because it's not cheap to retrieve (it's an O(lg n) operation)
DefaultDocument.RequestUpdate: when doing a WholeTextArea update, skip all other updates because they would only duplicate the work done by the WholeTextArea update
Except for the load time, the performance editing large .txt files is now good; though the text editor takes a huge amount of memory (tested with a 1,000,000 lines file).</Change>
<Change author="Daniel Grunwald" date="07/08/2007">Change UpgradeCode - otherwise it is not possible to install SharpDevelop 2.2 when SharpDevelop 3.0 is already installed.</Change>
<Change author="Daniel Grunwald" date="07/08/2007">Applied text editor selection patch by Troy Simpson.</Change>
<Change author="Daniel Grunwald" date="07/08/2007">Fixed forum-17570: text editor saves an additional empty when saving a file.</Change>
<Change author="Daniel Grunwald" date="07/08/2007">Add optional "settingsPath" and "domPersistencePath" settings to SharpDevelop.exe.config. These can be used to redirect the settings/code completion cache to different folders, e.g. for running SharpDevelop from a USB stick.
Make XML documentation tooltips work even if the code completion cache is disabled.</Change>
<Change author="Daniel Grunwald" date="06/27/2007">EventHandlerCompletitionDataProvider: build event name correctly ("button1.Click"=&gt;"button1_Click"), fixed support for generic delegates (EventHandler&lt;T&gt;)</Change>
<Change author="David Alpert" date="06/26/2007">c# event completion better handles generic eventhandlers (EventHandler&lt;TEventArgs&gt;) with a workaround to resolve TEventArgs into a more explicit reference (eg. MouseEventArgs)</Change>
<Change author="David Alpert" date="06/26/2007">improved C# event handler code completion; delegate completion now suggests a method name and optionally inserts the stub.</Change>
<Change author="Daniel Grunwald" date="06/25/2007">Implemented AttributeReturnType, now the unit test AddIn should work again.</Change>
<Change author="Daniel Grunwald" date="06/25/2007">Try to work around MSBuild bug that causes the build to fail on the build server.</Change>
<Change author="Daniel Grunwald" date="06/25/2007">Fixed build.</Change>
<Change author="Daniel Grunwald" date="06/25/2007">Support right-click &gt; add using on type names when the "using" is missing.</Change>
<Change author="Daniel Grunwald" date="06/24/2007">Include XamlBinding and WPFDesigner in setup.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Fixed WpfDesign unit tests.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Add image loading and custom control support to WpfDesign.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Add Undo/Redo support to integrated WPF designer.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Support ToolBox and PropertyGrid in WPF designer.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Add WpfDesigner addin.
Add AbstractViewContentHandlingLoadErrors for easy handling of invalid files.</Change>
<Change author="Matt Ward" date="06/23/2007">Added unit tests for XmlParser getting attribute names with prefixes. Added GetQualifiedAttributeName and GetQualifiedAttributeNameAtIndex methods which return a QualifiedName for an attribute that includes its prefix if any.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Revert text editor selection code to that currently used by SD 2.1 - keyboard selection was broken by an old version of Troy Simpson's patch.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">XamlBinding.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Support "Find references" and "Rename" in .xaml files.</Change>
<Change author="Daniel Grunwald" date="06/23/2007">Worked on Xaml language binding.</Change>
<Change author="Daniel Grunwald" date="06/22/2007">Fixed broken build.</Change>
<Change author="Daniel Grunwald" date="06/22/2007">Refactored the interface IAttribute to include useful information (type reference to the attribute type + arguments).
Begin work on a Xaml language binding.</Change>
<Change author="Daniel Grunwald" date="06/22/2007">Fixed use of ActiveWorkbenchWindow / ActiveViewContent / ActiveContent.</Change>
<Change author="Daniel Grunwald" date="06/22/2007">The tools pad can now host any control as tool box, depending on the current view content. Every view content now has its own SideBar as toolbox, so AddIns don't have to manage merging toolbox sections anymore.</Change>
<Change author="Daniel Grunwald" date="06/22/2007">Merged SD 2.1/2.2 revision 2532:2560 to trunk.</Change>
<Change author="David Alpert" date="06/15/2007">fixed the unit test that was breaking the build.</Change>
<Change author="David Alpert" date="06/15/2007">NavigationService now suspends logging while a solution is being loaded and resumes when ParserService.LoadSolutionProjectsThreadEnded fires. It also suspends logging while the workbench is starting up.</Change>
<Change author="David Alpert" date="06/15/2007">Updated the NavigationService to reflect Daniel's ongoing work on SD-1234 in revisions 2313 and 2365; When jumping to a file position, the transitory (0x0) position is no longer marked;
Added XML comments to NavigationService.cs; Moved the services initialization code from a static constructor (that FxCop didn't like) to the more consistent InitializeService/Unload interface used elsewhere in SharpDevelop.
</Change>
<Change author="David Srbecký" date="06/14/2007">Debbugger.AddIn is now available under the BSD license</Change>
<Change author="Daniel Grunwald" date="06/04/2007">Implemented forum-16705: MyBase keyword and code completion in constructors</Change>
<Change author="Daniel Grunwald" date="06/04/2007">Fixed CSharpExpressionFinder</Change>
<Change author="Daniel Grunwald" date="06/04/2007">"Code Completion when a character is typed" can now be turned off in the options.</Change>
<Change author="Daniel Grunwald" date="06/04/2007">Merged SD 2.1 revision 2493:2532 to trunk.
</Change>
<Change author="Justin Dearing" date="05/31/2007">Cleaned up the Save function. You are now prompted to remove the readonly attribute from Readonly files.</Change>
<Change author="Daniel Grunwald" date="05/25/2007">Revert to old DockPanelSuite: version 2.0 is too unstable.</Change>
<Change author="Daniel Grunwald" date="05/05/2007">Begin implementing "aggressive" context-dependent code-completion (Ctrl+Space completion whenever you start to type).</Change>
<Change author="Daniel Grunwald" date="05/04/2007">Support "go to definition" and "find references" for C# base constructor calls (": base(...)").</Change>
<Change author="Daniel Grunwald" date="05/04/2007">Fixed code-completion bugs.</Change>
<Change author="Daniel Grunwald" date="05/03/2007">Improved C# 3.0 code-completion.</Change>
<Change author="Daniel Grunwald" date="04/20/2007">Fixed unit tests.</Change>
<Change author="Daniel Grunwald" date="04/20/2007">Replace List&lt;LineSegment&gt; with an augmented red-black tree that supports all operations (Insert, Remove, GetSegmentByOffset, GetSegmentByIndex and adjusting the line's offsets after insertions) in O(lg n) time (with n=number of lines in document).</Change>
<Change author="Daniel Grunwald" date="04/19/2007">Fixed build.</Change>
<Change author="Daniel Grunwald" date="04/19/2007">Merged SD 2.1 revision 2482:2493 to trunk.</Change>
<Change author="Daniel Grunwald" date="04/18/2007">SD2-1344: "Anti-alias text" option has no effect when ClearType is turned on</Change>
<Change author="Daniel Grunwald" date="04/18/2007">Refactored code accessing text editor options.</Change>
<Change author="Markus Palme" date="04/17/2007"> TextEditor selection patch from Troy Simposon</Change>
<Change author="Daniel Grunwald" date="04/11/2007">Fixed setup.</Change>
<Change author="Daniel Grunwald" date="04/11/2007">Merged SD 2.1 r 2454:2479 to trunk.
Fixed LocalCopy settings for references to ICSharpCode.Core in AddIns, use GlobalAssemblyInfo.cs for SharpServerTools projects.</Change>
<Change author="Daniel Grunwald" date="04/05/2007">Change background color of inactive pads.</Change>
<Change author="Daniel Grunwald" date="04/05/2007">Apply our patches to the docking library; remove patches that are not required anymore from patchnotes.txt</Change>
<Change author="Daniel Grunwald" date="04/05/2007">Update to DockPanel Suite v2.0.</Change>
<Change author="Itai Bar-Haim" date="04/04/2007">A crash fix when double-clicking the empty place where the "Add Member" row should have appeared; A fix so that row is no longer empty.</Change>
<Change author="Itai Bar-Haim" date="04/04/2007">Fixed a crash when clicking on a members group list content.</Change>
<Change author="Daniel Grunwald" date="04/03/2007">Prevent PropertyContainer from failing when there is no workbench (in unit tests)</Change>
<Change author="Daniel Grunwald" date="04/03/2007">Improved SharpDevelop.Dom API.</Change>
<Change author="Christoph Wille" date="04/02/2007">Fix output path property for Release builds</Change>
<Change author="Christoph Wille" date="04/02/2007">Fix setup for ICSharpCode.DataTools (UI, Model, Addin)</Change>
<Change author="Daniel Grunwald" date="04/01/2007">Fixed bug that prevented the PropertyPad from displaying the properties of elements in pads.</Change>
<Change author="Dickon Field" date="04/01/2007">Refactored following discussion at #d discussions in Karlsruhe. Model api factored to be independent of #d, DataTools.UI is reusable UI components independent of #d, DataTools.AddIn is the #d plugin. ServerTools plugin remains unchanged.</Change>
<Change author="Dickon Field" date="03/31/2007">updated ServerBrowserTool addin file and BitmapResources.resources to include icon for Server Explorer</Change>
<Change author="Dickon Field" date="03/31/2007">added DbToolsProvider for SQLite</Change>
<Change author="Daniel Grunwald" date="03/25/2007">Merged SD 2.1 r 2432:2454 to trunk.</Change>
<Change author="Itai Bar-Haim" date="03/23/2007">Some fixes to the diagram code; Some progress with the class editor (mostly conversion to TreeViewAdv); Some FxCop fixes.</Change>
<Change author="Dickon Field" date="03/20/2007">bugfix to DbProvidersService to handle suspected multiple config entries for the same DbProviderFactory</Change>
<Change author="Dickon Field" date="03/19/2007">Extracted strings for SharpDbTools into resources</Change>
<Change author="Dickon Field" date="03/13/2007">Started to externalise strings to resource files. SharpDbTools default resources are centralised in the SharpDbTools assembly, referenced by plugs-ins etc</Change>
<Change author="Daniel Grunwald" date="03/11/2007">Allow editing the "Content" and "Header" properties.</Change>
<Change author="Daniel Grunwald" date="03/11/2007">Allow placing elements in a Grid.</Change>
<Change author="Daniel Grunwald" date="03/10/2007">allow resizing and deleting Grid rows and columns</Change>
<Change author="Daniel Grunwald" date="03/10/2007">Added row/column creation adorner for Grid.</Change>
<Change author="Daniel Grunwald" date="03/10/2007">Implemented deleting components from the design surface.</Change>
<Change author="Daniel Grunwald" date="03/10/2007">Support drag'n'drop from toolbox to designer surface.</Change>
<Change author="Dickon Field" date="03/08/2007">Fixed bug arising from concurrent access to DbModelInfoService</Change>
<Change author="Daniel Grunwald" date="03/08/2007">Merged SD 2.1 r 2406:2432 to trunk.</Change>
<Change author="Dickon Field" date="03/08/2007">Fixed a bug in OracleFormsArtefactFactory to query metadata for users properly, and added check in DbProvidersService so that it notifies users of DbProviderFactories that are not accessible rather than crashing.</Change>
<Change author="Daniel Grunwald" date="03/05/2007">Allow creating new components.</Change>
<Change author="Dickon Field" date="03/04/2007">Added drag n drop behaviour to Database Explorer. Selecting a database node and dragging it to a drop target results in the connection string for that database connection being copied to the target.
Bugs exist, most importantly in some cases a retrieval of database metadata results in a class cast exception. It is however possible to create a logical database connection, create and test its connection string, without retrieving metadata.</Change>
<Change author="Daniel Grunwald" date="03/04/2007">Support loading .xaml files that use CDATA-sections.
Support loading .xaml files that set up event handlers.</Change>
<Change author="Daniel Grunwald" date="03/04/2007">Merge unit tests for WpfDesign.Designer and WpfDesign.XamlDom.
Keep the Z-Order when moving multiple elements between containers.</Change>
<Change author="Daniel Grunwald" date="03/04/2007">WpfDesigner: support dragging multiple selected components.</Change>
<Change author="Daniel Grunwald" date="03/03/2007">XamlDom: better support for element collections.</Change>
<Change author="Daniel Grunwald" date="03/03/2007">Begin work on moving components between containers.</Change>
<Change author="Daniel Grunwald" date="03/03/2007">Worked on Move/Resize in the WPF Designer.</Change>
<Change author="Daniel Grunwald" date="03/01/2007">Allow selecting multiple child elements inside a Panel by "drawing" a selection rectangle.</Change>
<Change author="Daniel Grunwald" date="02/28/2007">Set Canvas.Left+Canvas.Top attached properties when resizing a control inside a Canvas.</Change>
<Change author="Daniel Grunwald" date="02/27/2007">Add Undo/Redo support to WpfDesigner.</Change>
<Change author="Daniel Grunwald" date="02/27/2007">Merged SD 2.1 r2376:2406 to trunk.</Change>
<Change author="Daniel Grunwald" date="02/27/2007">Allow resizing components.</Change>
<Change author="Matt Ward" date="02/25/2007">Aga.Controls now builds into the SharpDevelop/bin folder so it can be shared by the Class Diagram and the Debugger addin. Updated the installer to reflect this change.</Change>
<Change author="Itai Bar-Haim" date="02/24/2007">Added clearing features for the class canvas and diagram router.</Change>
<Change author="Matt Ward" date="02/24/2007">Removed TreeListView.dll and added Aga.Controls.dll to the Class Diagram addin folder in the installer.</Change>
<Change author="Itai Bar-Haim" date="02/24/2007">removed unneeded references.</Change>
<Change author="Itai Bar-Haim" date="02/24/2007">Fixed naming and brought back items accidentally removed. Fixed parameters icon display.</Change>
<Change author="Daniel Grunwald" date="02/24/2007">fixed build</Change>
<Change author="Daniel Grunwald" date="02/24/2007">Forum-13925: allow turning off the parameter list in ambience.</Change>
<Change author="Itai Bar-Haim" date="02/24/2007">Fixed coloring issue; Fixed parameter documentation display.</Change>
<Change author="Matt Ward" date="02/24/2007">Installer now checks that .NET 3.0 is installed. Changed feature title to SharpDevelop 3.0. Changed the default product code and package code guids in the .user file.</Change>
<Change author="Itai Bar-Haim" date="02/23/2007">Switching to use TreeViewAdv instead of TreeListView. Work in progress.</Change>
<Change author="Russell Wilkins" date="02/20/2007">Loader updates</Change>
<Change author="Russell Wilkins" date="02/17/2007">Removed XomlCodeSeparationDesignerLoader and now use XomlDesignerLoader for all xoml loading.
Some FxCop updates.</Change>
<Change author="Itai Bar-Haim" date="02/16/2007">labels alignment.</Change>
<Change author="Itai Bar-Haim" date="02/16/2007">minor fix - handle layout change event of nested types.</Change>
<Change author="Russell Wilkins" date="02/16/2007">Refactoring the WorkflowDesignerLoaders</Change>
<Change author="Russell Wilkins" date="02/15/2007">Various updates around TypeProviderService and TypeResolutionService.</Change>
<Change author="Russell Wilkins" date="02/13/2007">Template updates.
Do not load/lock assemblies in WorkflowSideTabService.</Change>
<Change author="Daniel Grunwald" date="02/10/2007">Merged SharpDevelop 2.1 r2356:2376 to trunk.</Change>
<Change author="Russell Wilkins" date="02/09/2007">Various fixes to designer services and FxCop Updates</Change>
<Change author="Itai Bar-Haim" date="02/08/2007">Better compatibility with VS2005 format. Made the Enum and the Delegate blocks look more like in VS2005. Minor bug fixes.</Change>
<Change author="Russell Wilkins" date="02/06/2007">Default designer context menu added.</Change>
<Change author="Russell Wilkins" date="02/06/2007">Select related property in propertyPad when error selected from activity context menu.</Change>
<Change author="Russell Wilkins" date="02/06/2007">Implmented TypeConverter for EventProperties.</Change>
<Change author="Russell Wilkins" date="02/06/2007">Fix loading of ViewContent on project opening.
</Change>
<Change author="Russell Wilkins" date="02/05/2007">FxCop updates</Change>
<Change author="Russell Wilkins" date="02/05/2007">Various updates around TypeProviderService and TypeResolutionService.
Template updates</Change>
<Change author="Daniel Grunwald" date="02/05/2007">Fixed build.</Change>
<Change author="Daniel Grunwald" date="02/05/2007">Worked on SD2-1234 - added support for view contents that are not editing a file (e.g. project options).</Change>
<Change author="Daniel Grunwald" date="02/03/2007">Fixed build.</Change>
<Change author="Daniel Grunwald" date="02/03/2007">Merged SD 2.1 r2332:2356 to trunk.</Change>
<Change author="Dickon Field" date="02/01/2007">Added a new subclass of TextEditorControl to specialise behaviour for SQL, SQLTextEditorControl, plus some test code to get the CompletionWindow showing and working correctly. Next step to add an ICompletionDataProvider that encapsulates pluggable SQL parsing using parser based on coco/r.</Change>
<Change author="Russell Wilkins" date="01/31/2007">TypeProviderService added to maintain common TypeProviders for projects.
</Change>
<Change author="Russell Wilkins" date="01/30/2007">WorkflowSideTabService created to handle toolbox sidetabs for project assembly references. </Change>
<Change author="Russell Wilkins" date="01/30/2007">FileRenaming after EventBindingService changes.
SideBar handling moved to WorkflowToolboxService.</Change>
<Change author="Russell Wilkins" date="01/30/2007">Reworking of EventBindingService</Change>
<Change author="Itai Bar-Haim" date="01/28/2007">Some refactoring; Initial support for nested types.</Change>
<Change author="Daniel Grunwald" date="01/26/2007">Fixed merged unit tests.</Change>
<Change author="Daniel Grunwald" date="01/26/2007">Merged SD 2.1 rev. 2226:2312 to trunk:
- Unit Tests window changes: It now has an All Tests root node when multiple test projects exist in a solution. Added a toolbar button and menu item to run all the tests in the solution independent of the currently selected test. Added a run with code coverage toolbar button.
@ -10,11 +284,11 @@ @@ -10,11 +284,11 @@
- Fixed SD2-1252: Don't steal file associations from Visual Studio
- Fixed SD2-1286: Nested With statements result in stack overflow
- Update to NSvn 1.0.0.2727</Change>
<Change author="itaibarhaim" date="01/25/2007">Class diagram file format matches the Visual Studio Class Diagram file format better (still not perfect, somewhat buggy).</Change>
<Change author="russellwilkins" date="01/25/2007">Rules file handling implemented.</Change>
<Change author="christianhornung" date="01/24/2007">ResourceToolkit:
<Change author="Itai Bar-Haim" date="01/25/2007">Class diagram file format matches the Visual Studio Class Diagram file format better (still not perfect, somewhat buggy).</Change>
<Change author="Russell Wilkins" date="01/25/2007">Rules file handling implemented.</Change>
<Change author="Christian Hornung" date="01/24/2007">ResourceToolkit:
Implemented SD2-1237 - Support accessing linked resource files. Resource files that are accessed using a ResourceManager (except the designer generated ones) are now searched in the project instead of directly on disk.</Change>
<Change author="russellwilkins" date="01/24/2007">Template updates,
<Change author="Russell Wilkins" date="01/24/2007">Template updates,
EventBindingService and code generation updates</Change>
<Change author="Daniel Grunwald" date="01/23/2007">Some XML documentation for ICSharpCode.Core.</Change>
<Change author="Daniel Grunwald" date="01/23/2007">Fixed resource editor.</Change>
@ -24,23 +298,23 @@ EventBindingService and code generation updates</Change> @@ -24,23 +298,23 @@ EventBindingService and code generation updates</Change>
<Change author="Daniel Grunwald" date="01/23/2007">Worked on SD2-1234: Create common way to handle in-memory representations of files that have multiple views.
Removed SharpQuery.</Change>
<Change author="David Srbecký" date="01/21/2007">Using Andrey Gliznetsov's Advanced TreeView for Local Variables Pad</Change>
<Change author="justindearing" date="01/20/2007">A pattern for implementing a ConfigurationCollection for storing recently opened files in your application. Its a good starting point.</Change>
<Change author="justindearing" date="01/20/2007">Added a "graphical" dialog based on the UserExitDialog.wxs
<Change author="Justin Dearing" date="01/20/2007">A pattern for implementing a ConfigurationCollection for storing recently opened files in your application. Its a good starting point.</Change>
<Change author="Justin Dearing" date="01/20/2007">Added a "graphical" dialog based on the UserExitDialog.wxs
Changed the naming for WixDialog.xft</Change>
<Change author="itaibarhaim" date="01/19/2007">Made the NoteCanvasItem editable;
<Change author="Itai Bar-Haim" date="01/19/2007">Made the NoteCanvasItem editable;
Some refactoring and file movement;
Added zoom commands (not added to the toolbar yet);
Added styling for abstract, static, and sealed classes.</Change>
<Change author="David Srbecký" date="01/14/2007">Added Andrey Gliznetsov's Advanced TreeView</Change>
<Change author="christianhornung" date="01/13/2007">Added a ListView sorting framework to the Widgets library and used it to implement SD2-1266 - sortable columns in resource editor.</Change>
<Change author="itaibarhaim" date="01/12/2007">Implemented some of the member-adding functionality of the ClassEditor (work in progress).</Change>
<Change author="Christian Hornung" date="01/13/2007">Added a ListView sorting framework to the Widgets library and used it to implement SD2-1266 - sortable columns in resource editor.</Change>
<Change author="Itai Bar-Haim" date="01/12/2007">Implemented some of the member-adding functionality of the ClassEditor (work in progress).</Change>
<Change author="David Srbecký" date="01/12/2007">Fixed last build;
Compare test results in test instead of in TearDown</Change>
<Change author="David Srbecký" date="01/11/2007">Cache variables for a Function;
Some bugfixes</Change>
<Change author="David Srbecký" date="01/11/2007">Trim nulls from the end of most strings</Change>
<Change author="David Srbecký" date="01/11/2007">Do not assume that strings are null terminated</Change>
<Change author="justindearing" date="01/11/2007">Fixed a comment.</Change>
<Change author="Justin Dearing" date="01/11/2007">Fixed a comment.</Change>
<Change author="David Srbecký" date="01/11/2007">Updated string resources</Change>
<Change author="David Srbecký" date="01/10/2007">Fixed access to members of base class</Change>
<Change author="David Srbecký" date="01/10/2007">Added exception test</Change>
@ -49,10 +323,10 @@ Some bugfixes</Change> @@ -49,10 +323,10 @@ Some bugfixes</Change>
<Change author="David Srbecký" date="01/10/2007">Debugger tests: Store various states to XML and compare with previous results</Change>
<Change author="David Srbecký" date="01/08/2007">Unified model for both Local Variables Pad and Tooltips</Change>
<Change author="Dickon Field" date="01/07/2007">Added progressbar for queries from sqltool, introduced base class derived from TextEditor to host code completion behaviour</Change>
<Change author="itaibarhaim" date="01/06/2007">Added initial editing (refactoring) support to the class editor.</Change>
<Change author="itaibarhaim" date="01/05/2007">Fixed class wizard so it is now compiled to the correct place and has the correct version.</Change>
<Change author="itaibarhaim" date="01/05/2007">Added the class wizard project to the class diagram solution.</Change>
<Change author="christianhornung" date="01/04/2007">ResourceToolkit:
<Change author="Itai Bar-Haim" date="01/06/2007">Added initial editing (refactoring) support to the class editor.</Change>
<Change author="Itai Bar-Haim" date="01/05/2007">Fixed class wizard so it is now compiled to the correct place and has the correct version.</Change>
<Change author="Itai Bar-Haim" date="01/05/2007">Added the class wizard project to the class diagram solution.</Change>
<Change author="Christian Hornung" date="01/04/2007">ResourceToolkit:
Fixed resolving of local resource managers (was broken since r2191 because NRefactoryResolver now requires the location to be set on expressions that are parsed with parser.ParseExpression).</Change>
<Change author="Daniel Grunwald" date="01/03/2007">Support editing multiple controls inside the property editor.</Change>
<Change author="Daniel Grunwald" date="01/02/2007">Rework hit testing.</Change>
@ -64,12 +338,12 @@ Fixed resolving of local resource managers (was broken since r2191 because NRefa @@ -64,12 +338,12 @@ Fixed resolving of local resource managers (was broken since r2191 because NRefa
<Change author="Daniel Grunwald" date="12/31/2006">Fixed CSharpCodeCompletion sample.</Change>
<Change author="Daniel Grunwald" date="12/31/2006">Allow setting simple properties via DesignItem.</Change>
<Change author="Daniel Grunwald" date="12/30/2006">WPF Designer.</Change>
<Change author="itaibarhaim" date="12/30/2006">Match to the newest version. Mainly includes features implementation.</Change>
<Change author="itaibarhaim" date="12/30/2006">Initial check-in of the new Class Wizard.</Change>
<Change author="itaibarhaim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="itaibarhaim" date="12/30/2006">Match to the newest version. Mainly includes features implementation.</Change>
<Change author="itaibarhaim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="itaibarhaim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Match to the newest version. Mainly includes features implementation.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Initial check-in of the new Class Wizard.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Match to the newest version. Mainly includes features implementation.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="Itai Bar-Haim" date="12/30/2006">Match to the newest version. Mainly includes refactoring and bug fixes.</Change>
<Change author="Daniel Grunwald" date="12/30/2006">Merged Serralongue 2181:2226 to trunk.</Change>
<Change author="Daniel Grunwald" date="12/30/2006">More work on adorners.</Change>
<Change author="Daniel Grunwald" date="12/29/2006">Add adorner support.</Change>

51
src/Libraries/ICSharpCode.DataTools/ICSharpCode.DataTools.csproj

@ -0,0 +1,51 @@ @@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.20706</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6CC3DF82-E815-483F-B4B5-85191064D981}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ICSharpCode.DataTools</RootNamespace>
<AssemblyName>ICSharpCode.DataTools</AssemblyName>
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="OleDbUtils.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

94
src/Libraries/ICSharpCode.DataTools/OleDbUtils.cs

@ -0,0 +1,94 @@ @@ -0,0 +1,94 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.Data.Common;
using System.Data;
using System.Data.OleDb;
namespace ICSharpCode.DataTools
{
public static class OleDbConnectionUtil
{
/// <summary>
/// Returns a single connection, unopened
/// </summary>
/// <param name="connectionName"></param>
/// <returns>An OleDbConnection object if the connectioName refers to an oledb connection, otherwise null</returns>
/// <exception cref="ArgumentException">thrown if the name of the connection is found,
/// but is not a valid oledb connection string</exception>
public static bool TryGet(string connectionName, out OleDbConnection conn)
{
try
{
ConnectionStringSettingsCollection settingsCollection = getConnectionSettingsCollection();
ConnectionStringSettings settings = settingsCollection[connectionName];
string connString = settings.ConnectionString;
OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder(connString); // ArgumentException thrown here
conn = new OleDbConnection(builder.ConnectionString);
return true;
}
catch (ArgumentException)
{
conn = null;
return false;
}
}
public static void Put(string name, string connectionString)
{
// check that it is an oledb connection string
OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder(name);
Configuration config =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
ConnectionStringsSection s = config.ConnectionStrings;
ConnectionStringSettingsCollection c = s.ConnectionStrings;
ConnectionStringSettings st = new ConnectionStringSettings(name, connectionString);
c.Add(st);
}
// TODO: test what happens when you set an OleDbConnection's connection string to a wrong value - probably
// nothing until you try and open it? Could also try constructing and OleDbConnectionStringBuilder with the
// string and see if it parses ok.
/// <summary>
/// Returns all Connections unopened
/// </summary>
public static List<OleDbConnection> Connections
{
get
{
// iterate through all connection strings trying to create a connection
// from each. If an exception is thrown by the OleDbFactory then do not return it
ConnectionStringSettingsCollection settingsCollection = getConnectionSettingsCollection();
List<OleDbConnection> results = new List<OleDbConnection>();
foreach (ConnectionStringSettings c in settingsCollection)
{
try
{
OleDbConnectionStringBuilder builder = new OleDbConnectionStringBuilder(c.ConnectionString); // ArgumentException thrown here
OleDbConnection conn = new OleDbConnection(builder.ConnectionString);
results.Add(conn);
}
catch(ArgumentException)
{
// do nothing, this is acceptable
}
}
return results;
}
}
private static ConnectionStringSettingsCollection getConnectionSettingsCollection()
{
Configuration config =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
ConnectionStringsSection connSection = config.ConnectionStrings;
ConnectionStringSettingsCollection settingsCollection = connSection.ConnectionStrings;
return settingsCollection;
}
}
}

36
src/Libraries/ICSharpCode.DataTools/Properties/AssemblyInfo.cs

@ -0,0 +1,36 @@ @@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ICSharpCode.DataTools")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ICSharpCode.DataTools")]
[assembly: AssemblyCopyright("Copyright © 2007")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7849b68b-43bd-4b57-90bf-c2c3aeaa4bb6")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

306
src/SharpDevelop.sln

@ -1,178 +1,182 @@ @@ -1,178 +1,182 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
# SharpDevelop 3.0.0.2693
# SharpDevelop 3.0.0.2667
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AddIns", "AddIns", "{14A277EE-7DF1-4529-B639-7D1EF334C1C5}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Display Bindings", "Display Bindings", "{4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Misc", "Misc", "{CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WpfDesign", "WpfDesign", "{388C3979-2621-4839-A955-7E5C03BA0B63}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SearchAndReplace", "AddIns\Misc\SearchAndReplace\Project\SearchAndReplace.csproj", "{9196DD8A-B4D4-4780-8742-C5762E547FC2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.AddIn", "AddIns\DisplayBindings\WpfDesign\WpfDesign.AddIn\WpfDesign.AddIn.csproj", "{9A9D6FD4-6A2E-455D-ACC3-DDA775FE9865}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddinScout", "AddIns\Misc\AddinScout\Project\AddinScout.csproj", "{4B8F0F98-8BE1-402B-AA8B-C8D548577B38}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.XamlDom", "AddIns\DisplayBindings\WpfDesign\WpfDesign.XamlDom\Project\WpfDesign.XamlDom.csproj", "{88DA149F-21B2-48AB-82C4-28FB6BDFD783}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StartPage", "AddIns\Misc\StartPage\Project\StartPage.csproj", "{7D5C266F-D6FF-4D14-B315-0C0FC6C4EF51}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.Designer", "AddIns\DisplayBindings\WpfDesign\WpfDesign.Designer\Project\WpfDesign.Designer.csproj", "{78CC29AC-CC79-4355-B1F2-97936DF198AC}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegExpTk", "AddIns\Misc\RegExpTk\Project\RegExpTk.csproj", "{64A3E5E6-90BF-47F6-94DF-68C94B62C817}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign", "AddIns\DisplayBindings\WpfDesign\WpfDesign\Project\WpfDesign.csproj", "{66A378A1-E9F4-4AD5-8946-D0EC06C2902F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HighlightingEditor", "AddIns\Misc\HighlightingEditor\Project\HighlightingEditor.csproj", "{8A462940-E5E9-4E85-982D-D4C006EE31D4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkflowDesigner", "AddIns\DisplayBindings\WorkflowDesigner\Project\WorkflowDesigner.csproj", "{533F4684-DBA6-4518-B005-C84F22A2DD57}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FiletypeRegisterer", "AddIns\Misc\FiletypeRegisterer\Project\FiletypeRegisterer.csproj", "{D022A6CE-7438-41E8-AC64-F2DE18EC54C6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ClassDiagram", "ClassDiagram", "{DB137F0B-9B62-4232-AE92-F7BE0280B8D3}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Debugger", "Debugger", "{6604365C-C702-4C10-9BA8-637F1E3D4D0D}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassWizard", "AddIns\DisplayBindings\ClassDiagram\ClassWizard\ClassWizard.csproj", "{8C59E80D-C4E4-4F36-9AD8-47C40F6E58B4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TreeListView", "AddIns\Misc\Debugger\TreeListView\Project\TreeListView.csproj", "{B08385CD-F0CC-488C-B4F4-EEB34B6D2688}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Diagrams", "AddIns\DisplayBindings\ClassDiagram\DiagramRouter\Diagrams.csproj", "{0991423A-DBF6-4C89-B365-A1DF1EB32E42}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debugger.Core", "AddIns\Misc\Debugger\Debugger.Core\Project\Debugger.Core.csproj", "{1D18D788-F7EE-4585-A23B-34DC8EC63CB8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassDiagramAddin", "AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin\ClassDiagramAddin.csproj", "{5A1354DF-4989-4BB4-BC6B-D627C2E9FA13}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debugger.AddIn", "AddIns\Misc\Debugger\Debugger.AddIn\Project\Debugger.AddIn.csproj", "{EC06F96A-AEEC-49D6-B03D-AB87C6EB674C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassEditor", "AddIns\DisplayBindings\ClassDiagram\ClassEditor\ClassEditor.csproj", "{F5E059BB-96C2-4398-BED0-8598CD434173}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HtmlHelp2", "AddIns\Misc\HtmlHelp2\Project\HtmlHelp2.csproj", "{918487B7-2153-4618-BBB3-344DBDDF2A2A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassCanvas", "AddIns\DisplayBindings\ClassDiagram\ClassCanvas\ClassCanvas.csproj", "{08F772A1-F0BE-433E-8B37-F6522953DB05}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddInManager", "AddIns\Misc\AddInManager\Project\AddInManager.csproj", "{F93E52FD-DA66-4CE5-A0CB-BCD902811122}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettingsEditor", "AddIns\DisplayBindings\SettingsEditor\Project\SettingsEditor.csproj", "{85226AFB-CE71-4851-9A75-7EEC663A8E8A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PInvokeAddIn", "AddIns\Misc\PInvokeAddIn\Project\PInvokeAddIn.csproj", "{5EEB99CF-EA2B-4733-80A6-CE9192D68170}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IconEditor", "IconEditor", "{0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoAddIn", "AddIns\Misc\MonoAddIn\Project\MonoAddIn.csproj", "{082DCD64-EE32-4151-A50F-E139CF754CC0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconEditorAddIn", "AddIns\DisplayBindings\IconEditor\IconEditorAddIn\IconEditorAddIn.csproj", "{DFB936AD-90EE-4B4F-941E-4F4A636F0D92}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeCoverage", "AddIns\Misc\CodeCoverage\Project\CodeCoverage.csproj", "{08ce9972-283b-44f4-82fa-966f7dfa6b7a}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconEditor", "AddIns\DisplayBindings\IconEditor\IconEditor\IconEditor.csproj", "{DC1CCE11-CB91-40FA-9C47-4D9EB5D67BFD}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTesting", "AddIns\Misc\UnitTesting\UnitTesting.csproj", "{1F261725-6318-4434-A1B1-6C70CE4CD324}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XmlEditor", "AddIns\DisplayBindings\XmlEditor\Project\XmlEditor.csproj", "{6B717BD1-CD5E-498C-A42E-9E6A4584DC48}"
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HtmlHelp2JScriptGlobals", "AddIns\Misc\HtmlHelp2\JScriptGlobals\HtmlHelp2JScriptGlobals.vbproj", "{E54A5AD2-418D-4A85-BA5E-CD803DE38715}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormsDesigner", "AddIns\DisplayBindings\FormsDesigner\Project\FormsDesigner.csproj", "{7D7E92DF-ACEB-4B69-92C8-8AC7A703CD57}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SubversionAddIn", "AddIns\Misc\SubversionAddIn\Project\SubversionAddIn.csproj", "{17F4D7E0-6933-4C2E-8714-FD7E98D625D5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceEditor", "AddIns\DisplayBindings\ResourceEditor\Project\ResourceEditor.csproj", "{CBC6C247-747B-4908-B09A-4D2E0F640B6B}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeAnalysis", "AddIns\Misc\CodeAnalysis\CodeAnalysis.csproj", "{3EAA45A9-735C-4AC7-A799-947B93EA449D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Backends", "Backends", "{FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ComponentInspector", "ComponentInspector", "{BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamlBinding", "AddIns\BackendBindings\XamlBinding\Project\XamlBinding.csproj", "{7C96B65D-28A5-4F28-A35B-8D83CE831EE8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WixBinding", "AddIns\BackendBindings\WixBinding\Project\WixBinding.csproj", "{e1b288a2-08ee-4318-8bbb-8ab72c69e33e}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRefactoryToBooConverter", "AddIns\BackendBindings\Boo\NRefactoryToBooConverter\Project\NRefactoryToBooConverter.csproj", "{DBCF20A1-BA13-4582-BFA9-74DE4D987B73}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BooBinding", "AddIns\BackendBindings\Boo\BooBinding\Project\BooBinding.csproj", "{4AC2D5F1-F671-480C-A075-6BF62B3721B2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "AddIns\BackendBindings\ILAsmBinding\Project\ILAsmBinding.csproj", "{6e59af58-f635-459a-9a35-c9ac41c00339}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector", "AddIns\Misc\ComponentInspector\ComponentInspector\ComponentInspector.csproj", "{000E4F64-5D0D-4EB1-B0BF-1A62ADBC6EAD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VBNetBinding", "AddIns\BackendBindings\VBNetBinding\Project\VBNetBinding.csproj", "{BF38FB72-B380-4196-AF8C-95749D726C61}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector.AddIn", "AddIns\Misc\ComponentInspector\ComponentInspector.AddIn\ComponentInspector.AddIn.csproj", "{869951D5-A0D6-4DC6-9F1D-E6B9A12AC446}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpBinding", "AddIns\BackendBindings\CSharpBinding\Project\CSharpBinding.csproj", "{1F1AC7CD-D154-45BB-8EAF-804CA8055F5A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector.Core", "AddIns\Misc\ComponentInspector\ComponentInspector.Core\ComponentInspector.Core.csproj", "{E6F4983F-DE41-4AEC-88E7-1FA9AFB4E6FF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Misc", "Misc", "{CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceToolkit", "AddIns\Misc\ResourceToolkit\Project\ResourceToolkit.csproj", "{461606BD-E824-4D0A-8CBA-01810B1F5E02}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SharpServerTools", "SharpServerTools", "{6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTools.UI", "AddIns\Misc\SharpServerTools\DataTools.UI\DataTools.UI.csproj", "{87C0E3D9-0DFD-4F6D-8E38-408AAF73F4EE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTools.Model", "AddIns\Misc\SharpServerTools\DataTools.Model\DataTools.Model.csproj", "{51783FC4-D8D2-4BFB-A1F1-AC8857CF3ED0}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerBrowserTool", "AddIns\Misc\SharpServerTools\ServerBrowserTool\ServerBrowserTool.csproj", "{D721EAA4-8A40-4EF0-A011-5862159BE621}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTools.AddIn", "AddIns\Misc\SharpServerTools\SharpDbTools\DataTools.AddIn.csproj", "{93B2D6DF-7588-40C0-8A35-CA0DD7328FC3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerBrowserTool", "AddIns\Misc\SharpServerTools\ServerBrowserTool\ServerBrowserTool.csproj", "{D721EAA4-8A40-4EF0-A011-5862159BE621}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTools.Model", "AddIns\Misc\SharpServerTools\DataTools.Model\DataTools.Model.csproj", "{51783FC4-D8D2-4BFB-A1F1-AC8857CF3ED0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceToolkit", "AddIns\Misc\ResourceToolkit\Project\ResourceToolkit.csproj", "{461606BD-E824-4D0A-8CBA-01810B1F5E02}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTools.UI", "AddIns\Misc\SharpServerTools\DataTools.UI\DataTools.UI.csproj", "{87C0E3D9-0DFD-4F6D-8E38-408AAF73F4EE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ComponentInspector", "ComponentInspector", "{BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Backends", "Backends", "{FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector.Core", "AddIns\Misc\ComponentInspector\ComponentInspector.Core\ComponentInspector.Core.csproj", "{E6F4983F-DE41-4AEC-88E7-1FA9AFB4E6FF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpBinding", "AddIns\BackendBindings\CSharpBinding\Project\CSharpBinding.csproj", "{1F1AC7CD-D154-45BB-8EAF-804CA8055F5A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector.AddIn", "AddIns\Misc\ComponentInspector\ComponentInspector.AddIn\ComponentInspector.AddIn.csproj", "{869951D5-A0D6-4DC6-9F1D-E6B9A12AC446}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VBNetBinding", "AddIns\BackendBindings\VBNetBinding\Project\VBNetBinding.csproj", "{BF38FB72-B380-4196-AF8C-95749D726C61}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector", "AddIns\Misc\ComponentInspector\ComponentInspector\ComponentInspector.csproj", "{000E4F64-5D0D-4EB1-B0BF-1A62ADBC6EAD}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "AddIns\BackendBindings\ILAsmBinding\Project\ILAsmBinding.csproj", "{6e59af58-f635-459a-9a35-c9ac41c00339}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeAnalysis", "AddIns\Misc\CodeAnalysis\CodeAnalysis.csproj", "{3EAA45A9-735C-4AC7-A799-947B93EA449D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BooBinding", "AddIns\BackendBindings\Boo\BooBinding\Project\BooBinding.csproj", "{4AC2D5F1-F671-480C-A075-6BF62B3721B2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SubversionAddIn", "AddIns\Misc\SubversionAddIn\Project\SubversionAddIn.csproj", "{17F4D7E0-6933-4C2E-8714-FD7E98D625D5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRefactoryToBooConverter", "AddIns\BackendBindings\Boo\NRefactoryToBooConverter\Project\NRefactoryToBooConverter.csproj", "{DBCF20A1-BA13-4582-BFA9-74DE4D987B73}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HtmlHelp2JScriptGlobals", "AddIns\Misc\HtmlHelp2\JScriptGlobals\HtmlHelp2JScriptGlobals.vbproj", "{E54A5AD2-418D-4A85-BA5E-CD803DE38715}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WixBinding", "AddIns\BackendBindings\WixBinding\Project\WixBinding.csproj", "{e1b288a2-08ee-4318-8bbb-8ab72c69e33e}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTesting", "AddIns\Misc\UnitTesting\UnitTesting.csproj", "{1F261725-6318-4434-A1B1-6C70CE4CD324}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamlBinding", "AddIns\BackendBindings\XamlBinding\Project\XamlBinding.csproj", "{7C96B65D-28A5-4F28-A35B-8D83CE831EE8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeCoverage", "AddIns\Misc\CodeCoverage\Project\CodeCoverage.csproj", "{08ce9972-283b-44f4-82fa-966f7dfa6b7a}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Display Bindings", "Display Bindings", "{4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoAddIn", "AddIns\Misc\MonoAddIn\Project\MonoAddIn.csproj", "{082DCD64-EE32-4151-A50F-E139CF754CC0}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceEditor", "AddIns\DisplayBindings\ResourceEditor\Project\ResourceEditor.csproj", "{CBC6C247-747B-4908-B09A-4D2E0F640B6B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PInvokeAddIn", "AddIns\Misc\PInvokeAddIn\Project\PInvokeAddIn.csproj", "{5EEB99CF-EA2B-4733-80A6-CE9192D68170}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormsDesigner", "AddIns\DisplayBindings\FormsDesigner\Project\FormsDesigner.csproj", "{7D7E92DF-ACEB-4B69-92C8-8AC7A703CD57}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddInManager", "AddIns\Misc\AddInManager\Project\AddInManager.csproj", "{F93E52FD-DA66-4CE5-A0CB-BCD902811122}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XmlEditor", "AddIns\DisplayBindings\XmlEditor\Project\XmlEditor.csproj", "{6B717BD1-CD5E-498C-A42E-9E6A4584DC48}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HtmlHelp2", "AddIns\Misc\HtmlHelp2\Project\HtmlHelp2.csproj", "{918487B7-2153-4618-BBB3-344DBDDF2A2A}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IconEditor", "IconEditor", "{0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Debugger", "Debugger", "{6604365C-C702-4C10-9BA8-637F1E3D4D0D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconEditor", "AddIns\DisplayBindings\IconEditor\IconEditor\IconEditor.csproj", "{DC1CCE11-CB91-40FA-9C47-4D9EB5D67BFD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IconEditorAddIn", "AddIns\DisplayBindings\IconEditor\IconEditorAddIn\IconEditorAddIn.csproj", "{DFB936AD-90EE-4B4F-941E-4F4A636F0D92}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettingsEditor", "AddIns\DisplayBindings\SettingsEditor\Project\SettingsEditor.csproj", "{85226AFB-CE71-4851-9A75-7EEC663A8E8A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ClassDiagram", "ClassDiagram", "{DB137F0B-9B62-4232-AE92-F7BE0280B8D3}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debugger.AddIn", "AddIns\Misc\Debugger\Debugger.AddIn\Project\Debugger.AddIn.csproj", "{EC06F96A-AEEC-49D6-B03D-AB87C6EB674C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassCanvas", "AddIns\DisplayBindings\ClassDiagram\ClassCanvas\ClassCanvas.csproj", "{08F772A1-F0BE-433E-8B37-F6522953DB05}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Debugger.Core", "AddIns\Misc\Debugger\Debugger.Core\Project\Debugger.Core.csproj", "{1D18D788-F7EE-4585-A23B-34DC8EC63CB8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassEditor", "AddIns\DisplayBindings\ClassDiagram\ClassEditor\ClassEditor.csproj", "{F5E059BB-96C2-4398-BED0-8598CD434173}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TreeListView", "AddIns\Misc\Debugger\TreeListView\Project\TreeListView.csproj", "{B08385CD-F0CC-488C-B4F4-EEB34B6D2688}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassDiagramAddin", "AddIns\DisplayBindings\ClassDiagram\ClassDiagramAddin\ClassDiagramAddin.csproj", "{5A1354DF-4989-4BB4-BC6B-D627C2E9FA13}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FiletypeRegisterer", "AddIns\Misc\FiletypeRegisterer\Project\FiletypeRegisterer.csproj", "{D022A6CE-7438-41E8-AC64-F2DE18EC54C6}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Diagrams", "AddIns\DisplayBindings\ClassDiagram\DiagramRouter\Diagrams.csproj", "{0991423A-DBF6-4C89-B365-A1DF1EB32E42}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HighlightingEditor", "AddIns\Misc\HighlightingEditor\Project\HighlightingEditor.csproj", "{8A462940-E5E9-4E85-982D-D4C006EE31D4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassWizard", "AddIns\DisplayBindings\ClassDiagram\ClassWizard\ClassWizard.csproj", "{8C59E80D-C4E4-4F36-9AD8-47C40F6E58B4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegExpTk", "AddIns\Misc\RegExpTk\Project\RegExpTk.csproj", "{64A3E5E6-90BF-47F6-94DF-68C94B62C817}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkflowDesigner", "AddIns\DisplayBindings\WorkflowDesigner\Project\WorkflowDesigner.csproj", "{533F4684-DBA6-4518-B005-C84F22A2DD57}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StartPage", "AddIns\Misc\StartPage\Project\StartPage.csproj", "{7D5C266F-D6FF-4D14-B315-0C0FC6C4EF51}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WpfDesign", "WpfDesign", "{388C3979-2621-4839-A955-7E5C03BA0B63}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddinScout", "AddIns\Misc\AddinScout\Project\AddinScout.csproj", "{4B8F0F98-8BE1-402B-AA8B-C8D548577B38}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign", "AddIns\DisplayBindings\WpfDesign\WpfDesign\Project\WpfDesign.csproj", "{66A378A1-E9F4-4AD5-8946-D0EC06C2902F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SearchAndReplace", "AddIns\Misc\SearchAndReplace\Project\SearchAndReplace.csproj", "{9196DD8A-B4D4-4780-8742-C5762E547FC2}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.Designer", "AddIns\DisplayBindings\WpfDesign\WpfDesign.Designer\Project\WpfDesign.Designer.csproj", "{78CC29AC-CC79-4355-B1F2-97936DF198AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.XamlDom", "AddIns\DisplayBindings\WpfDesign\WpfDesign.XamlDom\Project\WpfDesign.XamlDom.csproj", "{88DA149F-21B2-48AB-82C4-28FB6BDFD783}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfDesign.AddIn", "AddIns\DisplayBindings\WpfDesign\WpfDesign.AddIn\WpfDesign.AddIn.csproj", "{9A9D6FD4-6A2E-455D-ACC3-DDA775FE9865}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libraries", "Libraries", "{9421EDF4-9769-4BE9-B5A6-C87DE221D73C}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aga.Controls", "Libraries\TreeViewAdv\Aga.Controls\Aga.Controls.csproj", "{E73BB233-D88B-44A7-A98F-D71EE158381D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRefactory", "Libraries\NRefactory\Project\NRefactory.csproj", "{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Build.Tasks", "Libraries\ICSharpCode.Build.Tasks\Project\ICSharpCode.Build.Tasks.csproj", "{4139CCF6-FB49-4A9D-B2CF-331E9EA3198D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TextEditor", "Libraries\ICSharpCode.TextEditor\Project\ICSharpCode.TextEditor.csproj", "{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "Libraries\DockPanel_Src\WinFormsUI\WinFormsUI.csproj", "{D3C782BA-178E-4235-A3BA-8C11DEBB6BEE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TextEditor", "Libraries\ICSharpCode.TextEditor\Project\ICSharpCode.TextEditor.csproj", "{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Build.Tasks", "Libraries\ICSharpCode.Build.Tasks\Project\ICSharpCode.Build.Tasks.csproj", "{4139CCF6-FB49-4A9D-B2CF-331E9EA3198D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRefactory", "Libraries\NRefactory\Project\NRefactory.csproj", "{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aga.Controls", "Libraries\TreeViewAdv\Aga.Controls\Aga.Controls.csproj", "{E73BB233-D88B-44A7-A98F-D71EE158381D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyMeta", "Libraries\MyMeta\MyMeta.csproj", "{9B771930-6F16-4EC7-8CBB-C7B337EF5651}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.DataTools", "Libraries\ICSharpCode.DataTools\ICSharpCode.DataTools.csproj", "{6CC3DF82-E815-483F-B4B5-85191064D981}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Main", "Main", "{5A3EBEBA-0560-41C1-966B-23F7D03A5486}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Dom", "Main\ICSharpCode.SharpDevelop.Dom\Project\ICSharpCode.SharpDevelop.Dom.csproj", "{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Widgets", "Main\ICSharpCode.SharpDevelop.Widgets\Project\ICSharpCode.SharpDevelop.Widgets.csproj", "{8035765F-D51F-4A0C-A746-2FD100E19419}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.BuildWorker", "Main\ICSharpCode.SharpDevelop.BuildWorker\ICSharpCode.SharpDevelop.BuildWorker.csproj", "{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Sda", "Main\ICSharpCode.SharpDevelop.Sda\ICSharpCode.SharpDevelop.Sda.csproj", "{80318B5F-A25D-45AB-8A95-EF31D2370A4C}"
Project("{00000000-0000-0000-0000-000000000000}") = "Tools", "Tools\Tools.build", "B13EFF7F-7EA4-4B68-A375-D112105E9182"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop", "Main\Base\Project\ICSharpCode.SharpDevelop.csproj", "{2748AD25-9C63-4E12-877B-4DCE96FBED54}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StartUp", "Main\StartUp\Project\StartUp.csproj", "{1152B71B-3C05-4598-B20D-823B5D40559E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Core", "Main\Core\Project\ICSharpCode.Core.csproj", "{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StartUp", "Main\StartUp\Project\StartUp.csproj", "{1152B71B-3C05-4598-B20D-823B5D40559E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop", "Main\Base\Project\ICSharpCode.SharpDevelop.csproj", "{2748AD25-9C63-4E12-877B-4DCE96FBED54}"
EndProject
Project("{00000000-0000-0000-0000-000000000000}") = "Tools", "Tools\Tools.build", "B13EFF7F-7EA4-4B68-A375-D112105E9182"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Sda", "Main\ICSharpCode.SharpDevelop.Sda\ICSharpCode.SharpDevelop.Sda.csproj", "{80318B5F-A25D-45AB-8A95-EF31D2370A4C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.BuildWorker", "Main\ICSharpCode.SharpDevelop.BuildWorker\ICSharpCode.SharpDevelop.BuildWorker.csproj", "{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Widgets", "Main\ICSharpCode.SharpDevelop.Widgets\Project\ICSharpCode.SharpDevelop.Widgets.csproj", "{8035765F-D51F-4A0C-A746-2FD100E19419}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Dom", "Main\ICSharpCode.SharpDevelop.Dom\Project\ICSharpCode.SharpDevelop.Dom.csproj", "{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -508,78 +512,88 @@ Global @@ -508,78 +512,88 @@ Global
{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F}.Release|Any CPU.Build.0 = Release|Any CPU
{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B771930-6F16-4EC7-8CBB-C7B337EF5651}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9B771930-6F16-4EC7-8CBB-C7B337EF5651}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9B771930-6F16-4EC7-8CBB-C7B337EF5651}.Release|Any CPU.Build.0 = Release|Any CPU
{9B771930-6F16-4EC7-8CBB-C7B337EF5651}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6CC3DF82-E815-483F-B4B5-85191064D981}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6CC3DF82-E815-483F-B4B5-85191064D981}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6CC3DF82-E815-483F-B4B5-85191064D981}.Release|Any CPU.Build.0 = Release|Any CPU
{6CC3DF82-E815-483F-B4B5-85191064D981}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CE5B42B7-6E8C-4385-9E97-F4023FC16BF2} = {14A277EE-7DF1-4529-B639-7D1EF334C1C5}
{FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C} = {14A277EE-7DF1-4529-B639-7D1EF334C1C5}
{4EA396ED-64AD-4AD0-A67A-AB363F3E0C79} = {14A277EE-7DF1-4529-B639-7D1EF334C1C5}
{CBC6C247-747B-4908-B09A-4D2E0F640B6B} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{7D7E92DF-ACEB-4B69-92C8-8AC7A703CD57} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{6B717BD1-CD5E-498C-A42E-9E6A4584DC48} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{0D37CE59-B0EF-4F3C-B9EB-8557E53A448B} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{85226AFB-CE71-4851-9A75-7EEC663A8E8A} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{DB137F0B-9B62-4232-AE92-F7BE0280B8D3} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{533F4684-DBA6-4518-B005-C84F22A2DD57} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{388C3979-2621-4839-A955-7E5C03BA0B63} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{66A378A1-E9F4-4AD5-8946-D0EC06C2902F} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{78CC29AC-CC79-4355-B1F2-97936DF198AC} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{88DA149F-21B2-48AB-82C4-28FB6BDFD783} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{9A9D6FD4-6A2E-455D-ACC3-DDA775FE9865} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{08F772A1-F0BE-433E-8B37-F6522953DB05} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{F5E059BB-96C2-4398-BED0-8598CD434173} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{5A1354DF-4989-4BB4-BC6B-D627C2E9FA13} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{0991423A-DBF6-4C89-B365-A1DF1EB32E42} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{8C59E80D-C4E4-4F36-9AD8-47C40F6E58B4} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{DC1CCE11-CB91-40FA-9C47-4D9EB5D67BFD} = {0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}
{DFB936AD-90EE-4B4F-941E-4F4A636F0D92} = {0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}
{1F1AC7CD-D154-45BB-8EAF-804CA8055F5A} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{BF38FB72-B380-4196-AF8C-95749D726C61} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{6e59af58-f635-459a-9a35-c9ac41c00339} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{4AC2D5F1-F671-480C-A075-6BF62B3721B2} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{DBCF20A1-BA13-4582-BFA9-74DE4D987B73} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{e1b288a2-08ee-4318-8bbb-8ab72c69e33e} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{7C96B65D-28A5-4F28-A35B-8D83CE831EE8} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{9196DD8A-B4D4-4780-8742-C5762E547FC2} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{4B8F0F98-8BE1-402B-AA8B-C8D548577B38} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{7D5C266F-D6FF-4D14-B315-0C0FC6C4EF51} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{64A3E5E6-90BF-47F6-94DF-68C94B62C817} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{8A462940-E5E9-4E85-982D-D4C006EE31D4} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{D022A6CE-7438-41E8-AC64-F2DE18EC54C6} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{6604365C-C702-4C10-9BA8-637F1E3D4D0D} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{918487B7-2153-4618-BBB3-344DBDDF2A2A} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{F93E52FD-DA66-4CE5-A0CB-BCD902811122} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{5EEB99CF-EA2B-4733-80A6-CE9192D68170} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{082DCD64-EE32-4151-A50F-E139CF754CC0} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{08ce9972-283b-44f4-82fa-966f7dfa6b7a} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{1F261725-6318-4434-A1B1-6C70CE4CD324} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{E54A5AD2-418D-4A85-BA5E-CD803DE38715} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{17F4D7E0-6933-4C2E-8714-FD7E98D625D5} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{3EAA45A9-735C-4AC7-A799-947B93EA449D} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{461606BD-E824-4D0A-8CBA-01810B1F5E02} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C} = {14A277EE-7DF1-4529-B639-7D1EF334C1C5}
{CE5B42B7-6E8C-4385-9E97-F4023FC16BF2} = {14A277EE-7DF1-4529-B639-7D1EF334C1C5}
{6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{D721EAA4-8A40-4EF0-A011-5862159BE621} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{93B2D6DF-7588-40C0-8A35-CA0DD7328FC3} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{51783FC4-D8D2-4BFB-A1F1-AC8857CF3ED0} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{87C0E3D9-0DFD-4F6D-8E38-408AAF73F4EE} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{000E4F64-5D0D-4EB1-B0BF-1A62ADBC6EAD} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{869951D5-A0D6-4DC6-9F1D-E6B9A12AC446} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{E6F4983F-DE41-4AEC-88E7-1FA9AFB4E6FF} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{B08385CD-F0CC-488C-B4F4-EEB34B6D2688} = {6604365C-C702-4C10-9BA8-637F1E3D4D0D}
{1D18D788-F7EE-4585-A23B-34DC8EC63CB8} = {6604365C-C702-4C10-9BA8-637F1E3D4D0D}
{461606BD-E824-4D0A-8CBA-01810B1F5E02} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{3EAA45A9-735C-4AC7-A799-947B93EA449D} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{17F4D7E0-6933-4C2E-8714-FD7E98D625D5} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{E54A5AD2-418D-4A85-BA5E-CD803DE38715} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{1F261725-6318-4434-A1B1-6C70CE4CD324} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{08ce9972-283b-44f4-82fa-966f7dfa6b7a} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{082DCD64-EE32-4151-A50F-E139CF754CC0} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{5EEB99CF-EA2B-4733-80A6-CE9192D68170} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{F93E52FD-DA66-4CE5-A0CB-BCD902811122} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{918487B7-2153-4618-BBB3-344DBDDF2A2A} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{6604365C-C702-4C10-9BA8-637F1E3D4D0D} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{D022A6CE-7438-41E8-AC64-F2DE18EC54C6} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{8A462940-E5E9-4E85-982D-D4C006EE31D4} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{64A3E5E6-90BF-47F6-94DF-68C94B62C817} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{7D5C266F-D6FF-4D14-B315-0C0FC6C4EF51} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{4B8F0F98-8BE1-402B-AA8B-C8D548577B38} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{9196DD8A-B4D4-4780-8742-C5762E547FC2} = {CE5B42B7-6E8C-4385-9E97-F4023FC16BF2}
{EC06F96A-AEEC-49D6-B03D-AB87C6EB674C} = {6604365C-C702-4C10-9BA8-637F1E3D4D0D}
{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{D3C782BA-178E-4235-A3BA-8C11DEBB6BEE} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{4139CCF6-FB49-4A9D-B2CF-331E9EA3198D} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{1D18D788-F7EE-4585-A23B-34DC8EC63CB8} = {6604365C-C702-4C10-9BA8-637F1E3D4D0D}
{B08385CD-F0CC-488C-B4F4-EEB34B6D2688} = {6604365C-C702-4C10-9BA8-637F1E3D4D0D}
{E6F4983F-DE41-4AEC-88E7-1FA9AFB4E6FF} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{869951D5-A0D6-4DC6-9F1D-E6B9A12AC446} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{000E4F64-5D0D-4EB1-B0BF-1A62ADBC6EAD} = {BDDDCD01-D2FE-4EAD-9425-4B6B91922C7C}
{87C0E3D9-0DFD-4F6D-8E38-408AAF73F4EE} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{51783FC4-D8D2-4BFB-A1F1-AC8857CF3ED0} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{93B2D6DF-7588-40C0-8A35-CA0DD7328FC3} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{D721EAA4-8A40-4EF0-A011-5862159BE621} = {6CEEC0D9-FA00-4EE3-9A1C-39B7ACC882FD}
{7C96B65D-28A5-4F28-A35B-8D83CE831EE8} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{e1b288a2-08ee-4318-8bbb-8ab72c69e33e} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{DBCF20A1-BA13-4582-BFA9-74DE4D987B73} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{4AC2D5F1-F671-480C-A075-6BF62B3721B2} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{6e59af58-f635-459a-9a35-c9ac41c00339} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{BF38FB72-B380-4196-AF8C-95749D726C61} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{1F1AC7CD-D154-45BB-8EAF-804CA8055F5A} = {FEB825FA-4AD8-425D-8E4A-B5A18EE1B81C}
{388C3979-2621-4839-A955-7E5C03BA0B63} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{533F4684-DBA6-4518-B005-C84F22A2DD57} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{DB137F0B-9B62-4232-AE92-F7BE0280B8D3} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{85226AFB-CE71-4851-9A75-7EEC663A8E8A} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{0D37CE59-B0EF-4F3C-B9EB-8557E53A448B} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{6B717BD1-CD5E-498C-A42E-9E6A4584DC48} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{7D7E92DF-ACEB-4B69-92C8-8AC7A703CD57} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{CBC6C247-747B-4908-B09A-4D2E0F640B6B} = {4EA396ED-64AD-4AD0-A67A-AB363F3E0C79}
{DFB936AD-90EE-4B4F-941E-4F4A636F0D92} = {0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}
{DC1CCE11-CB91-40FA-9C47-4D9EB5D67BFD} = {0D37CE59-B0EF-4F3C-B9EB-8557E53A448B}
{8C59E80D-C4E4-4F36-9AD8-47C40F6E58B4} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{0991423A-DBF6-4C89-B365-A1DF1EB32E42} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{5A1354DF-4989-4BB4-BC6B-D627C2E9FA13} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{F5E059BB-96C2-4398-BED0-8598CD434173} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{08F772A1-F0BE-433E-8B37-F6522953DB05} = {DB137F0B-9B62-4232-AE92-F7BE0280B8D3}
{9A9D6FD4-6A2E-455D-ACC3-DDA775FE9865} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{88DA149F-21B2-48AB-82C4-28FB6BDFD783} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{78CC29AC-CC79-4355-B1F2-97936DF198AC} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{66A378A1-E9F4-4AD5-8946-D0EC06C2902F} = {388C3979-2621-4839-A955-7E5C03BA0B63}
{6CC3DF82-E815-483F-B4B5-85191064D981} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{9B771930-6F16-4EC7-8CBB-C7B337EF5651} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{E73BB233-D88B-44A7-A98F-D71EE158381D} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
B13EFF7F-7EA4-4B68-A375-D112105E9182 = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{1152B71B-3C05-4598-B20D-823B5D40559E} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{2748AD25-9C63-4E12-877B-4DCE96FBED54} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{80318B5F-A25D-45AB-8A95-EF31D2370A4C} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{8035765F-D51F-4A0C-A746-2FD100E19419} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{4139CCF6-FB49-4A9D-B2CF-331E9EA3198D} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{D3C782BA-178E-4235-A3BA-8C11DEBB6BEE} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195} = {9421EDF4-9769-4BE9-B5A6-C87DE221D73C}
{924EE450-603D-49C1-A8E5-4AFAA31CE6F3} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{8035765F-D51F-4A0C-A746-2FD100E19419} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{80318B5F-A25D-45AB-8A95-EF31D2370A4C} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{2748AD25-9C63-4E12-877B-4DCE96FBED54} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{1152B71B-3C05-4598-B20D-823B5D40559E} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
B13EFF7F-7EA4-4B68-A375-D112105E9182 = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
{C3CBC8E3-81D8-4C5B-9941-DCCD12D50B1F} = {5A3EBEBA-0560-41C1-966B-23F7D03A5486}
EndGlobalSection
EndGlobal

Loading…
Cancel
Save