Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comestic fix to NuGet packages #220

Merged
merged 1 commit into from
Oct 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<!-- NuGet Specs -->
<PropertyGroup>
<Version>0.25.0</Version>
<Description>Added "CurrentPage" and "CurrentPageChanged" to TabbedPage and CarouselPage (https://github.com/fsprojects/Fabulous/pull/215)
Added support for byte array with Image.Source (https://github.com/fsprojects/Fabulous/pull/217)
Improved exception protection in LiveUpdate (https://github.com/fsprojects/Fabulous/pull/214)
Fixed an issue in LiveUpdate preventing the use of some kinds of discriminated unions (https://github.com/fsprojects/Fabulous/pull/213)</Description>
<Authors>Fabulous Contributors</Authors>
<PackageVersion>0.25.0</PackageVersion>
<PackageReleaseNotes>Added "CurrentPage" and "CurrentPageChanged" to TabbedPage and CarouselPage (https://github.com/fsprojects/Fabulous/pull/215)
Added support for byte array with Image.Source (https://github.com/fsprojects/Fabulous/pull/217)
Improved exception protection in LiveUpdate (https://github.com/fsprojects/Fabulous/pull/214)
Fixed an issue in LiveUpdate preventing the use of some kinds of discriminated unions (https://github.com/fsprojects/Fabulous/pull/213)</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/fsprojects/Fabulous/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Target.create "UpdateVersion" (fun _ ->
let props = "./Directory.Build.props"
Xml.loadDoc props
|> Xml.replaceXPath "//Version/text()" release.AssemblyVersion
|> Xml.replaceXPath "//Description/text()" (String.toLines release.Notes)
|> Xml.replaceXPath "//PackageReleaseNotes/text()" (String.toLines release.Notes)
|> Xml.replaceXPath "//PackageVersion/text()" release.NugetVersion
|> Xml.saveDoc props

Expand Down
1 change: 1 addition & 0 deletions src/Fabulous.Core/Fabulous.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<PackageId>Fabulous.Core</PackageId>
<Description>F# Functional App Dev Framework</Description>
</PropertyGroup>
<ItemGroup>
<Compile Include="ViewElement.fs" />
Expand Down
1 change: 1 addition & 0 deletions src/Fabulous.LiveUpdate/Fabulous.LiveUpdate.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<PackageId>Fabulous.LiveUpdate</PackageId>
<Description>F# Functional App Dev Framework Live Update</Description>
<PackageTags>LiveUpdate;Android;iOS</PackageTags>
</PropertyGroup>
<ItemGroup>
Expand Down