The #develop teamblog
 Monday, October 30, 2006

The PDF contains a presentation on SharpDevelop touching the following points:

  • SharpDevelop - The IDE
  • SharpDevelop - The Core
  • SharpDevelop - The Architecture
  • SharpDevelop - The Components
  • SharpDevelop - The Team
  • SharpDevelop - The Future

The section "components" talks specifically about features of SharpDevelop that can be used in your applications.

sd2from10000ft.pdf (462.7 KB)

Categories: Chris
Monday, October 30, 2006 7:54:10 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 

Daniel prepared an NRefactory Internals presentation for this year's #d^3 event in Bad Ischl. The PDF version is now available for download:

nrefactoryinternals.pdf (1.01 MB)

Categories: Chris
Monday, October 30, 2006 11:10:07 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



 Saturday, October 28, 2006

The SharpDevelop repository now contains a sample application that shows how to use our libraries ICSharpCode.SharpDevelop.Dom and ICSharpCode.TextEditor to enable code-completion.

You can find it in the folder SharpDevelop\samples\CSharpCodeCompletion. The expression resolver is part of SharpDevelop.Dom, so the example supports complex generic types etc. However it implements only code-completion when typing "." - no Ctrl+Space, keyword-completion or method insight. The code was kept as simple as possible, so multiple overloads are not filtered out, and there are no different icons for protected or internal members.

Categories: Daniel
Saturday, October 28, 2006 2:14:13 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [2]

 

In the directory samples\NRefactoryExample you can find a new demo of our VB.NET/C# parser library.

It converts a code snippet into it's abstract syntax tree represntation (AST) which you can see and modify in the treeview below. The other way (AST to code) supported as well as running a visitor on the tree.

Categories: Markus
Saturday, October 28, 2006 1:52:41 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 

Supposed you want to call a method and don't know the return type you can use this handy completion feature:

int getSomeObscureType()
{
    return 1;
}      

void test()
{
    ? x = getSomeObscureType();
}

After you typed the semicolon (highlighted in red), the placeholder "?" is replaced by the return type of the called method:

void test()
{
    int x = getSomeObscureType();
}

Categories: Markus
Saturday, October 28, 2006 1:40:16 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 

Once again we are sitting in Bad Ischl discussing and working on SharpDevelop.


Chris showing off his brand new machine.


Daniel, after optimizing the folding speed.
Categories: Markus
Saturday, October 28, 2006 1:05:46 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



 Friday, October 27, 2006


Categories: Markus
Friday, October 27, 2006 8:47:02 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



 Tuesday, September 19, 2006

Read the detailed announcement for version 2.1's Beta 1 release here.

Categories: Chris
Tuesday, September 19, 2006 10:38:18 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



 Monday, September 18, 2006

A feature that was implemented rather early in the codebase of SharpDevelop2 2.1 is support for code analysis via FxCop. This code analysis tool comes in really handy to for example spot security problems in your code (discussed in the article A Look Inside the Security Development Lifecycle at Microsoft), or more general, detect coding errors (please see the article Bad Code? FxCop to the Rescue, or FxCop, Your .NET Cop).

How does it look like? It integrates with the build system and errors / warnings are displayed alongside compiler warnings:

FxCop is not enabled by default, you have to do that in the project options:

It is considered good coding practice to enable code analysis.

Categories: Chris
Monday, September 18, 2006 1:29:55 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [1]

 



 Sunday, September 17, 2006

SharpDevelop2 2.1 codenamed "Serralongue" will ship with support for WiX (Windows Installer XML toolset) setup creation. Matt has a detailed blog post on the WiX integration, as well as one on the new setup for SharpDevelop2 2.1 that was built using the WiX feature set.

In other news: we are pleased to announce that we will ship Beta 1 of SharpDevelop2 2.1 "Serralongue" on Tuesday, September 19th.

Categories: Chris
Sunday, September 17, 2006 5:46:22 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



 Tuesday, September 05, 2006

SharpDevelop 2.1 sports code-completion support for .NET 1.0, .NET 1.1 and the Compact Framework 2.0. In the "Compiling" option page of the project, you can choose the target framework:

Now code-completion is supported for all frameworks except the Compact Framework 1.0. Note that choosing Compact Framework is a new option in SharpDevelop 2.1 - previously, you had to modify your project file manually. If you did this, you had to change your project file manually back into the default .NET 2.0 one and then choose "Compact Framework 2.0" in the options - code-completion is available only this way. If you want to create a new Compact Framework project, there now also is a Compact Framework project template.

Note that code-completion requires the target framework to be installed on your machine - otherwise you'll get the default .NET 2.0 completion. For the Compact Framework, the Compact Framework SDK must be installed.

Categories: Daniel
Tuesday, September 05, 2006 7:31:08 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [1]

 



 Sunday, August 06, 2006

Matt Ward (the feature owner) has put online a blog post on the new XPath Queries feature. Check it out and let Matt know what you think!

Note: this is a feature of SharpDevelop 2.1 "Serralongue", which at this time is only available directly from our source code repository.

Categories: Chris
Sunday, August 06, 2006 11:49:00 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [0]

 



© Copyright 2008 SharpDevelop Core Team

Subscribe to this weblog's RSS feed with SharpReader, Radio Userland, NewsGator or any other aggregator listening on port 5335 by clicking this button.   RSS 2.0|Atom 1.0  Send mail to the author(s)

 

Copyright ©2000-2007 IC#Code. All rights reserved. Projects sponsored by AlphaSierraPapa.