TreeCanvas.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>TreeCanvas</RootNamespace>
  12. <AssemblyName>TreeCanvas</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="Microsoft.Expression.Drawing" />
  37. <Reference Include="Microsoft.Practices.Prism">
  38. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Microsoft.Practices.Prism.Interactivity">
  41. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  44. <HintPath>..\..\Packages\Prism.MEFExtensions.4.0.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.Linq" />
  56. <Reference Include="System.Data.DataSetExtensions" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Xml" />
  60. <Reference Include="WindowsBase" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Compile Include="TreeCanvasModule.cs" />
  64. <Compile Include="TreeCanvasView.xaml.cs">
  65. <DependentUpon>TreeCanvasView.xaml</DependentUpon>
  66. </Compile>
  67. <Compile Include="TreeCanvasViewModel.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Folder Include="Properties\" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Page Include="TreeCanvasView.xaml">
  74. <SubType>Designer</SubType>
  75. <Generator>MSBuild:Compile</Generator>
  76. </Page>
  77. </ItemGroup>
  78. <ItemGroup>
  79. <ProjectReference Include="..\..\Controls\BehaviorView\BehaviorView.csproj">
  80. <Project>{844E644E-A19D-4BBA-9E20-287977E2564D}</Project>
  81. <Name>BehaviorView</Name>
  82. </ProjectReference>
  83. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  84. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  85. <Name>Infrastructure</Name>
  86. </ProjectReference>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="Packages.config" />
  90. </ItemGroup>
  91. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  92. <PropertyGroup>
  93. <PreBuildEvent>$(SolutionDir)\Tools\Nuget.exe install $(ProjectDir)Packages.config -o $(SolutionDir)Packages</PreBuildEvent>
  94. </PropertyGroup>
  95. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  96. Other similar extension points exist, see Microsoft.Common.targets.
  97. <Target Name="BeforeBuild">
  98. </Target>
  99. <Target Name="AfterBuild">
  100. </Target>
  101. -->
  102. </Project>