26
|
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>{31F2E0F2-A94B-4FC0-B4D4-1518600A0256}</ProjectGuid>
|
|
9 <OutputType>WinExe</OutputType>
|
|
10 <AppDesignerFolder>Properties</AppDesignerFolder>
|
|
11 <RootNamespace>Client</RootNamespace>
|
|
12 <AssemblyName>Client</AssemblyName>
|
|
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
14 <TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
|
15 <FileAlignment>512</FileAlignment>
|
|
16 <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
17 <WarningLevel>4</WarningLevel>
|
|
18 </PropertyGroup>
|
|
19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
20 <PlatformTarget>x86</PlatformTarget>
|
|
21 <DebugSymbols>true</DebugSymbols>
|
|
22 <DebugType>full</DebugType>
|
|
23 <Optimize>false</Optimize>
|
|
24 <OutputPath>bin\Debug\</OutputPath>
|
|
25 <DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
26 <ErrorReport>prompt</ErrorReport>
|
|
27 <WarningLevel>4</WarningLevel>
|
|
28 </PropertyGroup>
|
|
29 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
30 <PlatformTarget>x86</PlatformTarget>
|
|
31 <DebugType>pdbonly</DebugType>
|
|
32 <Optimize>true</Optimize>
|
|
33 <OutputPath>bin\Release\</OutputPath>
|
|
34 <DefineConstants>TRACE</DefineConstants>
|
|
35 <ErrorReport>prompt</ErrorReport>
|
|
36 <WarningLevel>4</WarningLevel>
|
|
37 </PropertyGroup>
|
|
38 <PropertyGroup>
|
28
|
39 <ApplicationIcon>
|
|
40 </ApplicationIcon>
|
26
|
41 </PropertyGroup>
|
|
42 <ItemGroup>
|
28
|
43 <Reference Include="RabbitMQ.Client, Version=2.6.1.0, Culture=neutral, PublicKeyToken=89e7d7c5feba84ce, processorArchitecture=MSIL">
|
|
44 <SpecificVersion>False</SpecificVersion>
|
|
45 <HintPath>..\Libs\RabbitMq.2.6.1.0\RabbitMQ.Client.dll</HintPath>
|
|
46 </Reference>
|
26
|
47 <Reference Include="System" />
|
|
48 <Reference Include="System.Xml" />
|
|
49 <Reference Include="System.Core" />
|
|
50 <Reference Include="System.Xaml">
|
|
51 <RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
52 </Reference>
|
|
53 <Reference Include="WindowsBase" />
|
|
54 <Reference Include="PresentationCore" />
|
|
55 <Reference Include="PresentationFramework" />
|
|
56 </ItemGroup>
|
|
57 <ItemGroup>
|
|
58 <ApplicationDefinition Include="App.xaml">
|
|
59 <Generator>MSBuild:Compile</Generator>
|
|
60 <SubType>Designer</SubType>
|
|
61 </ApplicationDefinition>
|
|
62 <Compile Include="Sockets\AsynchronousClient.cs" />
|
|
63 <Compile Include="Sockets\StateObject.cs" />
|
|
64 <Page Include="MainWindow.xaml">
|
|
65 <Generator>MSBuild:Compile</Generator>
|
|
66 <SubType>Designer</SubType>
|
|
67 </Page>
|
|
68 <Compile Include="App.xaml.cs">
|
|
69 <DependentUpon>App.xaml</DependentUpon>
|
|
70 <SubType>Code</SubType>
|
|
71 </Compile>
|
|
72 <Compile Include="MainWindow.xaml.cs">
|
|
73 <DependentUpon>MainWindow.xaml</DependentUpon>
|
|
74 <SubType>Code</SubType>
|
|
75 </Compile>
|
|
76 </ItemGroup>
|
|
77 <ItemGroup>
|
|
78 <Compile Include="Properties\AssemblyInfo.cs">
|
|
79 <SubType>Code</SubType>
|
|
80 </Compile>
|
|
81 <Compile Include="Properties\Resources.Designer.cs">
|
|
82 <AutoGen>True</AutoGen>
|
|
83 <DesignTime>True</DesignTime>
|
|
84 <DependentUpon>Resources.resx</DependentUpon>
|
|
85 </Compile>
|
|
86 <Compile Include="Properties\Settings.Designer.cs">
|
|
87 <AutoGen>True</AutoGen>
|
|
88 <DependentUpon>Settings.settings</DependentUpon>
|
|
89 <DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
90 </Compile>
|
|
91 <EmbeddedResource Include="Properties\Resources.resx">
|
|
92 <Generator>ResXFileCodeGenerator</Generator>
|
|
93 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
94 </EmbeddedResource>
|
|
95 <None Include="Properties\Settings.settings">
|
|
96 <Generator>SettingsSingleFileGenerator</Generator>
|
|
97 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
98 </None>
|
|
99 <AppDesigner Include="Properties\" />
|
|
100 </ItemGroup>
|
|
101 <ItemGroup>
|
28
|
102 <ProjectReference Include="..\Common\Common.csproj">
|
|
103 <Project>{241CE91D-18AC-4D84-ACC2-2273F50A5E9B}</Project>
|
|
104 <Name>Common</Name>
|
|
105 </ProjectReference>
|
26
|
106 </ItemGroup>
|
|
107 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
108 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
109 Other similar extension points exist, see Microsoft.Common.targets.
|
|
110 <Target Name="BeforeBuild">
|
|
111 </Target>
|
|
112 <Target Name="AfterBuild">
|
|
113 </Target>
|
|
114 -->
|
|
115 </Project> |