qdr.fnd.core.csproj.Backup.tmp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.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. - extends ParametrizedString to set parametr value.
  23. - update dependencies packages (System.IO.Abstractions)
  24. </PackageReleaseNotes>
  25. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  26. <Nullable>enable</Nullable>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Content Include="releasenotes.md">
  30. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  31. </Content>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Folder Include="Data\Extensions\" />
  35. <Folder Include="Mapper\" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <None Include="..\quadarax_dll.png">
  39. <Pack>True</Pack>
  40. <PackagePath>\</PackagePath>
  41. </None>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <PackageReference Include="System.IO.Abstractions" Version="21.2.1" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <None Update="releasenotes.md">
  48. <Pack>True</Pack>
  49. <PackagePath>\</PackagePath>
  50. </None>
  51. </ItemGroup>
  52. </Project>