-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDirectory.Build.Props
45 lines (40 loc) · 1.82 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project>
<PropertyGroup>
<NeutralLanguage>pt-BR</NeutralLanguage>
<Authors>Felipe Baltazar</Authors>
<PackageProjectUrl>https://github.com/felipebaltazar/Maui.ServerDrivenUI</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<IncludeSource>True</IncludeSource>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/felipebaltazar/Maui.ServerDrivenUI</RepositoryUrl>
<ServerDrivenUIPackageIcon>$(MSBuildThisFileDirectory)icon.png</ServerDrivenUIPackageIcon>
<ServerDrivenUILicenseFile>$(MSBuildThisFileDirectory)LICENSE</ServerDrivenUILicenseFile>
<PackageTags>serverdrivenui;maui;dotnet-maui;xaml;ios;android;server;driven;ui</PackageTags>
<Copyright>Copyright Felipe Baltazar 2024</Copyright>
<Description>
Server Driven UI library for dotnet MAUI. New features to be deployed on all platforms simultaneously via a backend change, without releasing new versions of the native apps.
</Description>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)$(PackageReadmeFile)"
Visible="False"
Pack="True"
PackagePath="" />
<None Include="$(ServerDrivenUIPackageIcon)"
Visible="False"
Pack="True"
PackagePath="" />
<None Include="$(ServerDrivenUILicenseFile)"
Visible="False"
Pack="True"
PackagePath="" />
<SourceRoot Include="$(MSBuildThisFileDirectory)" />
<PackageReference Include="Nerdbank.GitVersioning"
Version="3.5.107"
PrivateAssets="all" />
</ItemGroup>
</Project>