BehaviorTree.csproj 4.4 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. <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>BehaviorTree</RootNamespace>
  12. <AssemblyName>BehaviorTree</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</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. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="Microsoft.Practices.Prism, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.Practices.Prism.MefExtensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\..\packages\Prism.MEFExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  45. </Reference>
  46. <Reference Include="NLog">
  47. <HintPath>..\..\Packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  48. </Reference>
  49. <Reference Include="PresentationCore" />
  50. <Reference Include="PresentationFramework" />
  51. <Reference Include="System" />
  52. <Reference Include="System.ComponentModel.Composition" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Xaml" />
  55. <Reference Include="System.Xml" />
  56. <Reference Include="WindowsBase" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="BehaviorTreeLayout.cs" />
  60. <Compile Include="BehaviorTreeViewModel.cs" />
  61. <Compile Include="BehaviorTreeModule.cs" />
  62. <Compile Include="BehaviorTreeView.xaml.cs">
  63. <DependentUpon>BehaviorTreeView.xaml</DependentUpon>
  64. </Compile>
  65. <Compile Include="TreeNode.cs" />
  66. <Compile Include="TreeNodeViewModel.cs" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <Folder Include="Properties\" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="google\protobuf\csharp_options.proto" />
  73. <None Include="google\protobuf\descriptor.proto" />
  74. <None Include="Packages.config" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Page Include="BehaviorTreeView.xaml">
  78. <Generator>MSBuild:Compile</Generator>
  79. <SubType>Designer</SubType>
  80. </Page>
  81. </ItemGroup>
  82. <ItemGroup>
  83. <ProjectReference Include="..\..\Platform\Infrastructure\Infrastructure.csproj">
  84. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  85. <Name>Infrastructure</Name>
  86. </ProjectReference>
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <PropertyGroup>
  90. <PreBuildEvent>
  91. </PreBuildEvent>
  92. </PropertyGroup>
  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>