Tree.csproj 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{6CD185D1-08E0-4729-A999-2D5B57BA8193}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Modules.Tree</RootNamespace>
  12. <AssemblyName>Tree</AssemblyName>
  13. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <Utf8Output>true</Utf8Output>
  16. <ExpressionBlendVersion>4.0.20621.0</ExpressionBlendVersion>
  17. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\CSharp\</SolutionDir>
  18. <RestorePackages>true</RestorePackages>
  19. <TargetFrameworkProfile />
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>..\..\..\Bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>..\..\..\Bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="Microsoft.Practices.Prism.Composition">
  42. <HintPath>..\..\..\packages\Prism.Composition.5.0.0\lib\NET45\Microsoft.Practices.Prism.Composition.dll</HintPath>
  43. <Private>True</Private>
  44. </Reference>
  45. <Reference Include="Microsoft.Practices.Prism.Interactivity">
  46. <HintPath>..\..\..\packages\Prism.Interactivity.5.0.0\lib\NET45\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  50. <HintPath>..\..\..\packages\Prism.MEFExtensions.5.0.0\lib\NET45\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="Microsoft.Practices.Prism.Mvvm">
  54. <HintPath>..\..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="Microsoft.Practices.Prism.Mvvm.Desktop">
  58. <HintPath>..\..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.Desktop.dll</HintPath>
  59. <Private>True</Private>
  60. </Reference>
  61. <Reference Include="Microsoft.Practices.Prism.PubSubEvents">
  62. <HintPath>..\..\..\packages\Prism.PubSubEvents.1.0.0\lib\portable-sl4+wp7+windows8+net40\Microsoft.Practices.Prism.PubSubEvents.dll</HintPath>
  63. <Private>True</Private>
  64. </Reference>
  65. <Reference Include="Microsoft.Practices.Prism.SharedInterfaces">
  66. <HintPath>..\..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.SharedInterfaces.dll</HintPath>
  67. <Private>True</Private>
  68. </Reference>
  69. <Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  70. <SpecificVersion>False</SpecificVersion>
  71. <HintPath>..\..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
  72. <Private>True</Private>
  73. </Reference>
  74. <Reference Include="PresentationCore" />
  75. <Reference Include="PresentationFramework" />
  76. <Reference Include="System" />
  77. <Reference Include="System.ComponentModel.Composition" />
  78. <Reference Include="System.Core" />
  79. <Reference Include="System.Xaml" />
  80. <Reference Include="System.Xml" />
  81. <Reference Include="WindowsBase" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Compile Include="BehaviorTreeLayout.cs" />
  85. <Compile Include="BehaviorTreeViewModel.cs" />
  86. <Compile Include="BehaviorTreeModule.cs" />
  87. <Compile Include="BehaviorTreeView.xaml.cs">
  88. <DependentUpon>BehaviorTreeView.xaml</DependentUpon>
  89. </Compile>
  90. <Compile Include="TreeNode.cs" />
  91. <Compile Include="TreeNodeViewModel.cs" />
  92. </ItemGroup>
  93. <ItemGroup>
  94. <Folder Include="Properties\" />
  95. </ItemGroup>
  96. <ItemGroup>
  97. <None Include="app.config" />
  98. <None Include="Packages.config" />
  99. </ItemGroup>
  100. <ItemGroup>
  101. <Page Include="BehaviorTreeView.xaml">
  102. <Generator>MSBuild:Compile</Generator>
  103. <SubType>Designer</SubType>
  104. </Page>
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="..\..\..\Platform\Logger\Logger.csproj">
  108. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  109. <Name>Logger</Name>
  110. </ProjectReference>
  111. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  112. <Project>{48a2e149-0dac-41b4-bb54-dfbccd6d42b3}</Project>
  113. <Name>Infrastructure</Name>
  114. </ProjectReference>
  115. </ItemGroup>
  116. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  117. <PropertyGroup>
  118. <PreBuildEvent>
  119. </PreBuildEvent>
  120. </PropertyGroup>
  121. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  122. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  123. Other similar extension points exist, see Microsoft.Common.targets.
  124. <Target Name="BeforeBuild">
  125. </Target>
  126. <Target Name="AfterBuild">
  127. </Target>
  128. -->
  129. </Project>