Possible work arround is to remove the build provider for (*.rpt) in your web.config:
There will be following construct under
<buildProviders>
<add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=14.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
</buildProviders>
We can change this to:
<buildProviders>
<add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=14.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<remove extension=".rpt"/>
</buildProviders>
What we have done is removed the build provider for (.rpt), in this way the crystal reports will remain as it is and no build error will show.
Thanks alot ! Worked for me like a Charm.....
ReplyDeleteThanks, it took me some time to resolve the issue. But i hope it will now save time for guys who are facing this issue.
ReplyDeleteThank a lot. Good job! Nice workaround, it's now up to CR people to fix correctly. Problem is not resolved in SP3 (CRforVS_13_0_3)
ReplyDelete@Christian Thanks for appreciating
ReplyDeleteThanks that did the trick.....I really appreciate it...
ReplyDeleteThanks, worked like a charm.
ReplyDelete