comparison SilverlightValidation/SilverlightValidation.PL/SilverlightValidation.PL.csproj @ 96:188f8b366e87

Unit test project correctly setup as normal class library DLL.
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 13:29:56 +0100
parents
children d0c2cac12376
comparison
equal deleted inserted replaced
95:64e9903703a3 96:188f8b366e87
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>{13B5F568-F402-4A2A-9A23-0FDF0B5564E3}</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.PL</RootNamespace>
13 <AssemblyName>SilverlightValidation.PL</AssemblyName>
14 <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
15 <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
16 <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
17 <SilverlightApplication>false</SilverlightApplication>
18 <ValidateXaml>true</ValidateXaml>
19 <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
20 </PropertyGroup>
21 <!-- This property group is only here to support building this project using the
22 MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs
23 to set the TargetFrameworkVersion to v3.5 -->
24 <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'">
25 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
28 <DebugSymbols>true</DebugSymbols>
29 <DebugType>full</DebugType>
30 <Optimize>false</Optimize>
31 <OutputPath>Bin\Debug</OutputPath>
32 <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
33 <NoStdLib>true</NoStdLib>
34 <NoConfig>true</NoConfig>
35 <ErrorReport>prompt</ErrorReport>
36 <WarningLevel>4</WarningLevel>
37 </PropertyGroup>
38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
39 <DebugType>pdbonly</DebugType>
40 <Optimize>true</Optimize>
41 <OutputPath>Bin\Release</OutputPath>
42 <DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
43 <NoStdLib>true</NoStdLib>
44 <NoConfig>true</NoConfig>
45 <ErrorReport>prompt</ErrorReport>
46 <WarningLevel>4</WarningLevel>
47 </PropertyGroup>
48 <ItemGroup>
49 <Reference Include="FluentValidation">
50 <HintPath>..\Libs\FluentValidation.dll</HintPath>
51 </Reference>
52 <Reference Include="GalaSoft.MvvmLight.SL5, Version=4.0.21.32885, Culture=neutral, PublicKeyToken=c114982fcf1a3a2e, processorArchitecture=MSIL">
53 <SpecificVersion>False</SpecificVersion>
54 <HintPath>..\Libs\GalaSoft.MvvmLight.SL5.dll</HintPath>
55 </Reference>
56 <Reference Include="mscorlib" />
57 <Reference Include="System.Windows" />
58 <Reference Include="system" />
59 <Reference Include="System.Core" />
60 <Reference Include="System.Windows.Controls, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
61 <HintPath>..\Libs\System.Windows.Controls.dll</HintPath>
62 </Reference>
63 <Reference Include="System.Windows.Controls.Navigation, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
64 <HintPath>..\Libs\System.Windows.Controls.Navigation.dll</HintPath>
65 </Reference>
66 </ItemGroup>
67 <ItemGroup>
68 <Compile Include="Commands\RelayCommand.cs" />
69 <Compile Include="Data\Factory.cs" />
70 <Compile Include="Interfaces\ICloneable.cs" />
71 <Compile Include="Interfaces\IUserModel.cs" />
72 <Compile Include="Messages\UserViewResponseMessage.cs" />
73 <Compile Include="Models\UserModel.cs" />
74 <Compile Include="Properties\AssemblyInfo.cs" />
75 <Compile Include="Validators\UserModelValidator.cs" />
76 <Compile Include="ViewModels\UserListViewModel.cs" />
77 <Compile Include="ViewModels\UserViewModel.cs" />
78 <Compile Include="ViewModels\ViewModelBase.cs" />
79 </ItemGroup>
80 <ItemGroup>
81 <None Include="Diagrams\Overview.cd" />
82 </ItemGroup>
83 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" />
84 <ProjectExtensions>
85 <VisualStudio>
86 <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
87 <SilverlightProjectProperties />
88 </FlavorProperties>
89 </VisualStudio>
90 </ProjectExtensions>
91 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
92 Other similar extension points exist, see Microsoft.Common.targets.
93 <Target Name="BeforeBuild">
94 </Target>
95 <Target Name="AfterBuild">
96 </Target>
97 -->
98 </Project>