Editor.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{C46F3337-0F48-4A72-84AD-8FDD1F159BB0}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Editor</RootNamespace>
  12. <AssemblyName>Editor</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. <WarningLevel>4</WarningLevel>
  18. <Utf8Output>true</Utf8Output>
  19. <ExpressionBlendVersion>4.0.20621.0</ExpressionBlendVersion>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  22. <PlatformTarget>x86</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  32. <PlatformTarget>x86</PlatformTarget>
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="Microsoft.Practices.Prism">
  42. <HintPath>..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  43. </Reference>
  44. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  45. <HintPath>..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.ComponentModel.Composition" />
  49. <Reference Include="System.Xml" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Xaml">
  52. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  53. </Reference>
  54. <Reference Include="WindowsBase" />
  55. <Reference Include="PresentationCore" />
  56. <Reference Include="PresentationFramework" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ApplicationDefinition Include="App.xaml">
  60. <Generator>MSBuild:Compile</Generator>
  61. <SubType>Designer</SubType>
  62. </ApplicationDefinition>
  63. <Compile Include="Bootstrapper.cs" />
  64. <Compile Include="Shell.xaml.cs">
  65. <DependentUpon>Shell.xaml</DependentUpon>
  66. </Compile>
  67. <Compile Include="ShellViewModel.cs" />
  68. <Compile Include="App.xaml.cs">
  69. <DependentUpon>App.xaml</DependentUpon>
  70. <SubType>Code</SubType>
  71. </Compile>
  72. <Page Include="Shell.xaml">
  73. <Generator>MSBuild:Compile</Generator>
  74. <SubType>Designer</SubType>
  75. </Page>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <AppDesigner Include="Properties\" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Folder Include="Properties\" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj">
  85. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  86. <Name>Infrastructure</Name>
  87. </ProjectReference>
  88. <ProjectReference Include="..\Modules\BehaviorTree\BehaviorTree.csproj">
  89. <Project>{6CD185D1-08E0-4729-A999-2D5B57BA8193}</Project>
  90. <Name>TreeCanvas</Name>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <None Include="NLog.config">
  95. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  96. </None>
  97. <None Include="Packages.config" />
  98. </ItemGroup>
  99. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  100. <PropertyGroup>
  101. <PreBuildEvent>Nuget.exe install $(ProjectDir)Packages.config -o $(SolutionDir)Packages</PreBuildEvent>
  102. </PropertyGroup>
  103. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  104. Other similar extension points exist, see Microsoft.Common.targets.
  105. <Target Name="BeforeBuild">
  106. </Target>
  107. <Target Name="AfterBuild">
  108. </Target>
  109. -->
  110. </Project>