qdr.fnd.core.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. - fix quality CA
  26. - minor fixes</PackageReleaseNotes>
  27. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  28. <Nullable>enable</Nullable>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Content Include="releasenotes.md">
  32. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  33. </Content>
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Folder Include="Data\Extensions\" />
  37. <Folder Include="Mapper\" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <None Include="..\quadarax_dll.png">
  41. <Pack>True</Pack>
  42. <PackagePath>\</PackagePath>
  43. </None>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <PackageReference Include="System.IO.Abstractions" Version="19.2.69" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <None Update="releasenotes.md">
  50. <Pack>True</Pack>
  51. <PackagePath>\</PackagePath>
  52. </None>
  53. </ItemGroup>
  54. </Project>