Infrastructure.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{9B070374-98A3-4122-85DD-CF5AB5E4B503}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>Quadarax.Foundation.Infrastructure</RootNamespace>
  10. <AssemblyName>QDR.FND.Infrastructure</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <ApplicationIcon>quadarax_dll.ico</ApplicationIcon>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <StartupObject />
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  43. <HintPath>packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
  44. </Reference>
  45. <Reference Include="QDR.FND.Common, Version=1.0.0.7, Culture=neutral, PublicKeyToken=60b8fdcb29a015db, processorArchitecture=MSIL">
  46. <HintPath>packages\Quadarax.Foundation.Common.1.0.0.7\lib\net472\QDR.FND.Common.dll</HintPath>
  47. </Reference>
  48. <Reference Include="StructureMap, Version=4.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <HintPath>packages\StructureMap.4.7.1\lib\net45\StructureMap.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="GlobalContainer.cs" />
  62. <Compile Include="IModule.cs" />
  63. <Compile Include="Infra.cs" />
  64. <Compile Include="Layers\BusinessLayer.cs" />
  65. <Compile Include="Layers\DataLayer.cs" />
  66. <Compile Include="Layers\GlobalLayer.cs" />
  67. <Compile Include="Layers\Layer.cs" />
  68. <Compile Include="Layers\LayerClassificationEnum.cs" />
  69. <Compile Include="Layers\PresentationLayer.cs" />
  70. <Compile Include="Layers\ServiceLayer.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="App.config" />
  75. <None Include="create_package.ps1" />
  76. <None Include="packages.config" />
  77. <None Include="QDR.FND.Infrastructure.nuspec" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Content Include="quadarax_dll.ico" />
  81. <Content Include="ReleaseNote.txt" />
  82. </ItemGroup>
  83. <ItemGroup />
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. </Project>