-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (34 loc) · 1.99 KB
/
Directory.Build.props
File metadata and controls
37 lines (34 loc) · 1.99 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
33
34
35
36
37
<Project>
<PropertyGroup>
<!-- Shared NuGet metadata inherited by every project in the repo. -->
<Authors>IoTSharp</Authors>
<Company>IoTSharp</Company>
<Copyright>Copyright © IoTSharp contributors</Copyright>
<PackageProjectUrl>https://github.com/IoTSharp/LVGLSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/IoTSharp/LVGLSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>lvgl128x128.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>lvgl;embedded;ui;winforms;cross-platform</PackageTags>
<!-- Canonical repository version used by project/package switching logic. -->
<LVGLSharpVersion>9.5.0</LVGLSharpVersion>
<!-- Default version; overridden by CI via -p:Version=... -->
<Version>$(LVGLSharpVersion)</Version>
<!-- Allows Debug builds to consume a published native package version
without forcing the whole repo version to match that feed entry. -->
<LVGLSharpNativePackageVersion Condition="'$(LVGLSharpNativePackageVersion)' == ''">$(LVGLSharpVersion)</LVGLSharpNativePackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<RestoreFallbackFolders></RestoreFallbackFolders>
<RestorePackagesPath>$(HOME)/.nuget/packages</RestorePackagesPath>
<NuGetPackageFolders>$(RestorePackagesPath)</NuGetPackageFolders>
</PropertyGroup>
<!-- Include the repo-level README in every NuGet package. -->
<ItemGroup Condition="'$(IsPackable)' != 'false' And Exists('$(MSBuildThisFileDirectory)README.md')">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup Condition="'$(IsPackable)' != 'false' And Exists('$(MSBuildThisFileDirectory)src/Share/lvgl128x128.png')">
<None Include="$(MSBuildThisFileDirectory)src/Share/lvgl128x128.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>