Robot.csproj 4.3 KB

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