Matt Ward
b1f70d154a
Handle any exceptions when NuGet package added to project.
...
Logic to check if the NuGet package is for the solution or for the
project was not handling any exceptions that could be generated.
For example if installing a NuGet package that supports the
dnx framework, which is not currently supported in NuGet 2.8.3,
the exception would not be caught because the try catch was at
a lower level and not at the top level.
Exceptions are now caught when checking the package to see if it is a
solution level package when adding, removing or managing a NuGet
package.
10 years ago
Andreas Weizel
fbf09e108e
Merge pull request #676 from jogibear9988/master
...
Bugfix for #675
10 years ago
jkuehner
265c7f2d23
Merge branch 'master' of https://github.com/jogibear9988/SharpDevelop
10 years ago
jkuehner
a7b0224a56
bugfix #675
10 years ago
Andreas Weizel
cc9fd833e3
Merge pull request #671 from gumme/WpfDesignerCommentsWarningFixes
...
Wpf designer comments warning fixes
10 years ago
gumme
d875706747
Added constructor to allow the use of custom settings with XamlXmlWriter.
10 years ago
gumme
786f60ae9b
Added comments where missing on public types.
10 years ago
Christoph Wille
9b2663208f
Set years in /doc
10 years ago
Andreas Weizel
bcef7b1857
Merge pull request #664 from gumme/WpfDesignerIsHiddenFixes
10 years ago
Andreas Weizel
caff9dbb8d
Merge pull request #643 from lvv83/nunit_ex
10 years ago
Andreas Weizel
5f965cb9a4
Merge pull request #659 from gumme/WpfDesignerPublicShapeExtensions
10 years ago
Andreas Weizel
890ec5260e
Merge remote-tracking branch 'remotes/origin/master'
10 years ago
Andreas Weizel
bd1aa6fe23
Merge pull request #662 from jogibear9988/master
10 years ago
Siegfried Pammer
a319332698
Update GlobalAssemblyInfo.cs.template for beta 2
10 years ago
gumme
13b5a63303
Hiding/Showing the element when IsHidden property is set/cleared is now handled centrally in DesignTimeProperties.cs.
...
This fixes the following bugs:
Bindings/Converters on the Visibility property was triggered and replaced the value set by OutlineNodeBase.cs.
Changes on Visibility property ignored IsHidden setting, for example if IsHidden was true and changing Visibility to Visible would then make it Visible.
10 years ago
Andreas Weizel
f3a38a329e
Fix: FormLocationHelper has set wrong window location when opening a dialog from another dialog.
10 years ago
jogibear9988
25481b6c87
Bugfix URI was wrong (missing "/"), when compiled with roslyn from CTP6 it did not work
10 years ago
Matt Ward
db2919ea28
Fix web service redirect error when adding web reference.
...
Adding a web reference to the following web service would fail
since one of the schemas required a redirect to be downloaded.
http://www.onvif.org/onvif/ver10/media/wsdl/media.wsdl
10 years ago
Andreas Weizel
b1d3139740
Merge pull request #660 from gumme/WpfDesignerWarningFixes
...
Wpf designer warning fixes
10 years ago
gumme
096ecc18e1
Replaced pragmas for warning 1591 with either <inheritdoc/> or proper documentation.
10 years ago
Andreas Weizel
a7c264e9b1
Merge pull request #661 from gumme/WpfDesignerBrushEditorNameFix
...
Tab headers should not expose technology names or words.
10 years ago
jogibear9988
dd84bfb542
Fix a few XML Comments
10 years ago
jogibear9988
1c95b77ab3
Add a designItembinding, this can be used when you create your own Property Editors, they should not only Bind
...
to the Value of the View, no they should also change the Properties of the underlaying DesignItem
10 years ago
jogibear9988
b511e54d08
XML Comment fixes
10 years ago
jogibear9988
feb875847a
Fix a Null ref Exception
10 years ago
jogibear9988
af55ad837c
Better Nullable Enum support
10 years ago
Andreas Weizel
a277944b4c
Merge pull request #657 from gumme/WpfDesignerCollectionResetUndoRedoFix.
10 years ago
jkuehner
14a83e6917
Merge remote-tracking branch 'remotes/sd/master'
10 years ago
gumme
3f52bfa686
Tab headers should not expose technology names or words.
10 years ago
gumme
5a12c7c1d1
Disabled warning "field is assigned but its value is never used" because we want to keep it for future use.
10 years ago
gumme
5c1c0ff062
Removed null-check, this removed warning that value can never be null.
10 years ago
gumme
d87e0a64d9
Removed new keyword, hiding not needed because its an interface implementation.
...
Fixed indentation.
10 years ago
gumme
e322e41fdf
Added new keyword to indicate that hiding was intended and remove warning.
10 years ago
gumme
9b6df2e18b
Disable warnings where appropriate.
10 years ago
gumme
0999a0dce5
Fixed comparison bug and removed unreachable code. This removed two warnings.
10 years ago
gumme
08d28baa64
Fixed simple warnings like redundant using directives, unused variables and added some missing xml comments.
10 years ago
gumme
824094126a
LineHandlerExtension is now public to allow it to be overridden by an other extension.
...
Bounds is now a private class of LineHandlerExtension because its the only class where it is used.
10 years ago
gumme
58b43f2511
Extension is now public to allow it to be overridden by an other extension.
...
Using .Net built-in type Point instead of custom Bounds type.
Changed _selectedThumbs to _selectedPoints as it describes its purpose better.
10 years ago
gumme
d49a8c6dc8
Merge branch 'master' of https://github.com/icsharpcode/SharpDevelop into WpfDesignerCollectionResetUndoRedoFix
...
Conflicts:
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/CollectionSupport.cs
10 years ago
gumme
bd1981ded9
CollectionElementsCollection now implements INotifyCollectionChanged. Using this in XamlProperty to know when the collection gets empty, and if conditions are fulfilled remove unnecessary xaml.
...
This change was necessary because before this change Reset was called on the collection property from CollectionElementsCollection. This had the unwanted effect that it caused the instance property value to use property default value, which often is null, when all we actually wanted was to avoid bloated xaml and leave the instance property value untouched.
10 years ago
Andreas Weizel
e20fdc9571
Fixed formatting/indentation.
10 years ago
Andreas Weizel
e694a4f6fc
Merge pull request #651 from J-McElroy/master
10 years ago
jkuehner
2dfefcda1d
Buggfix Nullable Enum as Property
10 years ago
Andreas Weizel
a21da76a0c
Merge pull request #653 from jogibear9988/master
...
Fix that Images don't work
10 years ago
jkuehner
f94d0505c2
Fix that Images don't work
10 years ago
Matt Ward
c7e6319925
Update to NuGet 2.8.3
...
Fixes error when installing xunit.core 2.0.0-rc1-build2826:
System.InvalidOperationException: 'xunit.core' already has a
dependency defined for 'xunit.extensibility.core'.
10 years ago
AleksRiabov
9a08947993
Fixed Reference columns resizing problem
10 years ago
Andreas Weizel
6918321880
Fixed AssemblyInfoProviderTests failing after pull request #642 .
10 years ago
Andreas Weizel
319880b041
Fixed AssemblyInfoProviderTests broken by pull request #642 .
10 years ago
Andreas Weizel
69aa9f3375
Merge pull request #642 from linquize/assembly-info
...
Version Editor should allow other patterns
10 years ago