Skip to content

Commit 149ac6a

Browse files
committed
Update docs to remove prerelease instructions
1 parent cf474d1 commit 149ac6a

File tree

9 files changed

+12
-18
lines changed

9 files changed

+12
-18
lines changed

docs/docs/bots/code/BlueskyBot/BlueskyBot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="Coravel" Version="6.0.2" />
17-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
17+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1818
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
1919
</ItemGroup>
2020

docs/docs/bots/code/WatcherBot/Step1/Step1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
13+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup>

docs/docs/bots/code/WatcherBot/Step2/Step2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
13+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup>

docs/docs/bots/code/WatcherBot/Step3/Step3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
13+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
1515
</ItemGroup>
1616

docs/docs/bots/code/WatcherBot/Step4/Step4.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
13+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
1515
</ItemGroup>
1616

docs/docs/bots/code/WatcherBot/Step5/Step5.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="idunno.Bluesky" Version="0.9.5-prerelease" />
13+
<PackageReference Include="idunno.Bluesky" Version="1.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
1515
</ItemGroup>
1616

docs/docs/bots/scheduledPostBot.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Let's start by creating a .NET project for our bot and adding the idunno.Bluesky
1818
```PowerShell
1919
dotnet new console -n BlueskyBot
2020
cd BlueskyBot
21-
dotnet add package idunno.Bluesky --prerelease
21+
dotnet add package idunno.Bluesky
2222
```
2323

2424
# [Visual Studio](#tab/visualStudio)
@@ -27,13 +27,11 @@ Let's start by creating a .NET project for our bot and adding the idunno.Bluesky
2727
1. In the "**Create a new project**" dialog select C# as the language, choose **Console App** as the project type then click Next.
2828
1. In the "**Configure your new project**" dialog name the project `BlueskyBot` and click Next.
2929
1. In the "**Additional information**" dialog choose the Framework as .NET 8.0, uncheck the "Do not use top level statements" check box then click **Create**.
30-
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab, ensure that the Include prelease checkbox is checked. Search for `idunno.Bluesky`, and click **Install**.
30+
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab. Search for `idunno.Bluesky`, and click **Install**.
3131
1. Close the **Manage nuget packages** dialog.
3232

3333
# [Visual Studio Code](#tab/vsCode)
3434

35-
First configure VS Code to [allow pre-release nuget packages](https://code.visualstudio.com/docs/csharp/package-management#_include-prerelease-package-versions).
36-
3735
1. Create a new .NET Command Line project by opening the Command Palette (**Ctrl + Shift + P**) and then search for and select **.NET New Project**
3836
1. In the Create a new .NET Project template search for and select **Console App**
3937
1. Select the folder you want to save your project in

docs/docs/bots/watcherBot.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Let's start by creating a .NET project for our bot and adding the idunno.Bluesky
1919
```PowerShell
2020
dotnet new console -n WatcherBot
2121
cd WatcherBot
22-
dotnet add package idunno.Bluesky --prerelease
22+
dotnet add package idunno.Bluesky
2323
```
2424

2525
# [Visual Studio](#tab/visualStudio)
@@ -28,13 +28,11 @@ Let's start by creating a .NET project for our bot and adding the idunno.Bluesky
2828
1. In the "**Create a new project**" dialog select C# as the language, choose **Console App** as the project type then click Next.
2929
1. In the "**Configure your new project**" dialog name the project `WatcherBot` and click Next.
3030
1. In the "**Additional information**" dialog choose the Framework as .NET 9.0, uncheck the "Do not use top level statements" check box then click **Create**.
31-
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab, ensure that the Include prelease checkbox is checked. Search for `idunno.Bluesky`, and click **Install**.
31+
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab. Search for `idunno.Bluesky`, and click **Install**.
3232
1. Close the **Manage nuget packages** dialog.
3333

3434
# [Visual Studio Code](#tab/vsCode)
3535

36-
First configure VS Code to [allow pre-release nuget packages](https://code.visualstudio.com/docs/csharp/package-management#_include-prerelease-package-versions).
37-
3836
1. Create a new .NET Command Line project by opening the Command Palette (**Ctrl + Shift + P**) and then search for and select **.NET New Project**
3937
1. In the Create a new .NET Project template search for and select **Console App**
4038
1. Select the folder you want to save your project in

docs/index.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Let's make your first post to Bluesky via the API in under 5 minutes.
1010
```PowerShell
1111
dotnet new console -n HelloBluesky
1212
cd HelloBluesky
13-
dotnet add package idunno.Bluesky --prerelease
13+
dotnet add package idunno.Bluesky
1414
```
1515

1616
# [Visual Studio](#tab/visualStudio)
@@ -19,13 +19,11 @@ Let's make your first post to Bluesky via the API in under 5 minutes.
1919
1. In the "**Create a new project**" dialog select C# as the language, choose **Console App** as the project type then click Next.
2020
1. In the "**Configure your new project**" dialog name the project `HelloBluesky` and click Next.
2121
1. In the "**Additional information**" dialog choose a Framework as .NET 8.0, uncheck the "Do not use top level statements" check box then click **Create**.
22-
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab, ensure that the Include prelease checkbox is checked. Search for `idunno.Bluesky`, and click **Install**.
22+
1. Under the **Project** menu Select **Manage nuget packages**, select the *Browse* tab. Search for `idunno.Bluesky`, and click **Install**.
2323
1. Close the **Manage nuget packages** dialog.
2424

2525
# [Visual Studio Code](#tab/vsCode)
2626

27-
First configure VS Code to [allow pre-release nuget packages](https://code.visualstudio.com/docs/csharp/package-management#_include-prerelease-package-versions).
28-
2927
1. Create a new .NET Command Line project by opening the Command Palette (**Ctrl + Shift + P**) and search for **.NET New Project**
3028
1. In the Create a new .NET Project template search for and select **Console App**
3129
1. Select the folder you want to save your project in

0 commit comments

Comments
 (0)