-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.props
29 lines (24 loc) · 1 KB
/
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
24
25
26
27
28
29
<Project>
<PropertyGroup>
<VersionPrefix>1.1.265</VersionPrefix>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Authors>davidxuang</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Fluent;UI;Icon</PackageTags>
<RepositoryUrl>https://github.com/davidxuang/FluentIcons</RepositoryUrl>
<AndroidSdkDirectory Condition="'$(ANDROID_SDK_ROOT)' != ''">$(ANDROID_SDK_ROOT)</AndroidSdkDirectory>
</PropertyGroup>
<PropertyGroup Condition="$(VERSION_SUFFIX) != ''">
<VersionSuffix>$(VERSION_SUFFIX)</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\Assets\Icon.png" Pack="true" PackagePath="" />
<None Include="..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>