qdr.fnd.core.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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:12.3.2024
  21. - etends Data/TypedArgument to use null value and valuyeType at once
  22. - add constructor to Exceptions/CodeException to support parameter message
  23. - add generic class Exceptions/CodeException to work with enumeration codes and messages
  24. - update dependencies packages (System.IO.Abstractions)
  25. </PackageReleaseNotes>
  26. <PackageReadmeFile>releasenotes.md</PackageReadmeFile>
  27. <Nullable>enable</Nullable>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Content Include="releasenotes.md">
  31. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  32. </Content>
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Folder Include="Data\Extensions\" />
  36. <Folder Include="Mapper\" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <None Include="..\quadarax_dll.png">
  40. <Pack>True</Pack>
  41. <PackagePath>\</PackagePath>
  42. </None>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <PackageReference Include="System.IO.Abstractions" Version="20.0.28" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <None Update="releasenotes.md">
  49. <Pack>True</Pack>
  50. <PackagePath>\</PackagePath>
  51. </None>
  52. </ItemGroup>
  53. </Project>