comparison SilverlightExampleApp/SilverlightExampleApp.Interfaces/SilverlightExampleApp.Interfaces.csproj @ 49:502f5f365649

Initial load for Silverlight Example Application
author Steven Hollidge <stevenhollidge@hotmail.com>
date Tue, 17 Apr 2012 17:57:52 +0100
parents
children 3591c26bd63e
comparison
equal deleted inserted replaced
48:d617b54e1f47 49:502f5f365649
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>{6C96E971-4A29-462B-88CD-4C05065BFE3A}</ProjectGuid>
9 <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
10 <OutputType>Library</OutputType>
11 <AppDesignerFolder>Properties</AppDesignerFolder>
12 <RootNamespace>SilverlightExampleApp.Interfaces</RootNamespace>
13 <AssemblyName>SilverlightExampleApp.Interfaces</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="mscorlib" />
50 <Reference Include="System.Windows" />
51 <Reference Include="system" />
52 <Reference Include="System.Core" />
53 <Reference Include="System.Xml" />
54 <Reference Include="System.Net" />
55 <Reference Include="System.Windows.Browser" />
56 </ItemGroup>
57 <ItemGroup>
58 <Compile Include="Models\IClient.cs" />
59 <Compile Include="Models\ICountry.cs" />
60 <Compile Include="Models\ITitle.cs" />
61 <Compile Include="Properties\AssemblyInfo.cs" />
62 <Compile Include="Services\IClientDataService.cs" />
63 </ItemGroup>
64 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" />
65 <ProjectExtensions>
66 <VisualStudio>
67 <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
68 <SilverlightProjectProperties />
69 </FlavorProperties>
70 </VisualStudio>
71 </ProjectExtensions>
72 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
73 Other similar extension points exist, see Microsoft.Common.targets.
74 <Target Name="BeforeBuild">
75 </Target>
76 <Target Name="AfterBuild">
77 </Target>
78 -->
79 </Project>