comparison delete me/SilverlightValidation/SilverlightValidation.csproj @ 59:3591c26bd63e

MVVMLight added
author Steven Hollidge <stevenhollidge@hotmail.com>
date Sat, 21 Apr 2012 19:20:28 +0100
parents
children
comparison
equal deleted inserted replaced
58:241e2f22ed3c 59:3591c26bd63e
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>8.0.50727</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{0C1CC1FC-915A-4428-8952-CDC79EABC3F4}</ProjectGuid>
9 <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
10 <OutputType>Library</OutputType>
11 <AppDesignerFolder>Properties</AppDesignerFolder>
12 <RootNamespace>SilverlightValidation</RootNamespace>
13 <AssemblyName>SilverlightValidation</AssemblyName>
14 <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
15 <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
16 <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
17 <SilverlightApplication>true</SilverlightApplication>
18 <SupportedCultures>
19 </SupportedCultures>
20 <XapOutputs>true</XapOutputs>
21 <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
22 <XapFilename>SilverlightValidation.xap</XapFilename>
23 <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
24 <SilverlightAppEntry>SilverlightValidation.App</SilverlightAppEntry>
25 <TestPageFileName>SilverlightValidationTestPage.html</TestPageFileName>
26 <CreateTestPage>true</CreateTestPage>
27 <ValidateXaml>true</ValidateXaml>
28 <EnableOutOfBrowser>false</EnableOutOfBrowser>
29 <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile>
30 <UsePlatformExtensions>false</UsePlatformExtensions>
31 <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
32 <LinkedServerProject>
33 </LinkedServerProject>
34 </PropertyGroup>
35 <!-- This property group is only here to support building this project using the
36 MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs
37 to set the TargetFrameworkVersion to v3.5 -->
38 <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'">
39 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
40 </PropertyGroup>
41 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
42 <DebugSymbols>true</DebugSymbols>
43 <DebugType>full</DebugType>
44 <Optimize>false</Optimize>
45 <OutputPath>Bin\Debug</OutputPath>
46 <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
47 <NoStdLib>true</NoStdLib>
48 <NoConfig>true</NoConfig>
49 <ErrorReport>prompt</ErrorReport>
50 <WarningLevel>4</WarningLevel>
51 </PropertyGroup>
52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
53 <DebugType>pdbonly</DebugType>
54 <Optimize>true</Optimize>
55 <OutputPath>Bin\Release</OutputPath>
56 <DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
57 <NoStdLib>true</NoStdLib>
58 <NoConfig>true</NoConfig>
59 <ErrorReport>prompt</ErrorReport>
60 <WarningLevel>4</WarningLevel>
61 </PropertyGroup>
62 <ItemGroup>
63 <Reference Include="FluentValidation">
64 <HintPath>..\Libs\FluentValidation.dll</HintPath>
65 </Reference>
66 <Reference Include="mscorlib" />
67 <Reference Include="System.ComponentModel.DataAnnotations, Version=5.0.5.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217, processorArchitecture=MSIL" />
68 <Reference Include="System.Windows" />
69 <Reference Include="system" />
70 <Reference Include="System.Core" />
71 <Reference Include="System.Windows.Controls, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
72 <HintPath>..\Libs\System.Windows.Controls.dll</HintPath>
73 </Reference>
74 <Reference Include="System.Windows.Controls.Data, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
75 <HintPath>..\Libs\System.Windows.Controls.Data.dll</HintPath>
76 </Reference>
77 <Reference Include="System.Windows.Controls.Data.Input, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
78 <HintPath>..\Libs\System.Windows.Controls.Data.Input.dll</HintPath>
79 </Reference>
80 <Reference Include="System.Windows.Controls.Navigation, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
81 <HintPath>..\Libs\System.Windows.Controls.Navigation.dll</HintPath>
82 </Reference>
83 <Reference Include="System.Xml" />
84 <Reference Include="System.Windows.Browser" />
85 </ItemGroup>
86 <ItemGroup>
87 <Compile Include="App.xaml.cs">
88 <DependentUpon>App.xaml</DependentUpon>
89 </Compile>
90 <Compile Include="Data\Factory.cs" />
91 <Compile Include="Interfaces\ICloneable.cs" />
92 <Compile Include="Interfaces\IUserModel.cs" />
93 <Compile Include="Properties\AssemblyInfo.cs" />
94 <Compile Include="Commands\RelayCommand.cs" />
95 <Compile Include="ViewModels\UserListViewModel.cs" />
96 <Compile Include="Models\UserModel.cs" />
97 <Compile Include="Validators\UserModelValidator.cs" />
98 <Compile Include="Views\UserListView.xaml.cs">
99 <DependentUpon>UserListView.xaml</DependentUpon>
100 </Compile>
101 <Compile Include="Views\UserView.xaml.cs">
102 <DependentUpon>UserView.xaml</DependentUpon>
103 </Compile>
104 <Compile Include="ViewModels\UserViewModel.cs" />
105 <Compile Include="ViewModels\ViewModelBase.cs" />
106 </ItemGroup>
107 <ItemGroup>
108 <ApplicationDefinition Include="App.xaml">
109 <SubType>Designer</SubType>
110 <Generator>MSBuild:Compile</Generator>
111 </ApplicationDefinition>
112 <Page Include="Views\UserListView.xaml">
113 <SubType>Designer</SubType>
114 <Generator>MSBuild:Compile</Generator>
115 </Page>
116 <Page Include="Views\UserView.xaml">
117 <Generator>MSBuild:Compile</Generator>
118 <SubType>Designer</SubType>
119 </Page>
120 </ItemGroup>
121 <ItemGroup>
122 <None Include="Diagrams\List.cd" />
123 <None Include="Diagrams\Form.cd" />
124 <None Include="Properties\AppManifest.xml" />
125 </ItemGroup>
126 <ItemGroup>
127 <Folder Include="Messages\" />
128 </ItemGroup>
129 <ItemGroup>
130 <ProjectReference Include="..\Glimpse\Glimpse.vbproj">
131 <Project>{C72D72F7-C49B-46DF-BD6C-0E14DBCD8F95}</Project>
132 <Name>Glimpse</Name>
133 </ProjectReference>
134 </ItemGroup>
135 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" />
136 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
137 Other similar extension points exist, see Microsoft.Common.targets.
138 <Target Name="BeforeBuild">
139 </Target>
140 <Target Name="AfterBuild">
141 </Target>
142 -->
143 <ProjectExtensions>
144 <VisualStudio>
145 <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
146 <SilverlightProjectProperties />
147 </FlavorProperties>
148 </VisualStudio>
149 </ProjectExtensions>
150 </Project>