Skip to content

Commit

Permalink
Merge pull request #1031 from fabulous-dev/fsprojects-to-fabulousdev
Browse files Browse the repository at this point in the history
Update fsprojects to fabulous-dev following repo migration
  • Loading branch information
TimLariviere authored Dec 21, 2022
2 parents a882cd3 + d1da658 commit 84f4321
Show file tree
Hide file tree
Showing 24 changed files with 41 additions and 41 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
dotnet pack ${TEMPLATE_PROJ} -p:Version=${VERSION}-nightly-${GITHUB_RUN_ID} -p:IsNightlyBuild=true --configuration Release --output nupkgs
- name: Push
run: |
dotnet nuget push "nupkgs/*.nupkg" -s https://nuget.pkg.github.com/fsprojects/index.json -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
dotnet nuget push "nupkgs/*.nupkg" -s https://nuget.pkg.github.com/fabulous-dev/index.json -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
maui:
name: Fabulous.MauiControls
Expand Down Expand Up @@ -64,4 +64,4 @@ jobs:
dotnet pack ${TEMPLATE_PROJ} -p:Version=${VERSION}-nightly-${GITHUB_RUN_ID} -p:IsNightlyBuild=true --configuration Release --output nupkgs
- name: Push
run: |
dotnet nuget push "nupkgs/*.nupkg" -s https://nuget.pkg.github.com/fsprojects/index.json -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
dotnet nuget push "nupkgs/*.nupkg" -s https://nuget.pkg.github.com/fabulous-dev/index.json -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

*F# Functional App Development, using declarative dynamic UI.*

