RIA and MSBuild
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
RIA and MSBuild
Hi
We're using dotConnect for Oracle with RIA Services for Silverlight 3.0. We are using a dotConnect EDML file for the data model, which is accessed from Silverlight via a DomainService.
It is working fine in Visual Studio 2008 but we are having trouble getting it to compile with MSBuild. We use the Team City build system which calls MSBuild to build the solution.
The MSBuild error is:-
C:\Program Files (x86)\MSBuild\Microsoft\Silverlight\v3.0\Microsoft.Ria.Client.targets(261,5): error : Could not find the conceptual model type for 'ReportingDataModel.TRAITS'.
This is using .NET 3.5
Any ideas on what could be the problem? Thanks in advance.
We're using dotConnect for Oracle with RIA Services for Silverlight 3.0. We are using a dotConnect EDML file for the data model, which is accessed from Silverlight via a DomainService.
It is working fine in Visual Studio 2008 but we are having trouble getting it to compile with MSBuild. We use the Team City build system which calls MSBuild to build the solution.
The MSBuild error is:-
C:\Program Files (x86)\MSBuild\Microsoft\Silverlight\v3.0\Microsoft.Ria.Client.targets(261,5): error : Could not find the conceptual model type for 'ReportingDataModel.TRAITS'.
This is using .NET 3.5
Any ideas on what could be the problem? Thanks in advance.
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
Hi, yes this is what it is set to already. I have tried changing this to copy to output directory also with no luck.AndreyR wrote:Try to set MetadataArtifactProcessing to EmbedInOutputAssembly, like it is advised here.
Our Team City CI Server is Windows Server 2003 R2 Standard x64 with SP2. Have you any other ideas on how to fix this? Thanks
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
Hi
I've finally managed to get it working.
I had to
I compiled the Silverlight project on my local machine (x86 OS) then dropped in the XAP file later.
I've finally managed to get it working.

I had to
- * Rename entities to EDMX and change to entity deploy (as you advised above)
* Remove the Silverlight project from my solution
* Compile solution using 64bit MSBuild
I compiled the Silverlight project on my local machine (x86 OS) then dropped in the XAP file later.
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
Yes there's no need, but it was sent Thu 29/07/2010 FYI.AndreyR wrote:Glad to hear the issue is resolved.
As for the test project, we have not received it (as far as I understand, there is no need in it already, just for your information).
What's the reason for renaming the EDML to EDMX, and will this be fixed?
Can I keep it as EDMX or should I use EDML during development then change it to EDMX for deploys?
Thanks
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
HiAndreyR wrote:Actually, there is no need to change the extension from .edml to .edmx.
I recommended this to remove our deployment code from consideration and narrow down the problem.
Could you please try to work with .edml? There should be no problems, generally.
Please notify me if the error persists.
I have found that we DO need to rename the .EDML to .EDMX for it to work (and also change Build Action to EntityDeploy).
If you do not, it compiles OK, but gets "Could not find the conceptual model type..." as a run time error when the domain service is called.
Thanks
Rob
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK
-
- Posts: 33
- Joined: Tue 09 Feb 2010 11:42
- Location: Manchester, UK