Click here to Skip to main content
15,891,943 members
Articles / Desktop Programming / XAML

A Sample Silverlight 4 Application Using MEF, MVVM, and WCF RIA Services - Part 1

Rate me:
Please Sign up or sign in to vote.
4.84/5 (108 votes)
7 Jul 2011CPOL9 min read 2.1M   30.9K   298  
Part 1 of a series describing the creation of a Silverlight business application using MEF, MVVM Light, and WCF RIA Services.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Web Developer Express 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Client", "IssueVision.Client\IssueVision.Client.csproj", "{826865AA-7D58-4C35-9364-CA804D412468}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Web", "IssueVision.Web\IssueVision.Web.csproj", "{B7728870-2DC9-4A8B-8081-DEFD888C7F7C}"
	ProjectSection(ProjectDependencies) = postProject
		{826865AA-7D58-4C35-9364-CA804D412468} = {826865AA-7D58-4C35-9364-CA804D412468}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Data.Web", "IssueVision.Data.Web\IssueVision.Data.Web.csproj", "{C31BEDE7-C779-452F-9101-91AA53F52CCC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Data", "IssueVision.Data\IssueVision.Data.csproj", "{8229FD8F-A1F6-4B95-BA09-8C6B72290253}"
	ProjectSection(ProjectDependencies) = postProject
		{C31BEDE7-C779-452F-9101-91AA53F52CCC} = {C31BEDE7-C779-452F-9101-91AA53F52CCC}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Common", "IssueVision.Common\IssueVision.Common.csproj", "{3C71F76E-7427-46AA-AF59-51B6EB492087}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.Model", "IssueVision.Model\IssueVision.Model.csproj", "{908B502E-27D0-4720-9645-D75BE36199C9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IssueVision.ViewModel", "IssueVision.ViewModel\IssueVision.ViewModel.csproj", "{49EFB39A-D3FE-4910-8D9F-7F1B4F61C393}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{826865AA-7D58-4C35-9364-CA804D412468}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{826865AA-7D58-4C35-9364-CA804D412468}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{826865AA-7D58-4C35-9364-CA804D412468}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{826865AA-7D58-4C35-9364-CA804D412468}.Release|Any CPU.Build.0 = Release|Any CPU
		{B7728870-2DC9-4A8B-8081-DEFD888C7F7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B7728870-2DC9-4A8B-8081-DEFD888C7F7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B7728870-2DC9-4A8B-8081-DEFD888C7F7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B7728870-2DC9-4A8B-8081-DEFD888C7F7C}.Release|Any CPU.Build.0 = Release|Any CPU
		{C31BEDE7-C779-452F-9101-91AA53F52CCC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C31BEDE7-C779-452F-9101-91AA53F52CCC}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C31BEDE7-C779-452F-9101-91AA53F52CCC}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C31BEDE7-C779-452F-9101-91AA53F52CCC}.Release|Any CPU.Build.0 = Release|Any CPU
		{8229FD8F-A1F6-4B95-BA09-8C6B72290253}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8229FD8F-A1F6-4B95-BA09-8C6B72290253}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8229FD8F-A1F6-4B95-BA09-8C6B72290253}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8229FD8F-A1F6-4B95-BA09-8C6B72290253}.Release|Any CPU.Build.0 = Release|Any CPU
		{3C71F76E-7427-46AA-AF59-51B6EB492087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3C71F76E-7427-46AA-AF59-51B6EB492087}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3C71F76E-7427-46AA-AF59-51B6EB492087}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3C71F76E-7427-46AA-AF59-51B6EB492087}.Release|Any CPU.Build.0 = Release|Any CPU
		{908B502E-27D0-4720-9645-D75BE36199C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{908B502E-27D0-4720-9645-D75BE36199C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{908B502E-27D0-4720-9645-D75BE36199C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{908B502E-27D0-4720-9645-D75BE36199C9}.Release|Any CPU.Build.0 = Release|Any CPU
		{49EFB39A-D3FE-4910-8D9F-7F1B4F61C393}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{49EFB39A-D3FE-4910-8D9F-7F1B4F61C393}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{49EFB39A-D3FE-4910-8D9F-7F1B4F61C393}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{49EFB39A-D3FE-4910-8D9F-7F1B4F61C393}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions