Skip to content

Commit ae445ae

Browse files
authored
feat(websites): update platform website docs to .NET 10 version of the bitplatform products #11476 (#11477)
1 parent ff89d24 commit ae445ae

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates03GettingStartedPage.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
{
100100
<br />
101101
<BitAccordion Title="Ubuntu instructions">
102-
<CodeBox>wget https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-x64.tar.gz -O $HOME/dotnet.tar.gz
102+
<CodeBox>wget https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-x64.tar.gz -O $HOME/dotnet.tar.gz
103103
mkdir -p $HOME/.dotnet
104104
tar zxf $HOME/dotnet.tar.gz -C "$HOME/.dotnet"
105105
echo 'PATH=$HOME/.dotnet:$HOME/.dotnet/tools:$PATH' >> ~/.bashrc
@@ -153,7 +153,7 @@ rm $HOME/dotnet.tar.gz</CodeBox>
153153
</li>
154154
<li>
155155
<div style="margin-bottom:8px">Install <a href="https://www.nuget.org/packages/Bit.Boilerplate" target="_blank">Bit Boilerplate</a> project template</div>
156-
<CodeBox>dotnet new install Bit.Boilerplate</CodeBox>
156+
<CodeBox>dotnet new install Bit.Boilerplate::10.0.0-pre-02</CodeBox>
157157
</li>
158158
@if (showCrossPlatform && devOS is "Windows")
159159
{
@@ -202,7 +202,7 @@ rm $HOME/dotnet.tar.gz</CodeBox>
202202
<div class="section-card-txt">
203203
<ul>
204204
<li>
205-
<a href="https://visualstudio.microsoft.com/downloads/" target="_blank">Microsoft Visual Studio</a> 2022 - Version 17.13 or higher
205+
<a href="https://visualstudio.microsoft.com/downloads/" target="_blank">Microsoft Visual Studio</a> 2026 - Version 18.0 or higher
206206
<ul dir="auto">
207207
<li>
208208
Workloads:

src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates03GettingStartedPage.razor.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public partial class Templates03GettingStartedPage
2525
command:"$progressPreference = 'silentlyContinue'; Install-PackageProvider -Name NuGet -Force | Out-Null; Install-Module -Name Microsoft.WinGet.Client -Force -Repository PSGallery | Out-Null; Repair-WinGetPackageManager -AllUsers;"),
2626

2727
(text:@"echo 'Install .NET SDK https://dotnet.microsoft.com/en-us/download';",
28-
command: $"winget install Microsoft.DotNet.SDK.9 --accept-source-agreements --accept-package-agreements;"),
28+
command: $"winget install Microsoft.DotNet.SDK.Preview --accept-source-agreements --accept-package-agreements;"),
2929

3030
(text:@"echo 'Install Microsoft DevTunnels https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/get-started?tabs=windows#install';",
3131
command: $"winget install Microsoft.devtunnel --accept-source-agreements --accept-package-agreements;"),
@@ -40,7 +40,7 @@ public partial class Templates03GettingStartedPage
4040
command:"dotnet nuget add source \"https://api.nuget.org/v3/index.json\" --name \"nuget.org\"; dotnet workload install wasm-tools;"),
4141

4242
(text:@"echo 'Install the Bit.Boilerplate project template https://www.nuget.org/packages/Boilerplate.Templates';",
43-
command:"dotnet new install Bit.Boilerplate;")
43+
command:"dotnet new install Bit.Boilerplate::10.0.0-pre-02;")
4444
];
4545

4646
if (enableVirtualization)
@@ -104,9 +104,6 @@ public partial class Templates03GettingStartedPage
104104
(text: @"echo 'Install the Docker extension for Visual Studio Code https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker';",
105105
command: "code --install-extension ms-azuretools.vscode-docker;"),
106106

107-
(text: @"echo 'Install the RESX Editor extension for Visual Studio Code https://marketplace.visualstudio.com/items?itemName=DominicVonk.vscode-resx-editor';",
108-
command: "code --install-extension DominicVonk.vscode-resx-editor;"),
109-
110107
(text: @"echo 'Install Dev Containers extension for Visual Studio Code https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers';",
111108
command: "code --install-extension ms-vscode-remote.remote-containers;"),
112109

@@ -120,8 +117,8 @@ public partial class Templates03GettingStartedPage
120117

121118
if (installVs)
122119
{
123-
result.Add((text: @"echo 'Install Visual Studio 2022 Community Edition https://visualstudio.microsoft.com/downloads/';",
124-
command: $"winget install --id Microsoft.VisualStudio.2022.Community --exact --silent --custom \"--add Microsoft.VisualStudio.Workload.NetWeb{(enableCrossPlatform ? " --add Microsoft.VisualStudio.Workload.NetCrossPlat --add Component.Android.SDK.MAUI" : "")}\" --accept-source-agreements --accept-package-agreements --disable-interactivity;"));
120+
result.Add((text: @"echo 'Install Visual Studio 2026 Community Edition https://visualstudio.microsoft.com/downloads/';",
121+
command: $"winget install --id Microsoft.VisualStudio.Community.Insiders --exact --silent --custom \"--add Microsoft.VisualStudio.Workload.NetWeb{(enableCrossPlatform ? " --add Microsoft.VisualStudio.Workload.NetCrossPlat --add Component.Android.SDK.MAUI" : "")}\" --accept-source-agreements --accept-package-agreements --disable-interactivity;"));
125122
}
126123

127124
return result;

src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates05CreateProjectPage.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
break;
6262
case "SqlServer":
6363
<div>
64-
You can use Sql Server LocalDb 2022 for development purposes.
64+
You can use Sql Server LocalDb 2025 for development purposes.
6565
<br />
6666
It gets installed within Visual Studio by default, but you can either download it from <a href="https://download.microsoft.com/download/3/8/d/38de7036-2433-4207-8eae-06e247e17b25/SqlLocalDB.msi" target="_blank">here</a> or install it using PowerShell:
6767
<CodeBox>$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://download.microsoft.com/download/3/8/d/38de7036-2433-4207-8eae-06e247e17b25/SqlLocalDB.msi -OutFile SqlLocalDB.msi; msiexec /i SqlLocalDB.msi /quiet</CodeBox>

src/Websites/Platform/src/Bit.Websites.Platform.Server/Bit.Websites.Platform.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</PackageReference>
2727
<PackageReference Include="Microsoft.Extensions.AI" Version="9.9.1" />
2828
<PackageReference Include="Microsoft.Extensions.AI.AzureAIInference" Version="9.9.1-preview.1.25474.6" />
29-
<PackageReference Include="ModelContextProtocol" Version="0.4.0-preview.1" />
29+
<PackageReference Include="ModelContextProtocol" Version="0.4.0-preview.2" />
3030
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
3131
<PackageReference Include="AspNetCore.HealthChecks.System" Version="9.0.0" />
3232
<PackageReference Include="AspNetCore.HealthChecks.UI" Version="9.0.0" />

0 commit comments

Comments
 (0)