Daniel Grunwald
3256c448ee
Avoid keeping the whole AXmlDocument in memory for XamlUnresolvedFile.
12 years ago
Daniel Grunwald
560265cf61
Improve newline handling of XmlDocTooltipProvider.
12 years ago
Matt Ward
8794af0c6b
Fix duplicate assembly references when installing NuGet.
...
References to assemblies in a project that use the qualified assembly name, such as:
"NUnit.Framework, Version=2.6.2.0, Culture=neutral, PublicKeyToken=8cc8392e8503e009"
were not being removed and re-added when installing a NuGet package that included
that reference.
12 years ago
Mike Krüger
3ca994db9c
Merge pull request #191 from alanmcgovern/master
...
Remove $(Configuration) and $(Platform) from the OutputPath variable
12 years ago
Alan McGovern
b789f83243
[build] Fix the OutputPath properties
...
They should not contain $(Platform) or $(Configuration) in the actual
string as MonoDevelop is unable to cope with this.
12 years ago
Matt Ward
6dddd4eeef
Add credential provider for NuGet feeds.
...
Only supports credentials stored in NuGet.config under
the user's profile:
nuget sources update -name MyFeed -username user -password pass
12 years ago
Matt Ward
cacfb33313
Support installation of Microsoft.Bcl.Build NuGet package.
...
Add projects to MSBuild's global project collection if
the NuGet package has PowerShell scripts.
Add/Remove MSBuild project imports added to a project
held in MSBuild's global project collection after
the NuGet package has been installed.
12 years ago
Matt Ward
c67ee6ba61
Add gap between Update All button and scrollbar.
12 years ago
Matt Ward
64385d17b5
Fix scrollbar not displaying in Manage Packages dialog.
12 years ago
Peter Forstmeier
6a08d8f096
DataPageBuilder.cs
12 years ago
Mike Krüger
18e17deda6
Added index getter to type parameter reference.
12 years ago
Mike Krüger
f7e1c35fdf
Fixed bug in IdStringProvider.ParseTypeName.
12 years ago
Mike Krüger
929dc52f3f
Disabled VariableDeclaredInWideScopeIssue.
...
This may destroy code - see
"DoesNotSuggestMovingIntoBodyAfterMethodCall". This issue requires
some extra logic. I doubt that the issue is useful any longer when
that logic is implemented. Safely moved can only be constant
expressions (which should be handled by the compiler anyway). It needs
to check that it doesn't move non constant code beyond any
method/property usage or field assignments - there are no much use
cases left for that action.
12 years ago
Mike Krüger
06ad4c8218
Added unit test for CS0029InvalidConversionIssue.
12 years ago
Mike Krüger
0974a50e89
Cleaned up some code.
12 years ago
Andreas Weizel
d471550e27
Merge pull request #38 from Rpinski/GotoDialog
...
GotoDialog: Restored search in type members with dot "." in SD 5 + input completion by TAB
12 years ago
Matt Ward
1f1620234d
Support pre-release NuGet packages in dialog.
12 years ago
Mike Krüger
fce1859c06
Fixed some issues in the IkvmLoader.
...
It's now 98% working.
12 years ago
Andreas Weizel
e64893d3b2
GotoDialog: Possibility to complete input with selected item by pressing TAB. Restored the feature to search for type members by typing the dot (".").
12 years ago
Daniel Grunwald
e1f13aaedf
Replace ExpressionOfCompatibleTypeCastIssue with CS0029InvalidConversionIssue.
12 years ago
Daniel Grunwald
1e1ed360aa
Fix ExpressionOfCompatibleTypeCastIssue: assigning a literal 0 to an enum-type variable is valid
12 years ago
Daniel Grunwald
c1aa0acd09
Remove unreachable code
12 years ago
Daniel Grunwald
e22be6ea28
Fix crash in ConvertIfToSwitchAction when there are nested if statements.
12 years ago
Mike Krüger
fabbe8bc90
Improved the Ikvm loader.
...
It's still not a 100% replacement - 6 tests are failing.
12 years ago
Matt Ward
997641f8ac
Refresh updated NuGet packages after updating in dialog.
12 years ago
Matt Ward
4aa7a3ca10
Update installed NuGet packages after updating all packages in dialog.
12 years ago
Matt Ward
0ad4adb5a8
Refresh Projects window after updating all NuGet packages.
12 years ago
Matt Ward
2ea4c27ad4
Clear dialog error messages when updating all NuGet packages.
12 years ago
Mike Krüger
5f98837c3c
Added first implementation of an ikvm assembly loader (no cecil loader
...
replacement yet).
12 years ago
Matt Ward
3d0a095487
Fix packages.config not being added to project.
...
NuGet's PhysicalFileSystem now has two AddFile methods
and both of these need to be overridden.
12 years ago
Matt Ward
b23d8c969b
Fix updated packages not being shown in dialog.
...
Updated packages were not being displayed in the
Manage Packages dialog when the solution was selected
and two or more projects had the same NuGet packages but
different versions.
http://nuget.codeplex.com/workitem/3034
12 years ago
Peter Forstmeier
a6ef0adebc
Detailsection, Test's to arrange Sections
12 years ago
Matt Ward
e8a97e3455
Refactor UpdatedPackagesViewModel.
12 years ago
Matt Ward
a1e33374d9
Support updating all NuGet packages in solution from dialog
12 years ago
Peter Forstmeier
ddfff10c61
Fill, ReportCreatorFactory
12 years ago
Daniel Grunwald
ed58119f41
Fix crash in ConvertIfToSwitchAction when there are nested if statements.
12 years ago
Daniel Grunwald
c22d50bf3f
Fix .NET 3.5 Build Worker: use x86 target platform as the .NET 3.5 runtime does not support AnyCPU (32-bit preferred)
...
Use .NET 4.0 Build Worker for Tools.build.
12 years ago
Daniel Grunwald
8c555650d9
Don't show the context action popup when the caret is outside the editor boundaries
12 years ago
Daniel Grunwald
f8488b61a7
Fix some compiler warnings.
12 years ago
Daniel Grunwald
97e6596a2c
Set target CPU to AnyCPU where possible.
12 years ago
Matt Ward
f0ab5200f6
Fix PInvoke context menu not displaying in text editor.
12 years ago
Matt Ward
3faeef292c
Update PInvoke addin sample.
...
Update project to target .NET 4.5
Change output folder to AddIns\Samples\PInvoke
Add nuspec file for generating NuGet package for
AddIn Manager version 2
12 years ago
Peter Forstmeier
f50a7c31a0
Grouping + Fill()
12 years ago
Daniel Grunwald
fb493193e3
AddAnotherAccessorAction: don't try to assign to readonly fields
12 years ago
Daniel Grunwald
1cec2e62f8
Ensure we pass the correct type argument to GatherVisitorBase<>.
12 years ago
Mike Krüger
5b30dbb1e2
ExpressionOfCompatibleTypeCastIssue no longer warns on implicit
...
conversions.
12 years ago
Mike Krüger
81c06bd868
Fixed potential bug in 'NoDefaultConstructorIssue'.
12 years ago
Daniel Grunwald
cb5b92cf40
Fix handling of empty segments in TextSegmentReadOnlySectionProvider
12 years ago
Daniel Grunwald
78027319a7
Compare IsAtEndOfLine in TextViewPosition.Equals
12 years ago
Daniel Grunwald
ecec217cc8
Fixed caret navigation around characters outside the Basic Multilingual Plane (characters represented using surrogate pairs).
12 years ago