Robot.csproj 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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="System" />
  44. <Reference Include="System.ComponentModel.Composition" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Xaml" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="WindowsBase" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Robot.cs" />
  52. <Compile Include="RobotModule.cs" />
  53. <Compile Include="RobotViewModel.cs" />
  54. <Compile Include="RobotView.xaml.cs">
  55. <DependentUpon>RobotView.xaml</DependentUpon>
  56. </Compile>
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Page Include="RobotView.xaml">
  60. <SubType>Designer</SubType>
  61. <Generator>MSBuild:Compile</Generator>
  62. </Page>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <ProjectReference Include="..\..\..\Platform\ENet\ENet.csproj">
  66. <Project>{d0b4cfac-a368-4742-9863-68776cfa9938}</Project>
  67. <Name>ENet</Name>
  68. </ProjectReference>
  69. <ProjectReference Include="..\..\..\Platform\Log\Log.csproj">
  70. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  71. <Name>Log</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  74. <Project>{48a2e149-0dac-41b4-bb54-dfbccd6d42b3}</Project>
  75. <Name>Infrastructure</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\..\LoginClient\LoginClient.csproj">
  78. <Project>{8650195A-7904-4EBC-9D81-B392A7E9B9B3}</Project>
  79. <Name>LoginClient</Name>
  80. </ProjectReference>
  81. </ItemGroup>
  82. <ItemGroup>
  83. <Folder Include="Properties\" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="Packages.config" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>