-
Recent Posts
- Configuring TDD-style isolated tests for Windows Phone
- Writing asynchronous unit tests with Rx and the Silverlight Unit Testing Framework
- Practical support for custom light/dark theme resources on Windows Phone 7
- Creating a strongly typed reactive wrapper to INotifyPropertyChanged
- Error installing Windows Phone 7 Series SDK
Archives
- August 2011
- June 2011
- October 2010
- March 2010
- January 2010
- October 2009
- August 2009
- February 2009
- January 2009
- August 2008
- February 2008
- January 2008
- October 2007
- September 2007
- April 2007
- March 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- July 2006
- May 2006
- April 2006
- February 2006
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
Categories
- .NET
- .NET 2.0
- 64-bit
- actionscript
- AddIn
- AJAX
- asmock
- ASP.NET
- Atlas
- avm2
- Binary
- CardSpaces
- cruisecontrol.net
- CTP
- Debugging
- flash10
- flex
- FTP
- gaming
- IIS
- IIS7
- MMC
- MOSS 2007
- MSDN
- Office
- powershell
- Rx
- SharePoint
- SQL 2005
- travel
- Uncategorized
- unit-testing
- Utilities
- vector
- Vista
- Visual Studio.NET
- windows-phone
- windows-phone problem workaround
- WPF/E
- XML DML
- XPath
Meta
Author Archives: Richard Szalay
Configuring TDD-style isolated tests for Windows Phone
This article describes the setup instructions for configuring an environment to run isolated unit tests that are intended to run quicky, easily and often to enable test driven development. For integration tests that access isolated storage, web services or phone … Continue reading
Posted in unit-testing, windows-phone
Leave a comment
Writing asynchronous unit tests with Rx and the Silverlight Unit Testing Framework
The Reactive Extensions provide a great way for composing asynchronous actions, particularly on Windows Phone where IO operations are asynchronous-only. The Silverlight Unit Testing framework (including my CI-supporting port) supports asynchronous unit tests, but if you’ve attempted to use them … Continue reading
Posted in Rx, unit-testing, windows-phone
1 Comment
Practical support for custom light/dark theme resources on Windows Phone 7
Windows Phone 7′s dark/light themes, which allow the user to choose between white-on-black or black-on-white, expose default resource keys for your application to consume. However, since this support doesn’t extend to declaring your own light/dark resources, I thought I’d look … Continue reading
Posted in windows-phone
3 Comments
Creating a strongly typed reactive wrapper to INotifyPropertyChanged
Practical Ugliness INotifyPropertyChanged is a great, built-in, way for property change notification to work in the WPF/Silverlight world. Attempting to use it from staticly typed code, however, gets messy: Things get even worse when we try to make this reactive: … Continue reading
Posted in .NET, Rx
3 Comments
Error installing Windows Phone 7 Series SDK
Now that Windows Phone 7 Series has been opened up a little, I was quick to download the SDK CTP. Unfortunately, I had some problems installing it (possibly caused by the recently uninstalled VS 2010 beta 2 on my machine). … Continue reading
Posted in windows-phone problem workaround
1 Comment
Massive SUO file causes Visual Studio to hang when doing pretty much anything
I’ve been dealing with horribly slow performance from Visual Studio 2008 (SP1) for a few weeks now. We’re talking seriously slow performance. Like 30-40 seconds of unresponsiveness to save the solution; 20-30 seconds of unresponsiveness after compilation if there were … Continue reading
Posted in Visual Studio.NET
5 Comments
Executing Powershell from CruiseControl.NET on 64-bit Windows
If you try to execute a Powershell script from a CruiseControl.NET build on a 64-bit OS, you’ll get the following error: File ~filename~.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see “get-help about_signing” … Continue reading
Posted in 64-bit, cruisecontrol.net, powershell
2 Comments
Hosts File Manager extension for IIS 7
I’ve just released the first version of my new side project, the Hosts File Manager extension for IIS 7. The extension does pretty much what it says on the can, providing a user interface to edit the local hosts file … Continue reading
Posted in Uncategorized
Leave a comment
Debugging IIS 7 extensions in Windows 7
I came across some curious behavior when trying to debug an IIS extension that I’m working on. When I went to select “InetMgr.exe” as the startup program, it wasn’t there. I checked the folder using Windows Explorer and, sure enough, … Continue reading
Posted in Uncategorized
2 Comments
Enable net.pipes in IIS 7 on Windows 7 Professional
I recently went to configure a net pipes service in Windows 7 (Professional 64-bit) and found that it wasn’t available. I quickly proceeded to “Turn Windows features on or off”, but couldn’t find it there either. I eventually found the … Continue reading
Posted in Uncategorized
Leave a comment