comparison SilverlightGlimpse/SilverlightValidation/SilverlightValidation.csproj @ 69:a0bcd783e612

Latest work
author Steven Hollidge <stevenhollidge@hotmail.com>
date Mon, 23 Apr 2012 11:06:10 +0100
parents
children dd6bcd2535b6
comparison
equal deleted inserted replaced
68:81337ebf885a 69:a0bcd783e612
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="GalaSoft.MvvmLight.SL5, Version=4.0.21.32885, Culture=neutral, PublicKeyToken=c114982fcf1a3a2e, processorArchitecture=MSIL">
67 <SpecificVersion>False</SpecificVersion>
68 <HintPath>..\Libs\GalaSoft.MvvmLight.SL5.dll</HintPath>
69 </Reference>
70 <Reference Include="mscorlib" />
71 <Reference Include="System.Windows" />
72 <Reference Include="system" />
73 <Reference Include="System.Core" />
74 <Reference Include="System.Windows.Controls, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
75 <HintPath>..\Libs\System.Windows.Controls.dll</HintPath>
76 </Reference>
77 <Reference Include="System.Windows.Controls.Data, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
78 <HintPath>..\Libs\System.Windows.Controls.Data.dll</HintPath>
79 </Reference>
80 <Reference Include="System.Windows.Controls.Data.Input, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
81 <HintPath>..\Libs\System.Windows.Controls.Data.Input.dll</HintPath>
82 </Reference>
83 <Reference Include="System.Windows.Controls.Navigation, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84 <HintPath>..\Libs\System.Windows.Controls.Navigation.dll</HintPath>
85 </Reference>
86 <Reference Include="System.Xml" />
87 <Reference Include="System.Windows.Browser" />
88 </ItemGroup>
89 <ItemGroup>
90 <Compile Include="App.xaml.cs">
91 <DependentUpon>App.xaml</DependentUpon>
92 </Compile>
93 <Compile Include="Data\Factory.cs" />
94 <Compile Include="Interfaces\ICloneable.cs" />
95 <Compile Include="Interfaces\IUserModel.cs" />
96 <Compile Include="Messages\UserViewResponseMessage.cs" />
97 <Compile Include="Properties\AssemblyInfo.cs" />
98 <Compile Include="Commands\RelayCommand.cs" />
99 <Compile Include="ViewModels\UserListViewModel.cs" />
100 <Compile Include="Models\UserModel.cs" />
101 <Compile Include="Validators\UserModelValidator.cs" />
102 <Compile Include="Views\UserListView.xaml.cs">
103 <DependentUpon>UserListView.xaml</DependentUpon>
104 </Compile>
105 <Compile Include="Views\UserView.xaml.cs">
106 <DependentUpon>UserView.xaml</DependentUpon>
107 </Compile>
108 <Compile Include="ViewModels\UserViewModel.cs" />
109 <Compile Include="ViewModels\ViewModelBase.cs" />
110 </ItemGroup>
111 <ItemGroup>
112 <ApplicationDefinition Include="App.xaml">
113 <SubType>Designer</SubType>
114 <Generator>MSBuild:Compile</Generator>
115 </ApplicationDefinition>
116 <Page Include="Views\UserListView.xaml">
117 <SubType>Designer</SubType>
118 <Generator>MSBuild:Compile</Generator>
119 </Page>
120 <Page Include="Views\UserView.xaml">
121 <Generator>MSBuild:Compile</Generator>
122 <SubType>Designer</SubType>
123 </Page>
124 </ItemGroup>
125 <ItemGroup>
126 <None Include="Diagrams\Overview.cd" />
127 <None Include="Properties\AppManifest.xml" />
128 </ItemGroup>
129 <ItemGroup>
130 <ProjectReference Include="..\SilverlightGlimpse\SilverlightGlimpse.csproj">
131 <Project>{bb51026b-2864-4389-aaca-0bbdf1926e46}</Project>
132 <Name>SilverlightGlimpse</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>