Robot.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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\Infrastructure\Infrastructure.csproj">
  66. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  67. <Name>Infrastructure</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Folder Include="Properties\" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="Packages.config" />
  75. </ItemGroup>
  76. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  77. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>