@Workbench.csproj 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{60DDDF9B-507A-4665-8A5B-1F670005727F}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>_Workbench</RootNamespace>
  10. <AssemblyName>%40Workbench</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 Condition="'$(Configuration)' == 'Release'">
  36. <SignAssembly>true</SignAssembly>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)' == 'Release'">
  39. <AssemblyOriginatorKeyFile>quadarax_strong_name_key.pfx</AssemblyOriginatorKeyFile>
  40. </PropertyGroup>
  41. <PropertyGroup>
  42. <SignAssembly>true</SignAssembly>
  43. </PropertyGroup>
  44. <PropertyGroup>
  45. <AssemblyOriginatorKeyFile>quadarax_strong_name_key.pfx</AssemblyOriginatorKeyFile>
  46. </PropertyGroup>
  47. <ItemGroup>
  48. <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  49. <HintPath>..\Infrastructure\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
  50. </Reference>
  51. <Reference Include="QDR.FND.Common, Version=1.0.0.7, Culture=neutral, PublicKeyToken=60b8fdcb29a015db, processorArchitecture=MSIL">
  52. <HintPath>..\Infrastructure\packages\Quadarax.Foundation.Common.1.0.0.7\lib\net472\QDR.FND.Common.dll</HintPath>
  53. </Reference>
  54. <Reference Include="StructureMap, Version=4.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  55. <HintPath>..\Infrastructure\packages\StructureMap.4.7.1\lib\net45\StructureMap.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="System.Data.DataSetExtensions" />
  61. <Reference Include="Microsoft.CSharp" />
  62. <Reference Include="System.Data" />
  63. <Reference Include="System.Net.Http" />
  64. <Reference Include="System.Xml" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Layers\DefaultBusinessLayer.cs" />
  68. <Compile Include="Layers\DefaultDataLayer.cs" />
  69. <Compile Include="Layers\DefaultGlobalLayer.cs" />
  70. <Compile Include="Layers\Modules\IModBuss.cs" />
  71. <Compile Include="Layers\Modules\IModData.cs" />
  72. <Compile Include="Layers\Modules\IModGlobal.cs" />
  73. <Compile Include="Layers\Modules\ModBusiness.cs" />
  74. <Compile Include="Layers\Modules\ModData.cs" />
  75. <Compile Include="Layers\Modules\ModGlobal.cs" />
  76. <Compile Include="Layers\Modules\Module.cs" />
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. <Compile Include="Layers\TestLayers.cs" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="App.config" />
  83. <None Include="packages.config" />
  84. <None Include="quadarax_strong_name_key.pfx" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj">
  88. <Project>{9b070374-98a3-4122-85dd-cf5ab5e4b503}</Project>
  89. <Name>Infrastructure</Name>
  90. </ProjectReference>
  91. </ItemGroup>
  92. <ItemGroup />
  93. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  94. </Project>