Robot.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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">
  36. <HintPath>..\..\..\packages\BouncyCastle.1.7.0\lib\Net20\BouncyCastle.Crypto.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Microsoft.Practices.Prism">
  39. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  40. </Reference>
  41. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  42. <HintPath>..\..\..\packages\Prism.MEFExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  43. </Reference>
  44. <Reference Include="PresentationCore" />
  45. <Reference Include="PresentationFramework" />
  46. <Reference Include="protobuf-net">
  47. <HintPath>..\..\..\packages\protobuf-net.2.0.0.480\lib\net40\protobuf-net.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.ComponentModel.Composition" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Xaml" />
  53. <Reference Include="System.Xml" />
  54. <Reference Include="WindowsBase" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="Robot.cs" />
  58. <Compile Include="RobotModule.cs" />
  59. <Compile Include="RobotViewModel.cs" />
  60. <Compile Include="RobotView.xaml.cs">
  61. <DependentUpon>RobotView.xaml</DependentUpon>
  62. </Compile>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Page Include="RobotView.xaml">
  66. <SubType>Designer</SubType>
  67. <Generator>MSBuild:Compile</Generator>
  68. </Page>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\..\..\Platform\Log\Log.csproj">
  72. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  73. <Name>Log</Name>
  74. </ProjectReference>
  75. <ProjectReference Include="..\..\..\ThirdParty\ENetCS\ENetCS.csproj">
  76. <Project>{d0b4cfac-a368-4742-9863-68776cfa9938}</Project>
  77. <Name>ENetCS</Name>
  78. </ProjectReference>
  79. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  80. <Project>{48a2e149-0dac-41b4-bb54-dfbccd6d42b3}</Project>
  81. <Name>Infrastructure</Name>
  82. </ProjectReference>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Folder Include="Properties\" />
  86. </ItemGroup>
  87. <ItemGroup>
  88. <None Include="Packages.config" />
  89. <None Include="Person.proto">
  90. <Generator>ProtobufTool</Generator>
  91. </None>
  92. </ItemGroup>
  93. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  94. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  95. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  96. Other similar extension points exist, see Microsoft.Common.targets.
  97. <Target Name="BeforeBuild">
  98. </Target>
  99. <Target Name="AfterBuild">
  100. </Target>
  101. -->
  102. </Project>