Version.props 968 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project>
  3. <!-- required framework and runtime version: all projects shall use .NET 6 -->
  4. <PropertyGroup>
  5. <TargetFramework>net6.0</TargetFramework>
  6. <RuntimeFrameworkVersion>6.0.7</RuntimeFrameworkVersion>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <!--
  10. Under .NET 6 the reference assembly generation fails for projects utilizing
  11. the DO weaver. In fact, it's some incompatibility of Mono.Cecil.
  12. See also: https://stackoverflow.com/a/69941898/245183
  13. -->
  14. <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
  15. </PropertyGroup>
  16. <!-- version and copyright information -->
  17. <PropertyGroup>
  18. <Company>Quadarax</Company>
  19. <Product>QLiberace</Product>
  20. <Copyright>Copyright © 2022 Quadarax</Copyright>
  21. <AssemblyVersion>0.0.0.0</AssemblyVersion>
  22. <FileVersion>0.0.0.0</FileVersion>
  23. <InformationalVersion>$(Configuration)</InformationalVersion>
  24. </PropertyGroup>
  25. </Project>