Infrastructure.csproj 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>App.Infrastructure</RootNamespace>
  12. <AssemblyName>Infrastructure</AssemblyName>
  13. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\CSharp\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  17. <TargetFrameworkProfile />
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\..\Bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <Prefer32Bit>false</Prefer32Bit>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\..\Bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Microsoft.Practices.Prism.Composition">
  40. <HintPath>..\..\packages\Prism.Composition.5.0.0\lib\NET45\Microsoft.Practices.Prism.Composition.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.Practices.Prism.Interactivity, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\..\packages\Prism.Interactivity.5.0.0\lib\NET45\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  47. <HintPath>..\..\packages\Prism.MEFExtensions.5.0.0\lib\NET45\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Microsoft.Practices.Prism.Mvvm, Version=1.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  50. <SpecificVersion>False</SpecificVersion>
  51. <HintPath>..\..\packages\Prism.Mvvm.1.1.1\lib\net45\Microsoft.Practices.Prism.Mvvm.dll</HintPath>
  52. </Reference>
  53. <Reference Include="Microsoft.Practices.Prism.Mvvm.Desktop, Version=1.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  54. <SpecificVersion>False</SpecificVersion>
  55. <HintPath>..\..\packages\Prism.Mvvm.1.1.1\lib\net45\Microsoft.Practices.Prism.Mvvm.Desktop.dll</HintPath>
  56. </Reference>
  57. <Reference Include="Microsoft.Practices.Prism.PubSubEvents, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  58. <SpecificVersion>False</SpecificVersion>
  59. <HintPath>..\..\packages\Prism.PubSubEvents.1.1.2\lib\portable-sl5+windowsphone8+windows8+net40+wpa81\Microsoft.Practices.Prism.PubSubEvents.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Microsoft.Practices.Prism.SharedInterfaces, Version=1.1.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  62. <SpecificVersion>False</SpecificVersion>
  63. <HintPath>..\..\packages\Prism.Mvvm.1.1.1\lib\net45\Microsoft.Practices.Prism.SharedInterfaces.dll</HintPath>
  64. </Reference>
  65. <Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  66. <SpecificVersion>False</SpecificVersion>
  67. <HintPath>..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
  68. </Reference>
  69. <Reference Include="System" />
  70. <Reference Include="System.ComponentModel.Composition" />
  71. <Reference Include="System.Core" />
  72. <Reference Include="WindowsBase" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="AutoPopulateExportedViewsBehavior.cs" />
  76. <Compile Include="IViewRegionRegistration.cs" />
  77. <Compile Include="ViewExportAttribute.cs" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Folder Include="Properties\" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <None Include="app.config" />
  84. <None Include="Packages.config" />
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <PropertyGroup>
  88. <PreBuildEvent>
  89. </PreBuildEvent>
  90. </PropertyGroup>
  91. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  92. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  93. Other similar extension points exist, see Microsoft.Common.targets.
  94. <Target Name="BeforeBuild">
  95. </Target>
  96. <Target Name="AfterBuild">
  97. </Target>
  98. -->
  99. </Project>