Infrastructure.csproj 4.6 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>{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.5</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">
  50. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Microsoft.Practices.Prism.Mvvm.Desktop">
  53. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.Desktop.dll</HintPath>
  54. </Reference>
  55. <Reference Include="Microsoft.Practices.Prism.PubSubEvents">
  56. <HintPath>..\..\packages\Prism.PubSubEvents.1.0.0\lib\portable-sl4+wp7+windows8+net40\Microsoft.Practices.Prism.PubSubEvents.dll</HintPath>
  57. </Reference>
  58. <Reference Include="Microsoft.Practices.Prism.SharedInterfaces">
  59. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.SharedInterfaces.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  62. <SpecificVersion>False</SpecificVersion>
  63. <HintPath>..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
  64. </Reference>
  65. <Reference Include="System" />
  66. <Reference Include="System.ComponentModel.Composition" />
  67. <Reference Include="System.Core" />
  68. <Reference Include="WindowsBase" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="AutoPopulateExportedViewsBehavior.cs" />
  72. <Compile Include="IViewRegionRegistration.cs" />
  73. <Compile Include="ViewExportAttribute.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Folder Include="Properties\" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <None Include="app.config" />
  80. <None Include="Packages.config" />
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <PropertyGroup>
  84. <PreBuildEvent>
  85. </PreBuildEvent>
  86. </PropertyGroup>
  87. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  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>