Tag Archives: visual studio

My attempts at installing Umbraco via NuGet

I often use Umbraco as a CMS for my web projects, and NuGet for referencing other libraries. This made me wonder whether Umbraco could be deployed via Nuget. The short answer is, it is possible, but it does not work … Continue reading

Posted in Development, Software | Tagged , , , , , , | 1 Comment

MacBook Pro BootCamp/Windows keyboard schema

Visual Studio 2010 + Resharper Key Description FN+ALT+[Right arrow] Go to sub types FN+ALT+[Left arrow] Go to super types ALT+SHIFT+F12 Find usages of variable CTRL+SHIFT+F11 Go to type of variable CTRL+SHIFT+R Refactor this CTRL+SHIFT+T Go to file CTRL+T Go to … Continue reading

Posted in Development, Mac, Software | Tagged , , , , , | 1 Comment

Visual Studio 2010 Package load errors

My Windows 7 installation on my laptop broke down, and I then had to completely reinstall Windows 7, Visual Studio etc. Besides it being a long and tedious process it seemed to go fine. But I started to get the … Continue reading

Posted in Development, Software | Tagged , , | 3 Comments

Cuda v3.2 template project using C++

Important The tutorial is missing some compilation, linker, library settings steps. However you can download the template project, it works and has everything setup. Introduction Download template project source Download executable I am a developer who has been developing software … Continue reading

Posted in Development, Software | Tagged , , , , , | Leave a comment

Manually start Visual Studio dev. web server

I needed to manually start the Visual Studio dev. web server for profililng purposes… The web server is located here: C:\Program Files (x86)\Common Files\microsoft shared\DevServer\9.0\WebDev.WebServer.EXE Arguments /port:<port number> Optional, an unused port number between 1 and 65535. /path:<physical path> A … Continue reading

Posted in Development, Software | Tagged , , | Leave a comment

Visual Studio 2008 debugging and breakpoints

My development tools are currently Visual Studio 2008, Resharper 4.5, Gallio and Testdriven.NET. But for as long as I have used these tools, my Visual Studio debugger has only worked partly. The problem When I inserted some breakpoints in my code, … Continue reading

Posted in Development, Software | Tagged , , , , , | 2 Comments

An Introduction to Native Concurrency in Visual Studio 2010

Read this article: http://blogs.msdn.com/nativeconcurrency/archive/2009/01/12/an-introduction-to-native-concurrency-in-visual-studio-2010.aspx

Posted in Development, Software | Tagged , , , | Leave a comment

Visual Studio 2008 – ItemTemplatesCache missing

The issue  My Visual Studio 2008 opened the solution file with no problem. However, when I was to add a new class, user control, aspx file or similar, I received the error: Could not find part of "c:\Program Files\Microsoft Visual … Continue reading

Posted in Development, Software | Tagged , , , , | 3 Comments

How Do I: Debug ASP.NET AJAX Applications Using Visual Studio 2005?

Original post here: http://www.asp.net/learn/ajax-videos/video-167.aspx — In this video we learn how to use Visual Studio 2005 to debug ASP.NET AJAX applications. We are shown how the ScriptManager is used to access the JavaScript created by the ASP.NET AJAX server controls, … Continue reading

Posted in Development | Tagged , , , , | Leave a comment

Using different Web.Config for development, test and production

Read more here: http://weblogs.asp.net/scottgu/archive/2007/09/21/tip-trick-automating-dev-qa-staging-and-production-web-config-settings-with-vs-2005.aspx   Or here: http://www.hanselman.com/blog/ManagingMultipleConfigurationFileEnvironmentsWithPreBuildEvents.aspx

Posted in Development | Tagged , , | Leave a comment