Infrastructure.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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\</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\</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, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  40. <HintPath>..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.ComponentModel.Composition" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="WindowsBase" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="AutoPopulateExportedViewsBehavior.cs" />
  49. <Compile Include="IViewRegionRegistration.cs" />
  50. <Compile Include="ViewExportAttribute.cs" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Folder Include="Properties\" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <None Include="Packages.config" />
  57. </ItemGroup>
  58. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  59. <PropertyGroup>
  60. <PreBuildEvent>
  61. </PreBuildEvent>
  62. </PropertyGroup>
  63. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  64. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  65. Other similar extension points exist, see Microsoft.Common.targets.
  66. <Target Name="BeforeBuild">
  67. </Target>
  68. <Target Name="AfterBuild">
  69. </Target>
  70. -->
  71. </Project>