Skip to content

Commit 9e5b80d

Browse files
authored
Merge pull request #352 from dansiegel/dev/ds/package-readme
Adding Package ReadMe
2 parents 7f7c43b + d9663ee commit 9e5b80d

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

Directory.Build.targets

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
<NoWarn>$(NoWarn);NU1903</NoWarn>
55
</PropertyGroup>
66

7+
<PropertyGroup Condition="Exists('ReadMe.md')">
8+
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
9+
</PropertyGroup>
10+
11+
<ItemGroup Condition="Exists('ReadMe.md')">
12+
<None Include="ReadMe.md" Pack="true" PackagePath="/ReadMe.md" />
13+
</ItemGroup>
14+
715
<!--<Target Name="BundlePackageBuildPropsAndTargets"
816
BeforeTargets="Build;CoreBuild;CoreCompile;Pack">
917
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Mobile.BuildTools.AppSettings
2+
3+
The Mobile.BuildTools.AppSettings is a re-invented implementation of the Classic Mobile.BuildTools that was originally generated as part of the Mobile.BuildTools project. This new implementation is significantly more powerful with an improved ability to control properties in Cross Compiled projects like those found in .NET MAUI and Uno Platform projects. This new implementation also provides an improved ability to bring in proeprties based on Prefixes and allows fuzzy matching for Configurations.

src/Mobile.BuildTools.Core/ReadMe.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Mobile.BuildTools.Core
2+
3+
The Mobile.BuildTools.Core provides the Core MSBuild Targets used by the Mobile.BuildTools. This project is not intended to be used directly, but rather as a dependency for other Mobile.BuildTools Packages.

0 commit comments

Comments
 (0)