| 123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project>
- <!-- required framework and runtime version: all projects shall use .NET 6 -->
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <RuntimeFrameworkVersion>6.0.7</RuntimeFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup>
- <!--
- Under .NET 6 the reference assembly generation fails for projects utilizing
- the DO weaver. In fact, it's some incompatibility of Mono.Cecil.
- See also: https://stackoverflow.com/a/69941898/245183
- -->
- <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
- </PropertyGroup>
- <!-- version and copyright information -->
- <PropertyGroup>
- <Company>Quadarax</Company>
- <Product>QLiberace</Product>
- <Copyright>Copyright © 2022 Quadarax</Copyright>
- <AssemblyVersion>0.0.0.0</AssemblyVersion>
- <FileVersion>0.0.0.0</FileVersion>
- <InformationalVersion>$(Configuration)</InformationalVersion>
- </PropertyGroup>
- </Project>
|