TreeCanvas.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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.Expression.Interactions" />
  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.Interactivity">
  42. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.Interactivity.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="NLog">
  48. <HintPath>..\..\Packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  49. </Reference>
  50. <Reference Include="PresentationCore" />
  51. <Reference Include="PresentationFramework" />
  52. <Reference Include="System" />
  53. <Reference Include="System.ComponentModel.Composition" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Windows.Interactivity" />
  56. <Reference Include="System.Xaml" />
  57. <Reference Include="System.Xml.Linq" />
  58. <Reference Include="System.Data.DataSetExtensions" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Xml" />
  62. <Reference Include="WindowsBase" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="Arrow.cs" />
  66. <Compile Include="Connector.cs" />
  67. <Compile Include="Node.cs" />
  68. <Compile Include="TreeCanvasModule.cs" />
  69. <Compile Include="TreeCanvasView.xaml.cs">
  70. <DependentUpon>TreeCanvasView.xaml</DependentUpon>
  71. </Compile>
  72. <Compile Include="TreeCanvasViewModel.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Folder Include="Properties\" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Page Include="TreeCanvasView.xaml">
  79. <SubType>Designer</SubType>
  80. <Generator>MSBuild:Compile</Generator>
  81. </Page>
  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. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="Packages.config" />
  91. </ItemGroup>
  92. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  93. <PropertyGroup>
  94. <PreBuildEvent>$(SolutionDir)\Tools\Nuget.exe install $(ProjectDir)Packages.config -o $(SolutionDir)Packages</PreBuildEvent>
  95. </PropertyGroup>
  96. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  97. Other similar extension points exist, see Microsoft.Common.targets.
  98. <Target Name="BeforeBuild">
  99. </Target>
  100. <Target Name="AfterBuild">
  101. </Target>
  102. -->
  103. </Project>