comparison Workflow/Client/Client.csproj @ 89:3c67e54e3a17

Working version
author stevenhollidge <stevenhollidge@hotmail.com>
date Mon, 30 Apr 2012 10:45:32 +0100
parents
children 03272bcb3cc0
comparison
equal deleted inserted replaced
88:e84dc4926a5a 89:3c67e54e3a17
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)' == '' ">x86</Platform>
6 <ProductVersion>8.0.30703</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{52DBB55B-5483-4E56-93D3-0D6DEC3FF603}</ProjectGuid>
9 <OutputType>WinExe</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>Client</RootNamespace>
12 <AssemblyName>Client</AssemblyName>
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14 <TargetFrameworkProfile>
15 </TargetFrameworkProfile>
16 <FileAlignment>512</FileAlignment>
17 <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
18 <WarningLevel>4</WarningLevel>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
21 <PlatformTarget>x86</PlatformTarget>
22 <DebugSymbols>true</DebugSymbols>
23 <DebugType>full</DebugType>
24 <Optimize>false</Optimize>
25 <OutputPath>bin\Debug\</OutputPath>
26 <DefineConstants>DEBUG;TRACE</DefineConstants>
27 <ErrorReport>prompt</ErrorReport>
28 <WarningLevel>4</WarningLevel>
29 </PropertyGroup>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
31 <PlatformTarget>x86</PlatformTarget>
32 <DebugType>pdbonly</DebugType>
33 <Optimize>true</Optimize>
34 <OutputPath>bin\Release\</OutputPath>
35 <DefineConstants>TRACE</DefineConstants>
36 <ErrorReport>prompt</ErrorReport>
37 <WarningLevel>4</WarningLevel>
38 </PropertyGroup>
39 <ItemGroup>
40 <Reference Include="Burrow">
41 <HintPath>..\packages\Burrow.NET.1.0.4\lib\net40\Burrow.dll</HintPath>
42 </Reference>
43 <Reference Include="Burrow.Extras">
44 <HintPath>..\packages\Burrow.Extras.1.0.4\lib\net40\Burrow.Extras.dll</HintPath>
45 </Reference>
46 <Reference Include="Elysium.Theme, Version=1.2.257.1, Culture=neutral, PublicKeyToken=774478744bbf1dcc, processorArchitecture=MSIL">
47 <HintPath>..\packages\Elysium.Theme.1.3\lib\net40\Elysium.Theme.dll</HintPath>
48 </Reference>
49 <Reference Include="Newtonsoft.Json">
50 <HintPath>..\packages\Newtonsoft.Json.4.5.4\lib\net40\Newtonsoft.Json.dll</HintPath>
51 </Reference>
52 <Reference Include="RabbitMQ.Client, Version=2.8.1.0, Culture=neutral, PublicKeyToken=89e7d7c5feba84ce, processorArchitecture=MSIL">
53 <SpecificVersion>False</SpecificVersion>
54 <HintPath>..\packages\RabbitMQ.Client.2.8.1\lib\net30\RabbitMQ.Client.dll</HintPath>
55 </Reference>
56 <Reference Include="System" />
57 <Reference Include="System.Core" />
58 <Reference Include="System.Web.Extensions" />
59 <Reference Include="System.Xaml">
60 <RequiredTargetFramework>4.0</RequiredTargetFramework>
61 </Reference>
62 <Reference Include="WindowsBase" />
63 <Reference Include="PresentationCore" />
64 <Reference Include="PresentationFramework" />
65 </ItemGroup>
66 <ItemGroup>
67 <ApplicationDefinition Include="App.xaml">
68 <Generator>MSBuild:Compile</Generator>
69 <SubType>Designer</SubType>
70 </ApplicationDefinition>
71 <Compile Include="App.xaml.cs">
72 <DependentUpon>App.xaml</DependentUpon>
73 <SubType>Code</SubType>
74 </Compile>
75 </ItemGroup>
76 <ItemGroup>
77 <Compile Include="Controls\UIMessage.xaml.cs">
78 <DependentUpon>UIMessage.xaml</DependentUpon>
79 </Compile>
80 <Compile Include="MainWindow.xaml.cs">
81 <DependentUpon>MainWindow.xaml</DependentUpon>
82 </Compile>
83 <Compile Include="Messages\DeliveryMessage.cs" />
84 <Compile Include="Messages\OrderMessage.cs" />
85 <Compile Include="Messages\PaymentMessage.cs" />
86 <Compile Include="Properties\AssemblyInfo.cs">
87 <SubType>Code</SubType>
88 </Compile>
89 <Compile Include="Properties\Resources.Designer.cs">
90 <AutoGen>True</AutoGen>
91 <DesignTime>True</DesignTime>
92 <DependentUpon>Resources.resx</DependentUpon>
93 </Compile>
94 <Compile Include="Properties\Settings.Designer.cs">
95 <AutoGen>True</AutoGen>
96 <DependentUpon>Settings.settings</DependentUpon>
97 <DesignTimeSharedInput>True</DesignTimeSharedInput>
98 </Compile>
99 <EmbeddedResource Include="Properties\Resources.resx">
100 <Generator>ResXFileCodeGenerator</Generator>
101 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
102 </EmbeddedResource>
103 <None Include="app.config" />
104 <None Include="packages.config" />
105 <None Include="Properties\Settings.settings">
106 <Generator>SettingsSingleFileGenerator</Generator>
107 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
108 </None>
109 <AppDesigner Include="Properties\" />
110 </ItemGroup>
111 <ItemGroup>
112 <Page Include="Controls\UIMessage.xaml">
113 <SubType>Designer</SubType>
114 <Generator>MSBuild:Compile</Generator>
115 </Page>
116 <Page Include="MainWindow.xaml">
117 <Generator>MSBuild:Compile</Generator>
118 <SubType>Designer</SubType>
119 </Page>
120 </ItemGroup>
121 <ItemGroup>
122 <Resource Include="Images\client.ico" />
123 </ItemGroup>
124 <ItemGroup>
125 <Resource Include="Images\gift.png" />
126 </ItemGroup>
127 <ItemGroup>
128 <Resource Include="Images\order.png" />
129 </ItemGroup>
130 <ItemGroup>
131 <Resource Include="Images\delivery.png" />
132 </ItemGroup>
133 <ItemGroup>
134 <Resource Include="Images\payment.png" />
135 </ItemGroup>
136 <ItemGroup>
137 <Resource Include="Images\error.png" />
138 <Resource Include="Images\info.png" />
139 <Resource Include="Images\question.png" />
140 <Resource Include="Images\success.png" />
141 </ItemGroup>
142 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
143 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
144 Other similar extension points exist, see Microsoft.Common.targets.
145 <Target Name="BeforeBuild">
146 </Target>
147 <Target Name="AfterBuild">
148 </Target>
149 -->
150 </Project>