Any one use LibCheck or know of an alternative
-
Hello, I am working on an SDK that we are currently using internally. We plan to release it as a product eventually. I have been looking for a tool that would compare the public API of two different versions of the SDK so I can verify that what was changed in the interface is what we intended to change. I am particularly interested in breaking changes. I have attempted to use LibCheck on one of our assemblies (the one that only has dependencies on .Net) and I get an error loading the assembly. I have verified that the assembly has no dependencies except on .Net itself. Not sure why I would be getting this error. So have you successfully used LibCheck? Do you know of another tool I could use to compare the public APIs of two different versions of my SDK? Pat O
Tanks for your support
Pat O
Blog_ _ _
/*\== /*\== /*\==
<ooo> <ooo> <ooo> -
Hello, I am working on an SDK that we are currently using internally. We plan to release it as a product eventually. I have been looking for a tool that would compare the public API of two different versions of the SDK so I can verify that what was changed in the interface is what we intended to change. I am particularly interested in breaking changes. I have attempted to use LibCheck on one of our assemblies (the one that only has dependencies on .Net) and I get an error loading the assembly. I have verified that the assembly has no dependencies except on .Net itself. Not sure why I would be getting this error. So have you successfully used LibCheck? Do you know of another tool I could use to compare the public APIs of two different versions of my SDK? Pat O
Tanks for your support
Pat O
Blog_ _ _
/*\== /*\== /*\==
<ooo> <ooo> <ooo>http://social.msdn.microsoft.com/forums/en-US/csharplanguage/thread/5b31a847-cbb7-44b1-9e80-8a0b1d98a9ab106 [^] try this link
the quieter u become more u hear
-
http://social.msdn.microsoft.com/forums/en-US/csharplanguage/thread/5b31a847-cbb7-44b1-9e80-8a0b1d98a9ab106 [^] try this link
the quieter u become more u hear
-
Hello, I am working on an SDK that we are currently using internally. We plan to release it as a product eventually. I have been looking for a tool that would compare the public API of two different versions of the SDK so I can verify that what was changed in the interface is what we intended to change. I am particularly interested in breaking changes. I have attempted to use LibCheck on one of our assemblies (the one that only has dependencies on .Net) and I get an error loading the assembly. I have verified that the assembly has no dependencies except on .Net itself. Not sure why I would be getting this error. So have you successfully used LibCheck? Do you know of another tool I could use to compare the public APIs of two different versions of my SDK? Pat O
Tanks for your support
Pat O
Blog_ _ _
/*\== /*\== /*\==
<ooo> <ooo> <ooo>I was able to make it work. The unfortunate assembly load error was a result of invalid command line arguments. Here is the syntax for those that are interested: libcheck -full C:\temp\CNX_2.0 -store full 2.0.59.0 libcheck -full C:\temp\CNX_2.1 -store full 2.1.150.0 libcheck -compare 2.0.59.0 2.1.150.0 In this example the 2.0.59.0 and 2.1.150.0 are the build numbers of the 2.0 and 2.1 releases respectively. Pat O
Tanks for your support
Pat O
Blog_ _ _
/*\== /*\== /*\==
<ooo> <ooo> <ooo>