Playing with the Visual Studio 2008 beta last year, I was disappointed that the WCF service binding did not work out of the box with the Compact Framework. (The generated classes can not be used by the Compact Framework subset)
Luckily the Compact Framework 3.5 Powertools has introduced a command line utility called NetCFSvcUtil.exe (equivalent to [...]
Archive for March, 2008
WCF on the Compact Framework
March 24, 2008Alpha Blended Windows Mobile Controls
March 17, 2008Although WPF would be cool on the mobile device, the reality is that there isn’t really enough power for that. Silverlight support is coming, but it was previewed mid-2007 and only press releases since..
In the meantime, yet another CodePlex project to get you that UI
Project Description
AlphaMobileControls is a .NET Compact Framework 2.0 [...]
Concatonate multiple SQL files with Powershell
March 16, 2008I have a lot of separate SQL files that I wanted to put together. In addition they needed a ‘GO’ operator between each one. Here is my basic Powershell command:
get-childitem -filter “*.sql” | foreach-object { Get-Content $_ | Out-File -filepath “MyBigSchema.sql” -append; “Go “ | Out-File -filepath “MyBigSchema.sql” -append }
Project Server 2007 VSTS 2008 Connector
March 11, 2008Codeplex provides even more great stuff A full connector between Project Server 2007 and Team Foundation Server 2008.
http://www.codeplex.com/pstfsconnector/Release/ProjectReleases.aspx?ReleaseId=11561