BehaviorTree.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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">
  39. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  40. </Reference>
  41. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  42. <HintPath>..\..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  43. </Reference>
  44. <Reference Include="NLog">
  45. <HintPath>..\..\Packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  46. </Reference>
  47. <Reference Include="PresentationCore" />
  48. <Reference Include="PresentationFramework" />
  49. <Reference Include="System" />
  50. <Reference Include="System.ComponentModel.Composition" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Xaml" />
  53. <Reference Include="System.Xml" />
  54. <Reference Include="WindowsBase" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="BehaviorTreeLayout.cs" />
  58. <Compile Include="BehaviorTreeViewModel.cs" />
  59. <Compile Include="BehaviorTreeModule.cs" />
  60. <Compile Include="BehaviorTreeView.xaml.cs">
  61. <DependentUpon>BehaviorTreeView.xaml</DependentUpon>
  62. </Compile>
  63. <Compile Include="TreeNode.cs" />
  64. <Compile Include="TreeNodeViewModel.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Folder Include="Properties\" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  71. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  72. <Name>Infrastructure</Name>
  73. </ProjectReference>
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include="google\protobuf\csharp_options.proto" />
  77. <None Include="google\protobuf\descriptor.proto" />
  78. <None Include="Packages.config" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Page Include="BehaviorTreeView.xaml">
  82. <Generator>MSBuild:Compile</Generator>
  83. <SubType>Designer</SubType>
  84. </Page>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <PropertyGroup>
  88. <PreBuildEvent>
  89. </PreBuildEvent>
  90. </PropertyGroup>
  91. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  92. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  93. Other similar extension points exist, see Microsoft.Common.targets.
  94. <Target Name="BeforeBuild">
  95. </Target>
  96. <Target Name="AfterBuild">
  97. </Target>
  98. -->
  99. </Project>