Aarrghh.. I keep getting a vwd.webinfo-file added to some of my websites. According to this post on the ASP.NET forums, this file was previously known as vwdsettings.xml and contains information about what services to start in order for the web app to build and run properly. Now, to my knowledge I don’t need any services at all to be started, but I just can’t get rid of the bloody file.. One odd thing is that it only gets added when I close the solution..
I finally traced its origins to my installation of Visual Studio 2005 SDK (the June 2006 release). It seems to have something to do with the text templating engine, though I’m not even sure what that is.. Unfortunately, the problem didn’t go away even after uninstalling the SDK. I had to manually remove the file (both from source control AND the local web folder) AND also walk through all .csproj files and remove all references to it there:
<ItemGroup> <Service Include=”{B4F97281-0DBD-4835-9ED8-7DFB966E87FF}” /> </ItemGroup>
Leave a Reply