Auto generating .sln .csproj files
-
Does anybody know of any API or SDK which I can use to programatically generate visual studio project files and solution files? Also is there a way to programatically generate a strongly typed dataset or xml schema by passing in a database name, and table name to some API, SDK or .exe? thanks
-
Does anybody know of any API or SDK which I can use to programatically generate visual studio project files and solution files? Also is there a way to programatically generate a strongly typed dataset or xml schema by passing in a database name, and table name to some API, SDK or .exe? thanks
danielk_ wrote:
xml schema by passing in a database name, and table name
If you export the table as an xml file you can then use the SDK tool XSD.exe to generate a schema for it and then it can be used again to generate a dataset from it. I think :~, based on running xsd.exe in a prompt without any args (displays the help).
danielk_ wrote:
programatically generate visual studio project files and solution files?
They're just text files, depends on what your input is but it shouldn't be too difficult to build your own utility for this. If you're really stuck take a look at the Solution Import Wizard (or something with a similar name) in SharpDevelop [^]for some pointers.
The Welsh will always support two teams: The Welsh, and anyone playing England :)