Common.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>{6D9348FB-8C3D-4DFD-949B-414FC6BF2A22}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Quadarax.Foundation.Common</RootNamespace>
  11. <AssemblyName>QDR.FND.Common</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup>
  34. <ApplicationIcon>quadarax_dll.ico</ApplicationIcon>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <SignAssembly>true</SignAssembly>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <AssemblyOriginatorKeyFile>quadarax_strong_name_key.pfx</AssemblyOriginatorKeyFile>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Net.Http" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="Cache\Cache.cs" />
  54. <Compile Include="Cache\VolatileCache.cs" />
  55. <Compile Include="Console\ConsoleWriter.cs" />
  56. <Compile Include="Data\CsvHelper.cs" />
  57. <Compile Include="Data\Extensions\SqlCommandExt.cs" />
  58. <Compile Include="Log\Extensions\ObjectExt.cs" />
  59. <Compile Include="Log\ILogging.cs" />
  60. <Compile Include="Log\ILoggingProvider.cs" />
  61. <Compile Include="Log\Logging.cs" />
  62. <Compile Include="Log\Providers\AbstractLoggingProvider.cs" />
  63. <Compile Include="Log\Providers\DummyLoggingProvider.cs" />
  64. <Compile Include="Log\SeverityEnum.cs" />
  65. <Compile Include="Object\Singleton.cs" />
  66. <Compile Include="Object\WeakReference.cs" />
  67. <Compile Include="Reflection\TypePropertyLocator.cs" />
  68. <Compile Include="Value\Result.cs" />
  69. <Compile Include="Xml\Extensions\XmlNodeExt.cs" />
  70. <Compile Include="Xml\Extensions\XmlReaderExt.cs" />
  71. <Compile Include="Xml\Extensions\XPathNavigatorExt.cs" />
  72. <Compile Include="Object\DisposableObject.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="Security\Secure.cs" />
  75. </ItemGroup>
  76. <ItemGroup />
  77. <ItemGroup>
  78. <Content Include="quadarax_dll.ico" />
  79. <Content Include="ReleaseNote.txt" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="create_package.ps1" />
  83. <None Include="QDR.FND.Common.nuspec">
  84. <SubType>Designer</SubType>
  85. </None>
  86. <None Include="quadarax_strong_name_key.pfx" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. </Project>