BehaviorTree.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="Google.ProtocolBuffers, Version=2.4.1.473, Culture=neutral, PublicKeyToken=55f7125234beb589, processorArchitecture=MSIL">
  37. <HintPath>..\..\packages\Google.ProtocolBuffers.2.4.1.473\lib\net40\Google.ProtocolBuffers.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Microsoft.Practices.Prism">
  40. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  43. <HintPath>..\..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  44. </Reference>
  45. <Reference Include="NLog">
  46. <HintPath>..\..\Packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  47. </Reference>
  48. <Reference Include="PresentationCore" />
  49. <Reference Include="PresentationFramework" />
  50. <Reference Include="System" />
  51. <Reference Include="System.ComponentModel.Composition" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xaml" />
  54. <Reference Include="System.Xml" />
  55. <Reference Include="WindowsBase" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="BehaviorTreeLayout.cs" />
  59. <Compile Include="BehaviorTreeViewModel.cs" />
  60. <Compile Include="BehaviorTreeModule.cs" />
  61. <Compile Include="BehaviorTreeView.xaml.cs">
  62. <DependentUpon>BehaviorTreeView.xaml</DependentUpon>
  63. </Compile>
  64. <Compile Include="Person.pb.cs">
  65. <AutoGen>True</AutoGen>
  66. <DesignTime>True</DesignTime>
  67. <DependentUpon>Person.proto</DependentUpon>
  68. </Compile>
  69. <Compile Include="TreeNode.cs" />
  70. <Compile Include="TreeNodeViewModel.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Folder Include="Properties\" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  77. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  78. <Name>Infrastructure</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="google\protobuf\csharp_options.proto" />
  83. <None Include="google\protobuf\descriptor.proto" />
  84. <None Include="Packages.config" />
  85. <None Include="Person.proto">
  86. <Generator>CmdTool</Generator>
  87. <LastGenOutput>Person.pb.cs</LastGenOutput>
  88. </None>
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Page Include="BehaviorTreeView.xaml">
  92. <Generator>MSBuild:Compile</Generator>
  93. <SubType>Designer</SubType>
  94. </Page>
  95. </ItemGroup>
  96. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  97. <PropertyGroup>
  98. <PreBuildEvent>Nuget.exe install $(ProjectDir)Packages.config -o $(SolutionDir)Packages</PreBuildEvent>
  99. </PropertyGroup>
  100. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  101. Other similar extension points exist, see Microsoft.Common.targets.
  102. <Target Name="BeforeBuild">
  103. </Target>
  104. <Target Name="AfterBuild">
  105. </Target>
  106. -->
  107. </Project>