qdr.fnd.core.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.4.0</AssemblyVersion>
  18. <FileVersion>0.0.4.0</FileVersion>
  19. <Version>0.0.4.0-alpha</Version>
  20. <PackageReleaseNotes>Date:24.3.2024
  21. - add Value/Enumeration class with method GetRandom
  22. - add Thread/MoshPit class to process random operations
  23. - extends Data/IError add Timestamp property, Error implementation modified
  24. - extends Data/TypedArgument to use null value and valuyeType at once, add Value setter
  25. - add constructor to Exceptions/CodeException to support parameter message
  26. - add generic class Exceptions/CodeException to work with enumeration codes and messages
  27. - update dependencies packages (System.IO.Abstractions)
  28. </PackageReleaseNotes>
  29. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  30. <Nullable>enable</Nullable>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Content Include="releasenotes.md">
  34. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  35. </Content>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Folder Include="Data\Extensions\" />
  39. <Folder Include="Mapper\" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <None Include="..\quadarax_dll.png">
  43. <Pack>True</Pack>
  44. <PackagePath>\</PackagePath>
  45. </None>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <PackageReference Include="System.IO.Abstractions" Version="21.0.2" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <None Update="releasenotes.md">
  52. <Pack>True</Pack>
  53. <PackagePath>\</PackagePath>
  54. </None>
  55. </ItemGroup>
  56. </Project>