-
-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (32 loc) · 1.44 KB
/
Directory.Build.props
File metadata and controls
32 lines (32 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project>
<PropertyGroup>
<VersionPrefix>11.3.12</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Wiesław Šoltés</Authors>
<Company>Wiesław Šoltés</Company>
<Description>A docking layout system.</Description>
<Copyright>Copyright © Wiesław Šoltés 2026</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/wieslawsoltes/Dock</PackageProjectUrl>
<PackageTags>dock;docking;layout;avalonia</PackageTags>
</PropertyGroup>
<PropertyGroup>
<AnalysisLevel>latest</AnalysisLevel>
<LangVersion>13</LangVersion>
</PropertyGroup>
<PropertyGroup>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup>
<DockEnableGeneratedAppInitializeComponent>false</DockEnableGeneratedAppInitializeComponent>
</PropertyGroup>
<PropertyGroup Condition="'$(DockEnableGeneratedAppInitializeComponent)' == 'true'">
<DefineConstants>$(DefineConstants);DOCK_USE_GENERATED_APP_INITIALIZE_COMPONENT</DefineConstants>
</PropertyGroup>
<ItemGroup Label="PackageIcon">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)build/Assets/Icon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
</Project>