qdr.fnd.core.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <SignAssembly>true</SignAssembly>
  5. <AssemblyOriginatorKeyFile>..\bo_strong_key_pair.snk</AssemblyOriginatorKeyFile>
  6. <DelaySign>false</DelaySign>
  7. <RootNamespace>Quadarax.Foundation.Core</RootNamespace>
  8. <ApplicationIcon>..\quadarax_dll.ico</ApplicationIcon>
  9. <Title>Quadarax.Foundation.Core</Title>
  10. <Authors>Dalibor Votruba</Authors>
  11. <Company>Quadarax</Company>
  12. <Product>Quadarax.Foundation</Product>
  13. <Description>Core library with general pattern implementations and patterns</Description>
  14. <Copyright>Copyright © 2023,2024 Quadarax</Copyright>
  15. <PackageIcon>quadarax_dll.png</PackageIcon>
  16. <PackageTags>QDR;FND;CORE</PackageTags>
  17. <AssemblyVersion>0.0.5.0</AssemblyVersion>
  18. <FileVersion>0.0.5.0</FileVersion>
  19. <Version>0.0.5.0-alpha</Version>
  20. <PackageReleaseNotes>Date:26.9.2024
  21. - improve class CsvHelper to support with quoted values, add operation to write DataTable to CSV file.
  22. - update dependencies packages (System.IO.Abstractions)
  23. </PackageReleaseNotes>
  24. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  25. <Nullable>enable</Nullable>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <Content Include="releasenotes.md">
  29. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  30. </Content>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Folder Include="Data\Extensions\" />
  34. <Folder Include="Mapper\" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <None Include="..\quadarax_dll.png">
  38. <Pack>True</Pack>
  39. <PackagePath>\</PackagePath>
  40. </None>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <PackageReference Include="System.IO.Abstractions" Version="21.0.29" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <None Update="releasenotes.md">
  47. <Pack>True</Pack>
  48. <PackagePath>\</PackagePath>
  49. </None>
  50. </ItemGroup>
  51. </Project>