Click here to Skip to main content
15,891,757 members
Articles / Desktop Programming / WPF

MVVM for Multi Platforms

Rate me:
Please Sign up or sign in to vote.
4.13/5 (6 votes)
22 Mar 2010CPOL2 min read 26.4K   354   22  
How to implement MVVM when developing a view model whose view implementation language is not certain

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Interfaces", "Interfaces\Interfaces.csproj", "{2B4E2911-4EF2-4B0F-B655-25BDF74C01DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib", "Lib\Lib.csproj", "{723FF860-7CDC-4D03-9A06-A01940400FB2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestLib", "GeographicRepresentation.TestLib\TestLib.csproj", "{84947E43-6DB4-4C62-ADD4-331FBC0B04C2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D1F5C3CC-1CC1-4942-B27E-D0BB331640DE}"
	ProjectSection(SolutionItems) = preProject
		GeographicRepresentation.vsmdi = GeographicRepresentation.vsmdi
		LocalTestRun.testrunconfig = LocalTestRun.testrunconfig
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UILib", "UILib\UILib.csproj", "{0D730820-E92B-4970-828B-0A9D4F73B3E3}"
EndProject
Global
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = GeographicRepresentation.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{2B4E2911-4EF2-4B0F-B655-25BDF74C01DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{2B4E2911-4EF2-4B0F-B655-25BDF74C01DA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{2B4E2911-4EF2-4B0F-B655-25BDF74C01DA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{2B4E2911-4EF2-4B0F-B655-25BDF74C01DA}.Release|Any CPU.Build.0 = Release|Any CPU
		{723FF860-7CDC-4D03-9A06-A01940400FB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{723FF860-7CDC-4D03-9A06-A01940400FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{723FF860-7CDC-4D03-9A06-A01940400FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{723FF860-7CDC-4D03-9A06-A01940400FB2}.Release|Any CPU.Build.0 = Release|Any CPU
		{84947E43-6DB4-4C62-ADD4-331FBC0B04C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{84947E43-6DB4-4C62-ADD4-331FBC0B04C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{84947E43-6DB4-4C62-ADD4-331FBC0B04C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{84947E43-6DB4-4C62-ADD4-331FBC0B04C2}.Release|Any CPU.Build.0 = Release|Any CPU
		{0D730820-E92B-4970-828B-0A9D4F73B3E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{0D730820-E92B-4970-828B-0A9D4F73B3E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{0D730820-E92B-4970-828B-0A9D4F73B3E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{0D730820-E92B-4970-828B-0A9D4F73B3E3}.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
Israel Israel
Software Developer in a promising Clean-Tech company

Comments and Discussions