How to enable shortcodes in a custom post type?

I had similar problem because I was rendering content like this:

echo get_the_content();

Instead of:

the_content();

The 2nd function must include the shortcode filter.