JLinX – Blog

Weblog von Jan Linxweiler

Problems running nant on OS X

Filed under: .NET,Apple & Mac OS X,Development — Jannis at 6:23 pm on Saturday, November 14, 2009

In oder to compile Monobjc I had to use nant.
Though I had installed all mono packages I got the following error:

BUILD FAILED

Failed to initialize the ‘Mono 3.5 Profile’ (mono-3.5) target framework.

Function call failed.
Expression: ${not pkg-config::exists(‘mono’)}
^^^^^^^^^^^^^^^^^^^^^^^^^^

‘pkg-config’ failed to start.

I could fix it by adding the path of ‘pkg-config’ to the PATH viariable.
In order to to this add the following line to your .bashrc:
export PATH=$PATH:/Library/Frameworks/Mono.framework/Commands/

MSDN TechTalk on Visual Studio 2008 and .NET 3.5

Filed under: .NET,Development — Jannis at 4:14 pm on Tuesday, January 15, 2008

MSDN Germany released a recorded TechTalk on Visual Studio 2008 and the .NET Framework 3.5:

Visual Studio 2008 und .NET Framework 3.5 – Was ist neu?

How to Install Northwind on SQL Express

Filed under: .NET,Development — Jannis at 9:42 am on Saturday, November 24, 2007
  • Download Northwind sample database
  • Navigate to: C:\SQL Server Sample Databases
  • Run: osql -E -S computerName\SqlExpress -i instnwnd.sql

Draw Asynchronously with .NET

Filed under: .NET,Development — Jannis at 6:07 pm on Tuesday, July 3, 2007

Article at VisualStudio Magazine

Lyapunov Space – A Software Developer’s Odyssey

Philips C# coding standard

Filed under: .NET,Development — Jannis at 8:59 am on Tuesday, May 22, 2007

Document:
http://www.tiobe.com/standards/gemrcsharpcs.pdf

Code Checker ClockSharp
http://www.tiobe.com/index.htm?clocksharp

ClockSharp is a configurable code checker for the C# programming language (editions 1.1 to 2.0). It is possible to let ClockSharp check your C# code according to the widely used Philips C# coding standard or configure it to your own needs. ClockSharp checks more than 50 programming rules. It can be executed as a command-line tool, but it is also integrated into Visual Studio.NET (2003, 2005: versions 7.0, 7.1 and 8.0).

Usefull links for C/C++/C#/Java coding standards
Coding Standard Methodology

Visual C++ Libraries DLL Deployment

Filed under: .NET,Development — Jannis at 9:08 pm on Thursday, February 15, 2007

Ayman Shoukry collected a number of usefull links to the MSDN website depending on the deployment method. Go to Ayman’s WebLog

Articels on MSDN:

Article on Code Project:

 

 

Private Assembly install under app directory.

The VC Libs files can be installed under the app directory as a private assembly. The files required for the private assembly are under <VS install path>\vc\redist. Copy the required sub directories to the app directory.

Pros : App does not have a setup, xcopy deploy, Non admin install, Select the assemblies that the app uses, run from share

Cons : Not suitable when a product installs multiple binaries and these are installed in various directories (assembly has to be duplicated under each directory)

http://msdn2.microsoft.com/ms235291(en-US,VS.80).aspx

(Quelle: Ayman Shoukry’s WebLog)

 

Typische Fehlermeldungen, die auftreten wenn die C++ runtime libraries (CRT DLLs) nicht gefunden werden sind folgende:

  • “The application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem”.
  • “Diese Anwendung konnte nicht gestartet werden, weil die Anwendungskonfiguration nicht korrekt ist. Zur Problembehebung sollten Sie die Anwendung neu installieren.”

Wenn das Manifest nicht gefunden wird, wird der Fehler R6034 verursacht:

  • “R6034 – attempt to load C runtime library without using manifest.”

Migrieren von managed Visual C++ 2003 nach Visual C++ 2005

Filed under: .NET,Development — Jannis at 3:10 pm on Tuesday, February 13, 2007

Zu beachten sind auch die Änderungen beim Deployment.

Visual Studio 2005 Keyboard Shortcut Reference Poster

Filed under: .NET,Development — Jannis at 10:00 am on Monday, January 29, 2007

Visual C# 2005 Keyboard Shortcut Reference Poster

Visual C++ 2005 Keyboard Shortcut Reference Poster

Vista Wissen

Filed under: .NET,Development,Windows — Jannis at 9:54 pm on Saturday, January 20, 2007

Windows Vista Developer Experience

Nützliche Links rund um Windows Vista – mit Informationen nicht nur für Entwickler.

Free Visual Basic 2005 book from MS Press

Filed under: .NET,Bücher,Development — Jannis at 5:12 pm on Thursday, January 4, 2007

Introducing Microsoft Visual Basic 2005 for Developers

Next Page »