Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a tool to analyse if a C# and WPF project can be ported to Silverlight? [closed]

I have a WPF and C# application, and I want to know if it can be ported to silverlight. Is there a tool to analyse the dependencies and tell me what I can't use, and what I can ?

Thanks.

like image 852
hokkos Avatar asked Jan 18 '11 15:01

hokkos


People also ask

What is static analysis tool?

Static analysis tools refer to a wide array of tools that examine source code, executables, or even documentation, to find problems before they happen; without actually running the code.

Which tool is used for code analysis?

Source code analysis tools, also known as Static Application Security Testing (SAST) Tools, can help analyze source code or compiled versions of code to help find security flaws. SAST tools can be added into your IDE. Such tools can help you detect issues during software development.

What is Astree tool?

Astrée is a static code analyzer that proves the absence of runtime errors and invalid concurrent behavior in safety-critical software written or generated in C or C++.

What is static code analysis in C?

Static analysis, also called static code analysis, is a method of computer program debugging that is done by examining the code without executing the program. The process provides an understanding of the code structure and can help ensure that the code adheres to industry standards.


1 Answers

As far as I know there is not. The best way to find out is to create a Silverlight project and copy your code across, then start analysing all the build errors. It is not a great solution, but I don't know of any better way.

As an aside, there is a nice white paper that details the differences between WPF and Silverlight here:

http://wpfslguidance.codeplex.com/Release/ProjectReleases.aspx

like image 104
ColinE Avatar answered Sep 18 '22 22:09

ColinE