Robot.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{5D6ECBCD-BE14-4DCB-BAEC-57089748B164}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Robot</RootNamespace>
  11. <AssemblyName>Robot</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\..\..\Bin\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>..\..\..\Bin\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="BouncyCastle.Crypto, Version=1.7.4137.9283, Culture=neutral, PublicKeyToken=a4292a325f69b123, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\..\packages\BouncyCastle.1.7.0\lib\Net20\BouncyCastle.Crypto.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Microsoft.Practices.Prism">
  40. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  43. <HintPath>..\..\..\packages\Prism.MEFExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  44. </Reference>
  45. <Reference Include="PresentationCore" />
  46. <Reference Include="PresentationFramework" />
  47. <Reference Include="System" />
  48. <Reference Include="System.ComponentModel.Composition" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Runtime.Serialization" />
  51. <Reference Include="System.Xaml" />
  52. <Reference Include="System.Xml" />
  53. <Reference Include="WindowsBase" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="Protos\Messages.cs" />
  57. <Compile Include="RealmException.cs" />
  58. <Compile Include="RealmInfo.cs" />
  59. <Compile Include="RealmSession.cs" />
  60. <Compile Include="Robot.cs" />
  61. <Compile Include="RobotModule.cs" />
  62. <Compile Include="RobotViewModel.cs" />
  63. <Compile Include="RobotView.xaml.cs">
  64. <DependentUpon>RobotView.xaml</DependentUpon>
  65. </Compile>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Page Include="RobotView.xaml">
  69. <SubType>Designer</SubType>
  70. <Generator>MSBuild:Compile</Generator>
  71. </Page>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\..\..\Platform\ENet\ENet.csproj">
  75. <Project>{d0b4cfac-a368-4742-9863-68776cfa9938}</Project>
  76. <Name>ENet</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\..\..\Platform\Helper\Helper.csproj">
  79. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  80. <Name>Helper</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\..\..\Platform\Log\Log.csproj">
  83. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  84. <Name>Log</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  87. <Project>{48a2e149-0dac-41b4-bb54-dfbccd6d42b3}</Project>
  88. <Name>Infrastructure</Name>
  89. </ProjectReference>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <Folder Include="Properties\" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <None Include="Packages.config" />
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  99. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  100. Other similar extension points exist, see Microsoft.Common.targets.
  101. <Target Name="BeforeBuild">
  102. </Target>
  103. <Target Name="AfterBuild">
  104. </Target>
  105. -->
  106. </Project>