Infrastructure.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Infrastructure</RootNamespace>
  12. <AssemblyName>Infrastructure</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="Microsoft.Practices.ServiceLocation">
  44. <HintPath>..\Packages\CommonServiceLocator.1.0\lib\NET35\Microsoft.Practices.ServiceLocation.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="System.Data" />
  55. <Reference Include="System.Xml" />
  56. <Reference Include="WindowsBase" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="AutoPopulateExportedViewsBehavior.cs" />
  60. <Compile Include="IViewRegionRegistration.cs" />
  61. <Compile Include="ViewExportAttribute.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Folder Include="Properties\" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <None Include="Packages.config" />
  68. </ItemGroup>
  69. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  70. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  71. Other similar extension points exist, see Microsoft.Common.targets.
  72. <Target Name="BeforeBuild">
  73. </Target>
  74. <Target Name="AfterBuild">
  75. </Target>
  76. -->
  77. </Project>