Editor.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\CSharp\</SolutionDir>
  21. <RestorePackages>true</RestorePackages>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  24. <PlatformTarget>x86</PlatformTarget>
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>full</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>bin\Debug\</OutputPath>
  29. <DefineConstants>DEBUG;TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  34. <PlatformTarget>x86</PlatformTarget>
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="Microsoft.Practices.Prism">
  44. <HintPath>..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  47. <HintPath>..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.ComponentModel.Composition" />
  51. <Reference Include="System.Xml" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xaml">
  54. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  55. </Reference>
  56. <Reference Include="WindowsBase" />
  57. <Reference Include="PresentationCore" />
  58. <Reference Include="PresentationFramework" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <ApplicationDefinition Include="App.xaml">
  62. <Generator>MSBuild:Compile</Generator>
  63. <SubType>Designer</SubType>
  64. </ApplicationDefinition>
  65. <Compile Include="Bootstrapper.cs" />
  66. <Compile Include="Shell.xaml.cs">
  67. <DependentUpon>Shell.xaml</DependentUpon>
  68. </Compile>
  69. <Compile Include="ShellViewModel.cs" />
  70. <Compile Include="App.xaml.cs">
  71. <DependentUpon>App.xaml</DependentUpon>
  72. <SubType>Code</SubType>
  73. </Compile>
  74. <Page Include="Shell.xaml">
  75. <Generator>MSBuild:Compile</Generator>
  76. <SubType>Designer</SubType>
  77. </Page>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <AppDesigner Include="Properties\" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <Folder Include="Properties\" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj">
  87. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  88. <Name>Infrastructure</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\Modules\BehaviorTree\BehaviorTree.csproj">
  91. <Project>{6CD185D1-08E0-4729-A999-2D5B57BA8193}</Project>
  92. <Name>BehaviorTree</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <None Include="NLog.config">
  97. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  98. </None>
  99. <None Include="Packages.config" />
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. <PropertyGroup>
  103. <PreBuildEvent>
  104. </PreBuildEvent>
  105. </PropertyGroup>
  106. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  107. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  108. Other similar extension points exist, see Microsoft.Common.targets.
  109. <Target Name="BeforeBuild">
  110. </Target>
  111. <Target Name="AfterBuild">
  112. </Target>
  113. -->
  114. </Project>