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 6:54:10 PM (GMT Standard Time, UTC+00: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 10:10:07 AM (GMT Standard Time, UTC+00: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 (GMT Daylight 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 (GMT Daylight 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 (GMT Daylight 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 (GMT Daylight Time, UTC+01:00)  #    Comments [0]

 



#  Friday, October 27, 2006


Categories: Markus
Friday, October 27, 2006 8:47:02 AM (GMT Daylight 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 (GMT Daylight 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 (GMT Daylight 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 (GMT Daylight Time, UTC+01:00)  #    Comments [0]

 



© Copyright 2012 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-2009 IC#Code. All rights reserved. Projects sponsored by AlphaSierraPapa.