project-conversion

Compiling Winmerge Sample Plugin fails on project conversion

旧城冷巷雨未停 提交于 2019-12-25 04:06:06
问题 I want to write a WinMerge Plugin to call into my C# business layer code to do a text transform. I decided to start with the sample plugin which is closest to my own needs, but if I want to open it, Visual Studio is trying to convert its solution file but simply fails without any useful error. The IgnoreComments plugin source code was my choosen starting point. Opening the dsp file in Visual Studio triggers the conversion. If i start the one-way conversion a messagebox appears moments later:

Permissions on solution files to modify

两盒软妹~` 提交于 2019-12-21 07:09:02
问题 I have project solutions developed in VS2005. It is bound to TFS (Team Foundation Server). I want to convert the solution to VS2008 version, keeping the binding as is, however I am getting an error while converting. Error message: Solution file " C:\abc\abc.sln " cannot be converted because it cannot be modified. To convert the solution, change the permissions on the solution file to allow modification and reopen it" What permissions do I need on this? 回答1: Make sure the sln solution file is

Permissions on solution files to modify

北战南征 提交于 2019-12-03 23:57:02
I have project solutions developed in VS2005. It is bound to TFS (Team Foundation Server). I want to convert the solution to VS2008 version, keeping the binding as is, however I am getting an error while converting. Error message: Solution file " C:\abc\abc.sln " cannot be converted because it cannot be modified. To convert the solution, change the permissions on the solution file to allow modification and reopen it" What permissions do I need on this? Make sure the sln solution file is not marked as read only . If I correctly interpret your question, you should check if your current Windows

How to convert QtCreator project to Visual Studio project

删除回忆录丶 提交于 2019-12-03 06:28:49
问题 I have a QtCreator project file *.pro How to convert it to Visual Studio 2008 project *.sln? 回答1: You can also use the qmake command to do this. Go to the project dir and type "qmake -tp vc". 回答2: Qt Creator / qmake can generate .vcproj files directly. See this link Put "TEMPLATE=vcapp" or "TEMPLATE=vclib" (as appropriate) in your .pro file and run qmake. That will generate a .vcproj file. Edit: The link no longer worke, but I found an archive of it here 回答3: It's now possible to open the

How to convert QtCreator project to Visual Studio project

痴心易碎 提交于 2019-12-02 20:18:17
I have a QtCreator project file *.pro How to convert it to Visual Studio 2008 project *.sln? You can also use the qmake command to do this. Go to the project dir and type "qmake -tp vc". Qt Creator / qmake can generate .vcproj files directly. See this link Put "TEMPLATE=vcapp" or "TEMPLATE=vclib" (as appropriate) in your .pro file and run qmake. That will generate a .vcproj file. Edit: The link no longer worke, but I found an archive of it here It's now possible to open the .pro file directly from the Qt Visual Studio Tools extension. Visual Studio will then generate the necessary solution