[![build](https://github.com/fsprojects/Fabulous/actions/workflows/build.yml/badge.svg)](https://github.com/fsprojects/Fabulous/actions/workflows/dotnet.yml) [![Fabulous.XamarinForms NuGet version](https://badge.fury.io/nu/Fabulous.XamarinForms.svg)](https://badge.fury.io/nu/Fabulous.XamarinForms) [![Discord](https://img.shields.io/discord/716980335593914419?label=discord&logo=discord)](https://discord.gg/bpTJMbSSYK)
[![build](https://github.com/fabulous-dev/Fabulous/actions/workflows/build.yml/badge.svg)](https://github.com/fabulous-dev/Fabulous/actions/workflows/dotnet.yml) [![Fabulous.XamarinForms NuGet version](https://badge.fury.io/nu/Fabulous.XamarinForms.svg)](https://badge.fury.io/nu/Fabulous.XamarinForms) [![Discord](https://img.shields.io/discord/716980335593914419?label=discord&logo=discord)](https://discord.gg/bpTJMbSSYK)

Never write a ViewModel class again! Conquer the world with clean dynamic UIs!

Expand Down
6 changes: 3 additions & 3 deletions docs/content/en/v1/api/controls/webview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ View.ContentPage(
title ="WebView",
content =
View.WebView(
source = UrlWebViewSource.op_Implicit "https://fsprojects.github.io/Fabulous/Fabulous.XamarinForms/"
source = UrlWebViewSource.op_Implicit "https://fabulous-dev.github.io/Fabulous/Fabulous.XamarinForms/"
)
)
```
Expand All @@ -36,7 +36,7 @@ View.ContentPage(
View.WebView(
backgroundColor = style.ViewColor,
margin = style.Thickness,
source = UrlWebViewSource.op_Implicit "https://fsprojects.github.io/Fabulous/Fabulous.XamarinForms/"
source = UrlWebViewSource.op_Implicit "https://fabulous-dev.github.io/Fabulous/Fabulous.XamarinForms/"
)
)
```
Expand All @@ -51,7 +51,7 @@ See also:
`WebView` is a view for displaying web and HTML content in your app:

```fs
let fabulousSite = "https://fsprojects.github.io/Fabulous/Fabulous.XamarinForms/"
let fabulousSite = "https://fabulous-dev.github.io/Fabulous/Fabulous.XamarinForms/"
View.WebView(
source = UrlWebViewSource.op_Implicit fabulousSite,
backgroundColor = Color.Red,
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/v1/api/navigation.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ let view model dispatch =

See also

* [The `AllControls` sample](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/AllControls/AllControls/AllControls.fs)
* [The `AllControls` sample](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/AllControls/AllControls/AllControls.fs)
2 changes: 1 addition & 1 deletion docs/content/en/v1/api/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ View.Grid([

1. If no previous element can be reused, a new one is created

Note that old keyed elements that didn't had a matching key in the new list will be destroyed instead of being reused by new unkeyed elements to help developers avoid undesired animations, such as fade-in/fade-out on Button Text changes on iOS ([#308](https://github.com/fsprojects/Fabulous/issues/308)) or ripple effects on Android Button.
Note that old keyed elements that didn't had a matching key in the new list will be destroyed instead of being reused by new unkeyed elements to help developers avoid undesired animations, such as fade-in/fade-out on Button Text changes on iOS ([#308](https://github.com/fabulous-dev/Fabulous/issues/308)) or ripple effects on Android Button.

In the end, controls that weren't reused are destroyed.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/v1/api/popups.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let update (msg : Msg) (model : Model) =

_Why don't we add a Fabulous wrapper for those?_
Doing so would only end up duplicating the existing methods and compel us to maintain these in sync with Xamarin.Forms.
See [Pull Request #147](https://github.com/fsprojects/Fabulous/pull/147) for more information
See [Pull Request #147](https://github.com/fabulous-dev/Fabulous/pull/147) for more information

See also:

Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/v1/extensions/ffimageloading.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ See also:

- [Interface Objects](view-interface-objects.html)
- [The FFImageLoading wiki](https://github.com/luberda-molinet/FFImageLoading/wiki)
- [Source for the FFImageLoading extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/FFImageLoading/CachedImage.fs)
- [Source for the FFImageLoading extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/FFImageLoading/CachedImage.fs)
- [Source of FFImageLoading](https://github.com/luberda-molinet/FFImageLoading)
- [Defining Extensions](view-a-extensions.html)
2 changes: 1 addition & 1 deletion docs/content/en/v1/extensions/skiasharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ See also:

* [Interface Objects](view-interface-objects.html).
* [Using SkiaSharp in Xamarin.Forms](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/graphics/skiasharp/).
* [Source for the SkiaSharp extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/SkiaSharp/SkiaSharp.fs)
* [Source for the SkiaSharp extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/SkiaSharp/SkiaSharp.fs)
* [Defining Extensions](view-a-extensions.html)
2 changes: 1 addition & 1 deletion docs/content/en/v1/extensions/videomanager.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ See also:

* [Interface Objects](view-interface-objects.html).
* [Using MediaManager for Xamarin](https://devblogs.microsoft.com/xamarin/play-audio-and-video-with-the-mediamanager-plugin-for-xamarin/).
* [Source for the VideoManager extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/VideoManager/VideoManager.fs)
* [Source for the VideoManager extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/VideoManager/VideoManager.fs)
* [Source for the Xamarin MediaManager](https://github.com/martijn00/XamarinMediaManager)
* [Defining Extensions](view-a-extensions.html)
2 changes: 1 addition & 1 deletion docs/content/en/v1/extensions/xamarinforms-maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ See also:

* [Interface Objects](view-interface-objects.html).
* [Working with Maps](https://developer.xamarin.com/samples/xamarin-forms/WorkingWithMaps).
* [Source for the Maps extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/Maps/Xamarin.Forms.Maps.fs)
* [Source for the Maps extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/Maps/Xamarin.Forms.Maps.fs)
* [Defining Extensions](view-a-extensions.html)
12 changes: 6 additions & 6 deletions docs/content/en/v1/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,21 +168,21 @@ Some advantages of using an immutable model are:

### Samples

The sample [CounterApp](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/CounterApp/CounterApp/CounterApp.fs) contains a slightly larger example of Button/Label/Slider elements.
The sample [CounterApp](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/CounterApp/CounterApp/CounterApp.fs) contains a slightly larger example of Button/Label/Slider elements.

The sample [TicTacToe](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/TicTacToe/TicTacToe/TicTacToe.fs) contains examples of the Grid and Image elements.
The sample [TicTacToe](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/TicTacToe/TicTacToe/TicTacToe.fs) contains examples of the Grid and Image elements.

The sample [AllControls](https://github.com/fsprojects/Fabulous/tree/v1.0/Fabulous.XamarinForms/samples/AllControls/AllControls/Samples) contains examples of instantiating most elements in `Xamarin.Forms.Core`.
The sample [AllControls](https://github.com/fabulous-dev/Fabulous/tree/v1.0/Fabulous.XamarinForms/samples/AllControls/AllControls/Samples) contains examples of instantiating most elements in `Xamarin.Forms.Core`.

The sample [Calculator](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/Calculator/Calculator/Calculator.fs) ([original external sample](https://github.com/nosami/Elmish.Calculator/)) is a small calculator app.
The sample [Calculator](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/Calculator/Calculator/Calculator.fs) ([original external sample](https://github.com/nosami/Elmish.Calculator/)) is a small calculator app.

The external sample [PocketPiggyBank](https://github.com/jimbobbennett/PocketPiggyBank) is a small client-server app with login authentication. (Note: because this is an external sample it may not be up-to-date with the latest version of this library.)

The external sample [FabulousContacts](https://github.com/TimLariviere/FabulousContacts) is a multi-page contacts app featuring maps, group-lists and cross-page messages. (Note: because this is an external sample it may not be up-to-date with the latest version of this library.)

The external sample [FabulousPlanets](https://github.com/TimLariviere/FabulousPlanets) is a multi-page app featuring facts on the planets in the Solar System. It uses Urho3D and Fabulous (Note: because this is an external sample it may not be up-to-date with the latest version of this library.)

The external sample [Fabulous + GraphQL Type Provider](https://github.com/fsprojects/FSharp.Data.GraphQL/tree/dev/samples/star-wars-fabulous-client) is a small app that demonstrates how to use the type provider for GraphQL [FSharp.Data.GraphQL](https://github.com/fsprojects/FSharp.Data.GraphQL).
The external sample [Fabulous + GraphQL Type Provider](https://github.com/fabulous-dev/FSharp.Data.GraphQL/tree/dev/samples/star-wars-fabulous-client) is a small app that demonstrates how to use the type provider for GraphQL [FSharp.Data.GraphQL](https://github.com/fabulous-dev/FSharp.Data.GraphQL).

See also the curated list [Awesome Fabulous](https://github.com/jimbobbennett/Awesome-Fabulous).

Expand Down Expand Up @@ -220,4 +220,4 @@ Presentation: Building mobile apps with F# using Xamarin - Jim Bennett - Xamarin

Please contribute to this library through issue reports, pull requests, code reviews and discussion.

* [Submit a fix to this guide](https://github.com/fsprojects/Fabulous/tree/master/docs)
* [Submit a fix to this guide](https://github.com/fabulous-dev/Fabulous/tree/master/docs)
2 changes: 1 addition & 1 deletion docs/content/en/v1/tutorials/dev-pitfalls.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ As of January 2021, here is the support level we noticed for the various IDEs:
Works perfectly out of the box with Visual Studio 16.8 or newer.

**Known issues**:
- Android projects might fail to build because of [an issue with `Xamarin.Android.FSharp.ResourceProvider`](https://github.com/xamarin/Xamarin.Android.FSharp.ResourceProvider/issues/9). A [known workaround](https://github.com/fsprojects/Fabulous/issues/813#issuecomment-726210183) is to remove `System` and `System.Numerics` from the Android project references.
- Android projects might fail to build because of [an issue with `Xamarin.Android.FSharp.ResourceProvider`](https://github.com/xamarin/Xamarin.Android.FSharp.ResourceProvider/issues/9). A [known workaround](https://github.com/fabulous-dev/Fabulous/issues/813#issuecomment-726210183) is to remove `System` and `System.Numerics` from the Android project references.
This issue only affects VS 16.8. So lower versions will require `System` and `System.Numerics` to build.

- iOS projects may fail after updating FSharp.Core. You will see an exception about a missing ValueOption type. This is caused by VS making a breaking change to the iOS fsproj file.
Expand Down
4 changes: 2 additions & 2 deletions docs/content/en/v1/tutorials/dev-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let init () =
```

Here we can make sure that the default state stays exact throughout the life of the project.
So using our favorite unit test framework (here we use [FsUnit](https://fsprojects.github.io/FsUnit/) for this example), we can write a test that will check if the value returned by `init` is the one we expect.
So using our favorite unit test framework (here we use [FsUnit](https://fabulous-dev.github.io/FsUnit/) for this example), we can write a test that will check if the value returned by `init` is the one we expect.

```fs
[<Test>]
Expand Down Expand Up @@ -212,4 +212,4 @@ let ``Clicking the button Increment should send the message Increment``() =

## See also

- [CounterApp.Tests sample](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/CounterApp/CounterApp.Tests/Tests.fs)
- [CounterApp.Tests sample](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/samples/CounterApp/CounterApp.Tests/Tests.fs)
6 changes: 3 additions & 3 deletions docs/content/en/v1/tutorials/how-to.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The following additional view elements are available as pre-built nuget librarie
To use other Xamarin.Forms controls, a small amount of wrapper code must
be written to convert the control to an Fabulous view element.

> Please consider contributing your extensions to [this repository](https://github.com/fsprojects/Fabulous/tree/master/Fabulous.XamarinForms/extensions).
> Please consider contributing your extensions to [this repository](https://github.com/fabulous-dev/Fabulous/tree/master/Fabulous.XamarinForms/extensions).
The basic shape of an extension view component is shown below. Here we assume the Xamarin.Forms control defines one extra element
called ABC deriving from existing element kind BASE, and that ABC has one additional
Expand Down Expand Up @@ -248,5 +248,5 @@ See also:
* [Core Elements](view-elements.html)
* [Maps](view-maps.html)
* [SkiaSharp](view-skiasharp.html)
* [Source for the Maps extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/Maps/Xamarin.Forms.Maps.fs)
* [Source for the SkiaSharp extension](https://github.com/fsprojects/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/SkiaSharp/SkiaSharp.fs)
* [Source for the Maps extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/Maps/Xamarin.Forms.Maps.fs)
* [Source for the SkiaSharp extension](https://github.com/fabulous-dev/Fabulous/blob/v1.0/Fabulous.XamarinForms/extensions/SkiaSharp/SkiaSharp.fs)
10 changes: 5 additions & 5 deletions docs/content/en/v2/tutorials/using-nightly-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ toc: true

On every commit to the `v2.0` branch, packages for each project and template are automatically generated and published to the GitHub Packages Registry.

If you plan to use those packages, you'll need to add a `nuget.config` file to your solution folder and you'll need to add a source pointing to `https://nuget.pkg.github.com/fsprojects/index.json`.
If you plan to use those packages, you'll need to add a `nuget.config` file to your solution folder and you'll need to add a source pointing to `https://nuget.pkg.github.com/fabulous-dev/index.json`.

You'll also new to generate a GitHub PAT (personal access token) for your account and set that token in the `nuget.config` file.

Expand All @@ -31,13 +31,13 @@ Example of `nuget.config`:
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<!-- For nightly builds -->
<add key="fsprojects" value="https://nuget.pkg.github.com/fsprojects/index.json" />
<add key="fabulous-dev" value="https://nuget.pkg.github.com/fabulous-dev/index.json" />
</packageSources>
<packageSourceCredentials>
<fsprojects>
<fabulous-dev>
<add key="Username" value="USERNAME" />
<add key="ClearTextPassword" value="TOKEN" />
</fsprojects>
</fabulous-dev>
</packageSourceCredentials>
</configuration>
```
Expand All @@ -52,4 +52,4 @@ Once you configured `nuget.config`, you can run
dotnet new -i Fabulous.XamarinForms.Templates::XYZ
```

where `XYZ` is the latest version from [Fabulous.XamarinForms.Templates versions](https://github.com/fsprojects/Fabulous/packages/1334656/versions).
where `XYZ` is the latest version from [Fabulous.XamarinForms.Templates versions](https://github.com/fabulous-dev/Fabulous/packages/1334656/versions).
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module AboutPage =
let fsharpOrgUrl = "https://fsharp.org"

let fabulousXamarinFormsUrl =
"https://github.com/fsprojects/Fabulous/tree/master/Fabulous.XamarinForms"
"https://github.com/fabulous-dev/Fabulous/tree/master/Fabulous.XamarinForms"

let freepikUrl =
"https://www.flaticon.com/authors/freepik"
Expand Down
2 changes: 1 addition & 1 deletion src/Fabulous.MauiControls/Fabulous.MauiControls.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageIcon>nuget-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<VersionPrefix>2.1.0</VersionPrefix>
<RepositoryUrl>https://github.com/fsprojects/Fabulous</RepositoryUrl>
<RepositoryUrl>https://github.com/fabulous-dev/Fabulous</RepositoryUrl>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Fabulous.XamarinForms/Fabulous.XamarinForms.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageIcon>nuget-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<VersionPrefix>2.1.0</VersionPrefix>
<RepositoryUrl>https://github.com/fsprojects/Fabulous</RepositoryUrl>
<RepositoryUrl>https://github.com/fabulous-dev/Fabulous</RepositoryUrl>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Fabulous/Fabulous.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageIcon>nuget-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<VersionPrefix>2.1.0</VersionPrefix>
<RepositoryUrl>https://github.com/fsprojects/Fabulous</RepositoryUrl>
<RepositoryUrl>https://github.com/fabulous-dev/Fabulous</RepositoryUrl>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions templates/Maui/Fabulous.MauiControls.Templates.proj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<PropertyGroup>
<Description>Template to create projects using Fabulous for Maui.Controls</Description>
<Authors>Fabulous contributors</Authors>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
<PackageProjectUrl>https://github.com/fabulous-dev/Fabulous</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>images\nuget-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/fsprojects/Fabulous.git</RepositoryUrl>
<RepositoryUrl>https://github.com/fabulous-dev/Fabulous.git</RepositoryUrl>
<PackageTags>template;fsharp;fabulous;maui</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "fsprojects",
"author": "fabulous-dev",
"classifications": [
"Fabulous",
"Maui",
Expand Down
4 changes: 2 additions & 2 deletions templates/Xamarin.Forms/Fabulous.XamarinForms.Templates.proj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<PropertyGroup>
<Description>Template to create projects using Fabulous for Xamarin.Forms</Description>
<Authors>Fabulous contributors</Authors>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
<PackageProjectUrl>https://github.com/fabulous-dev/Fabulous</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>images\nuget-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/fsprojects/Fabulous.git</RepositoryUrl>
<RepositoryUrl>https://github.com/fabulous-dev/Fabulous.git</RepositoryUrl>
<PackageTags>template;fsharp;fabulous</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "fsprojects",
"author": "fabulous-dev",
"classifications": [
"Fabulous",
"Xamarin.Forms"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "fsprojects",
"author": "fabulous-dev",
"classifications": [
"Fabulous",
"Xamarin.Forms"
Expand Down

0 comments on commit 84f4321

Please sign in to comment.