-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Directory.Build.props
23 lines (23 loc) · 950 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<!--todo: add mono-->
<TargetFramework>net8.0</TargetFramework>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>11.2.1</VersionPrefix>
<Authors>https://github.com/jinek/Consolonia/graphs/contributors</Authors>
<Description>Text User Interface implementation of Avalonia UI (GUI Framework)</Description>
<Copyright>Copyright © Evgeny Gorbovoy 2021 - 2022</Copyright>
<PackageIcon>Icon.png</PackageIcon>
<NoWarn>AVA3001</NoWarn>
<IsPackable>False</IsPackable>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.2.1</AvaloniaVersion>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' != 'false'">
<None Include="$(SolutionDir)/../Icon.png" Pack="True" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>