Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
TimLariviere committed Mar 30, 2022
1 parent 11295a6 commit 38f5dad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/content/en/docs/tutorials/using-nightly-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ weight: 301
toc: true
---

On every commit to the `main` branch, packages for each project and template are automatically generated and published to the GitHub Packages Registry.
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/TimLariviere/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/fsprojects/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 @@ -30,13 +30,13 @@ Example of `nuget.config`:
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<!-- For nightly builds -->
<add key="fabulous" value="https://nuget.pkg.github.com/TimLariviere/index.json" />
<add key="fsprojects" value="https://nuget.pkg.github.com/fsprojects/index.json" />
</packageSources>
<packageSourceCredentials>
<fabulous>
<fsprojects>
<add key="Username" value="USERNAME" />
<add key="ClearTextPassword" value="TOKEN" />
</fabulous>
</fsprojects>
</packageSourceCredentials>
</configuration>
```
Expand All @@ -51,4 +51,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/TimLariviere/Fabulous-new/packages/1191236/versions).
where `XYZ` is the latest version from [Fabulous.XamarinForms.Templates versions](https://github.com/fsprojects/Fabulous/packages/1334656/versions).
2 changes: 1 addition & 1 deletion templates/Fabulous.XamarinForms.Templates.proj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Fabulous for Xamarin.Forms Template</Description>
<Authors>TimLariviere</Authors>
<Authors>Fabulous contributors</Authors>
<PackageProjectUrl>https://github.com/fsprojects/Fabulous</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>images\nuget-icon.png</PackageIcon>
Expand Down

0 comments on commit 38f5dad

Please sign in to comment.