English 中文(简体)
How do I compile a Code Composer project which was created using a different version of Code Generation tools?
原标题:

I have a Code Composer project I received from a friend. When I try to build it I get the following error message:

This project was created using a version of Code Generation tools that is not currently installed: 6.1.12 [C6000]. Please install the Code Generation tools of this version, or migrate the project to one of the supported versions.

How do I migrate the project to my version?

最佳回答

You should be able to hack it - the project file is plaintext.

Open the file, compare it to a project file created with your version. Change any differences obviously related to versioning to look like your native file.

As an alternate, just create a new project with your IDE, then manually add all the source files listed in the friend s project file..

问题回答




相关问题
Generating classes using XSD without base class in each one

Not sure what the appropriate tags are here... A while back I created a batch script which, when run will convert all .xsd files found in C:api into C# classes using the xsd.exe file found in the ...

Dynamic code generation

I am currently developing an application where you can create "programs" with it without writing source code, just click&play if you like. Now the question is how do I generate an executable ...

Simple & Practical C# code generation (VS 2008 or 2010)

I ve put off using generated code as part of the build process for fear of the complexity it introduces into the build process. Is there a simple way to integrate build-time generated code into an ...

PHP class generator for web services

I am trying to find some kind of php class generator for Web Services (WCF service if that matters) without any luck so far. Any ideas? thanks

热门标签