qdr.fnd.core.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 Quadarax</Copyright>
  15. <PackageIcon>quadarax_dll.png</PackageIcon>
  16. <PackageTags>QDR;FND;CORE</PackageTags>
  17. <AssemblyVersion>0.0.2.0</AssemblyVersion>
  18. <FileVersion>0.0.2.0</FileVersion>
  19. <Version>0.0.2.0-alpha</Version>
  20. <PackageReleaseNotes>Date:27.9.2023
  21. - extends Thread/LoopWorker to support external ansync iteration body expression
  22. - fix Thread/ContiguousWorker to support external ansync iteration body expression
  23. - add Thread/BasicWorkerContext and extends IWorkerContext to stores CancellationToken
  24. - extends Thread/AbstractWorker to work with default IWorkerContext, make public AbstractWorker.Context
  25. - add Json/Extensions/JsonDocumentExt.Diff function to compare two JsonDocument
  26. - extends Logging/ConsoleLogger to support exclude filter in initialization
  27. - add Collections/LockedList to support thread safe listng
  28. - extends Thread/LoopWorker to support custom overlaping iterations
  29. - add Value/StringPatternComparer to equals string and simple pattern expression
  30. - add Value/Extensions/EnumerableExt.WhereEquals to use where equals with comparer provided
  31. - add Value/Extensions/StringExt.Like to use string pattern comparer
  32. - fix quality CA
  33. - minor fixes</PackageReleaseNotes>
  34. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  35. <Nullable>enable</Nullable>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Content Include="releasenotes.md">
  39. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  40. </Content>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Folder Include="Data\Extensions\" />
  44. <Folder Include="Mapper\" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <None Include="..\quadarax_dll.png">
  48. <Pack>True</Pack>
  49. <PackagePath>\</PackagePath>
  50. </None>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <PackageReference Include="System.IO.Abstractions" Version="19.2.69" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <None Update="releasenotes.md">
  57. <Pack>True</Pack>
  58. <PackagePath>\</PackagePath>
  59. </None>
  60. </ItemGroup>
  61. </Project>