TreeCanvas.csproj 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="Microsoft.Practices.Prism">
  35. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  36. </Reference>
  37. <Reference Include="Microsoft.Practices.Prism.Interactivity">
  38. <HintPath>..\..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  41. <HintPath>..\..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  42. </Reference>
  43. <Reference Include="NLog">
  44. <HintPath>..\..\Packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath>
  45. </Reference>
  46. <Reference Include="PresentationCore" />
  47. <Reference Include="PresentationFramework" />
  48. <Reference Include="System" />
  49. <Reference Include="System.ComponentModel.Composition" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Xaml" />
  52. <Reference Include="System.Xml.Linq" />
  53. <Reference Include="System.Data.DataSetExtensions" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. <Reference Include="WindowsBase" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="TreeCanvasModule.cs" />
  61. <Compile Include="TreeCanvasView.xaml.cs">
  62. <DependentUpon>TreeCanvasView.xaml</DependentUpon>
  63. </Compile>
  64. <Compile Include="TreeCanvasViewModel.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Folder Include="Properties\" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Page Include="TreeCanvasView.xaml">
  71. <SubType>Designer</SubType>
  72. <Generator>MSBuild:Compile</Generator>
  73. </Page>
  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="Packages.config" />
  83. </ItemGroup>
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. <PropertyGroup>
  86. <PreBuildEvent>$(SolutionDir)\Tools\Nuget.exe install $(ProjectDir)Packages.config -o $(SolutionDir)Packages</PreBuildEvent>
  87. </PropertyGroup>
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>