Reputation: 288
I developed a windows forms application which pulls data from Dynamics CRM online & displays that retrieved data in my application. My application uses .NET Framework 4.5.2.
I have an existing application which was built on .NET Framework 4.5. Now, I want to use the code from my new forms application(f/w - 4.5.2) into this existing application (f/w - 4.5).
When I tried to integrate, the XRM packages thrown an error that they support only for f/w - 4.5.2
I looked in the internet if there is any chance to over come these errors but I failed to find any solution.
I think there is no solution to do, as per this MSDN & I have no hope.
Note:In MSDN, they didn't give any info for 4.5
One more thing to add is I was using XRM 8.x in 4.5.2 & now I'm downgrading these versions to 7.x to support 4.5 framework. but the API is different between 8.x & 7.x
I'm posting this though, if anyone could shred some light to resolve my problem!!!
Upvotes: 0
Views: 167
Reputation: 1470
If you can, it would be a lot easier to just upgrade the existing application to use .NET 4.5.2. There shouldn't be any major breaking changes between 4.5 and 4.5.2, so the code you had in 4.5 should just work fine in 4.5.2.
Upvotes: 2