Robot.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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\Debug\</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\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Microsoft.Expression.Interactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  36. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Expression.Interactions.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.Interactivity">
  42. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  43. </Reference>
  44. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  45. <HintPath>..\..\..\packages\Prism.MEFExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  46. </Reference>
  47. <Reference Include="Microsoft.Practices.ServiceLocation">
  48. <HintPath>..\..\..\packages\CommonServiceLocator.1.0\lib\NET35\Microsoft.Practices.ServiceLocation.dll</HintPath>
  49. </Reference>
  50. <Reference Include="NLog">
  51. <HintPath>..\..\..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  52. </Reference>
  53. <Reference Include="PresentationCore" />
  54. <Reference Include="PresentationFramework" />
  55. <Reference Include="System" />
  56. <Reference Include="System.ComponentModel.Composition" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  59. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\System.Windows.Interactivity.dll</HintPath>
  60. </Reference>
  61. <Reference Include="System.Xaml" />
  62. <Reference Include="System.Xml" />
  63. <Reference Include="WindowsBase" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="Robot.cs" />
  67. <Compile Include="RobotModule.cs" />
  68. <Compile Include="RobotViewModel.cs" />
  69. <Compile Include="RobotView.xaml.cs">
  70. <DependentUpon>RobotView.xaml</DependentUpon>
  71. </Compile>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Page Include="RobotView.xaml">
  75. <SubType>Designer</SubType>
  76. <Generator>MSBuild:Compile</Generator>
  77. </Page>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <ProjectReference Include="..\..\..\Platform\Infrastructure\Infrastructure.csproj">
  81. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  82. <Name>Infrastructure</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Folder Include="Properties\" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="Packages.config" />
  90. </ItemGroup>
  91. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  92. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>