Daniel Grunwald
5ac93c1540
Port most of SharpDevelop to new ISolution API.
13 years ago
Daniel Grunwald
7ed3cf8a5c
Fix infinite loop in WPF designer.
13 years ago
David Srbecký
4798dae6fe
Refactored the stepping logic to be more friendly with multiple symbol source;
...
JIT and NGEN optimization are explicit options now
13 years ago
Matt Ward
5ff1f88f1f
Fix null reference when creating new EF data model file.
...
Do not add an EntityTypeMapping element if it already exists.
Fix intermittent error were the EF data model view content
does not have a workbench window when the file is renamed
on save.
13 years ago
Matt Ward
14592816aa
Reformat code.
13 years ago
Matt Ward
bad935c416
Fix null reference exception on disposing EDM View.
...
When an exception is thrown when loading a .edmx file
the EDMDesignerViewContent's Dispose method was not
handling the EDMView being null and causing the
underlying exception to be hidden.
13 years ago
Matt Ward
cdfd000f36
Fix null reference exception in database connection dialog.
...
The Add button was being enabled when the selected database
changed but on connecting to the server again the selected
database was cleared but the Add button was not disabled.
13 years ago
David Srbecký
87e8f5a54c
Improve IL mapping:
...
- Use the widest sequence point containing the IL offset
- Ignore the newline which was printed at the end of the statement
13 years ago
Peter Forstmeier
1e082175f4
Remove old SettingsView, remove reference to System.Windows.Forms
13 years ago
David Srbecký
333e3644b7
Slightly improve mapping from IL to source code
13 years ago
David Srbecký
01ec356fa1
ILSpyAddIn can be a symbol source for the debugger
13 years ago
David Srbecký
3c1353849f
Remove all code related to debugging of decompiled code
13 years ago
Peter Forstmeier
f89bd5107a
Convert SettingsEditor to Wpf
13 years ago
Siegfried Pammer
4802c70556
implemented more methods in CSharpCodeGenerator + Tests and added back SuppressMessageCommand
13 years ago
Daniel Grunwald
a2bfa48520
Use InvokeAsyncAndForget() instead of InvokeAsync().FireAndForget().
13 years ago
Daniel Grunwald
cc470ec86e
Replace DelegateCommand and DesignCommand with RelayCommand.
13 years ago
Siegfried Pammer
aba3a7a1ca
fix unit tests
13 years ago
Siegfried Pammer
7eb5641bcf
add WPF designer back
13 years ago
Siegfried Pammer
ae7aec8d8c
move textmarker tooltip support to AddIn tree
13 years ago
Matt Ward
ab5982d2e0
Fix NullReferenceException for incorrect SubstitutionGroup in XML schema.
...
Handle XML schema that defines an element that uses a SubstitutionGroup
element but does not define the corresponding element.
13 years ago
Matt Ward
d8e27befb9
Fix xml completion for SubstitutionGroup elements.
13 years ago
Matt Ward
50fd47ee9a
Add Data addin.
13 years ago
Daniel Grunwald
0eb8e20dbc
Adjust SharpDevelop to NRefactory update.
...
I removed the Mono.Cecil reference from SD.Base as it was only used in the broken debugger-decompiler code, which doesn't really belong into Base anyways.
13 years ago
Siegfried Pammer
41beb10d7c
add back SettingsEditor addin
13 years ago
Matt Ward
e879ad63d8
Update ignored XML Editor tests.
13 years ago
Matt Ward
a9b101632e
Update XML Editor solution.
...
Allow XmlEditor tests to be run on their own separately
from the main SharpDevelop tests solution.
13 years ago
Matt Ward
4bbd7f609d
Fix Hide XPath Results menu option.
...
ITextMarkerService is not returned by IViewContent.GetService()
but is available from ITextEditor.
13 years ago
Daniel Grunwald
d25d7da199
Fix bug in find references that caused us to miss many results.
13 years ago
Daniel Grunwald
aad679fd78
Fix some code issues.
13 years ago
Peter Forstmeier
e2f66561ab
CompilerMessageView.cs reacts on new OnPropertyChange from FontSize and Font family
13 years ago
Peter Forstmeier
f0ef718865
Remove dependency to System.Drawing.Font.
...
DefaultFont is stored as two Property's (FontSize and FontFamily)
13 years ago
Daniel Grunwald
f1b2220314
Change ContextActionsPopup, ContextActionsBulbPopup and the HiddenDefinition popup to open/close as the parent TextArea gains/loses focus.
...
Move ChangeMarkerMargin and related classes into own folder.
Remove C#-specific hack from HiddenDefinitionRenderer.
Do not return null from CreateHighlighter().
13 years ago
Daniel Grunwald
60855c9542
ChangeMarkerMargin: Horizontally align diff popup with the text view
13 years ago
Daniel Grunwald
cfa01c3986
Fix HighlightingColorizer.OnHighlightStateChanged ignoring some change notifications.
13 years ago
Daniel Grunwald
e24b3330ce
Use SD.Dom for entity context menu.
...
Note: this does not work yet because the DOM implementation is incomplete.
13 years ago
Daniel Grunwald
36e872d395
Fix Find Overrides (F6) across multiple projects.
13 years ago
Daniel Grunwald
2793cc46eb
Add Ctrl+Space completion that automatically inserts usings.
13 years ago
Matt Ward
d9028a73bc
Fix FormatException in Class Diagram addin.
...
Visual Studio class diagrams do not store the Collapsed xml attribute when the item is not collapsed.
13 years ago
Siegfried Pammer
97d2a30a7a
implement WPF-based FontSelector
13 years ago
Daniel Grunwald
e41e8d142a
Implemented folding of #regions, usings and comments.
13 years ago
Daniel Grunwald
c9cc2ff077
Remove CustomizableHighlightingColorizer.
13 years ago
Daniel Grunwald
72c6e37fc0
Use a regular HighlightingColorizer with custom IHighlighter instead of CustomizableHighlightingColorizer.
13 years ago
Daniel Grunwald
703d17d91d
Reimplemented CodeEditorView.ShowHelp()
13 years ago
Matt Ward
04d4ed86f6
Fix invalid EF association names in SSDL.
...
Replace dots with underscores in Assocation/@Name and AssociationSet/@Name
to create valid names for EdmGen.exe
<AssociationSet Name="FK_dbo_Posts_dbo_Blogs_BlogId"
Association="EFTest.BloggingContextModel.FK_dbo_Posts_dbo_Blogs_BlogId">
<Association Name="FK_dbo_Posts_dbo_Blogs_BlogId">
13 years ago
Matt Ward
bf58f7a3bb
Fix null reference in ConnectionWizardWindow.
...
Disable Connect button until the database driver is selected.
13 years ago
Matt Ward
e27c96cb31
Fix XML attribute value completion with union member types.
...
<xs:union memberTypes="YesNoType Preprocessor"/>
13 years ago
Siegfried Pammer
dc3da0a8e9
fixed SD-1656 - Tools window does not show ToolboxBitmaps by applying suggestion from http://community.sharpdevelop.net/forums/t/16404.aspx , which seems to be a good approximation of what VS is doing
13 years ago
Matt Ward
e9f682ca5a
Fix labels hidden in Hex Editor options.
13 years ago
Matt Ward
c052ce5b9f
Fix missing ProviderManifest passed to EDM generator.
...
Bypassing the auto-discovery of data sources by entering the data source information
in manually causes the provider manifest to not be set. This then causes EdmGen.exe
to fail since the provider manifest is missing from the Store schema definition language
(.ssdl) file.
13 years ago
Matt Ward
a35ec77d34
Show output from EDM generator on exception.
13 years ago