diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index ecd8b471a7..10d527376b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -3,7 +3,7 @@
"hostRequirements": {
"cpus": 4
},
- "onCreateCommand": "wget https://download.visualstudio.microsoft.com/download/pr/9144f37e-b370-41ee-a86f-2d2a69251652/bc1d544112ec134184a5aec7f7a1eaf9/dotnet-sdk-8.0.100-rc.2.23502.2-linux-x64.tar.gz -O $HOME/dotnet.tar.gz && export DOTNET_ROOT=$HOME/.dotnet && mkdir -p \"$DOTNET_ROOT\" && tar zxf $HOME/dotnet.tar.gz -C \"$DOTNET_ROOT\" && export PATH=$DOTNET_ROOT:$DOTNET_ROOT/tools:$PATH && dotnet dev-certs https --trust && dotnet build src/BlazorUI/Demo/Client/Web/Bit.BlazorUI.Demo.Client.Web.csproj && dotnet build src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj -t:BeforeBuildTasks --no-restore && dotnet build src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj -t:BeforeBuildTasks --no-restore && dotnet build src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Core/Boilerplate.Client.Core.csproj -t:BeforeBuildTasks --no-restore",
+ "onCreateCommand": "wget https://download.visualstudio.microsoft.com/download/pr/5226a5fa-8c0b-474f-b79a-8984ad7c5beb/3113ccbf789c9fd29972835f0f334b7a/dotnet-sdk-8.0.100-linux-x64.tar.gz -O $HOME/dotnet.tar.gz && export DOTNET_ROOT=$HOME/.dotnet && mkdir -p \"$DOTNET_ROOT\" && tar zxf $HOME/dotnet.tar.gz -C \"$DOTNET_ROOT\" && export PATH=$DOTNET_ROOT:$DOTNET_ROOT/tools:$PATH && dotnet dev-certs https --trust && dotnet build src/BlazorUI/Demo/Client/Web/Bit.BlazorUI.Demo.Client.Web.csproj && dotnet build src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj -t:BeforeBuildTasks --no-restore && dotnet build src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj -t:BeforeBuildTasks --no-restore && dotnet build src/Templates/Boilerplate/Bit.Boilerplate/src/Client/Core/Boilerplate.Client.Core.csproj -t:BeforeBuildTasks --no-restore",
"waitFor": "onCreateCommand",
"customizations": {
"codespaces": {
diff --git a/docs/how-to-build.md b/docs/how-to-build.md
index b4ad6a2389..75998bd22f 100644
--- a/docs/how-to-build.md
+++ b/docs/how-to-build.md
@@ -22,7 +22,7 @@ building each one of them requires some specific steps that are explained below.
Building each of the bit platform projects needs the following basic requirements other than the specific requirements that are explained later:
-- [.NET 8 RC1 SDK (8.0.100-rc.2.23502.2)](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
+- [.NET 8 SDK (8.0.100)](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
- [Node.js](https://nodejs.org)
diff --git a/src/BlazorUI/Bit.BlazorUI.Extras/Bit.BlazorUI.Extras.csproj b/src/BlazorUI/Bit.BlazorUI.Extras/Bit.BlazorUI.Extras.csproj
index 43230e1f1d..abf060c8f6 100644
--- a/src/BlazorUI/Bit.BlazorUI.Extras/Bit.BlazorUI.Extras.csproj
+++ b/src/BlazorUI/Bit.BlazorUI.Extras/Bit.BlazorUI.Extras.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj b/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
index b5a924cce7..6bc8b165ad 100644
--- a/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
+++ b/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/BlazorUI/Bit.BlazorUI/Bit.BlazorUI.csproj b/src/BlazorUI/Bit.BlazorUI/Bit.BlazorUI.csproj
index 5e652556f9..ff4e44df1e 100644
--- a/src/BlazorUI/Bit.BlazorUI/Bit.BlazorUI.csproj
+++ b/src/BlazorUI/Bit.BlazorUI/Bit.BlazorUI.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/src/BlazorUI/Demo/Client/App/Bit.BlazorUI.Demo.Client.App.csproj b/src/BlazorUI/Demo/Client/App/Bit.BlazorUI.Demo.Client.App.csproj
index 3373e7ed0a..180d949cf3 100644
--- a/src/BlazorUI/Demo/Client/App/Bit.BlazorUI.Demo.Client.App.csproj
+++ b/src/BlazorUI/Demo/Client/App/Bit.BlazorUI.Demo.Client.App.csproj
@@ -92,10 +92,10 @@
-
-
-
-
+
+
+
+
-
+
diff --git a/src/Templates/BlazorEmpty/Bit.BlazorEmpty/global.json b/src/Templates/BlazorEmpty/Bit.BlazorEmpty/global.json
index 1b99e7d61d..fb5197ed1b 100644
--- a/src/Templates/BlazorEmpty/Bit.BlazorEmpty/global.json
+++ b/src/Templates/BlazorEmpty/Bit.BlazorEmpty/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.100-rc.2.23502.2",
+ "version": "8.0.100",
"rollForward": "disable"
}
}
\ No newline at end of file
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/global.json b/src/Templates/BlazorWeb/Bit.BlazorWeb/global.json
index 273f0cf810..c41d522c76 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/global.json
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.100-rc.2.23502.2",
+ "version": "8.0.100",
"rollForward": "disable"
}
}
\ No newline at end of file
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Client/BlazorWeb.Client.csproj b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Client/BlazorWeb.Client.csproj
index edf9425fb8..fa13f45f9f 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Client/BlazorWeb.Client.csproj
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Client/BlazorWeb.Client.csproj
@@ -20,7 +20,7 @@
-
+
@@ -44,8 +44,8 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
+
+
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/.config/dotnet-tools.json b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/.config/dotnet-tools.json
index a4652233c5..e3cadb92fc 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/.config/dotnet-tools.json
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
- "version": "8.0.0-rc.2.23480.2",
+ "version": "8.0.0",
"commands": [
"dotnet-ef"
]
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/BlazorWeb.Server.csproj b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/BlazorWeb.Server.csproj
index 4a4ff5c536..dcd04614d2 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/BlazorWeb.Server.csproj
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/BlazorWeb.Server.csproj
@@ -9,8 +9,8 @@
-
-
+
+
all
@@ -22,25 +22,25 @@
-
+
-
+
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
+
+
+
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/20231114012959_InitialMigration.Designer.cs b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/20231114012959_InitialMigration.Designer.cs
index 1ef74055ee..95c7a0b3c6 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/20231114012959_InitialMigration.Designer.cs
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/20231114012959_InitialMigration.Designer.cs
@@ -20,7 +20,7 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
- .HasAnnotation("ProductVersion", "8.0.0-rc.2.23480.1")
+ .HasAnnotation("ProductVersion", "8.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/AppDbContextModelSnapshot.cs b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/AppDbContextModelSnapshot.cs
index 52af41fec0..a1261830f4 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/AppDbContextModelSnapshot.cs
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Server/Data/Migrations/AppDbContextModelSnapshot.cs
@@ -17,7 +17,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
- .HasAnnotation("ProductVersion", "8.0.0-rc.2.23480.1")
+ .HasAnnotation("ProductVersion", "8.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
diff --git a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Shared/BlazorWeb.Shared.csproj b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Shared/BlazorWeb.Shared.csproj
index 5f9c238110..335fc56ba1 100644
--- a/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Shared/BlazorWeb.Shared.csproj
+++ b/src/Templates/BlazorWeb/Bit.BlazorWeb/src/BlazorWeb.Shared/BlazorWeb.Shared.csproj
@@ -14,11 +14,11 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
-
+
+
+
+
+
compile; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/global.json b/src/Templates/Boilerplate/Bit.Boilerplate/global.json
index 273f0cf810..c41d522c76 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/global.json
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.100-rc.2.23502.2",
+ "version": "8.0.100",
"rollForward": "disable"
}
}
\ No newline at end of file
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/App/Boilerplate.Client.App.csproj b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/App/Boilerplate.Client.App.csproj
index ffd57b3c7b..7c41f21053 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/App/Boilerplate.Client.App.csproj
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Client/App/Boilerplate.Client.App.csproj
@@ -104,10 +104,10 @@
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/.config/dotnet-tools.json b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/.config/dotnet-tools.json
index a4652233c5..e3cadb92fc 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/.config/dotnet-tools.json
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
- "version": "8.0.0-rc.2.23480.2",
+ "version": "8.0.0",
"commands": [
"dotnet-ef"
]
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Boilerplate.Server.Api.csproj b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Boilerplate.Server.Api.csproj
index f617d71afe..3dcdaf9aaa 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Boilerplate.Server.Api.csproj
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Boilerplate.Server.Api.csproj
@@ -11,7 +11,7 @@
-
+
@@ -26,25 +26,25 @@
-
+
-
+
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
+
+
+
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/20231113190400_InitialMigration.Designer.cs b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/20231113190400_InitialMigration.Designer.cs
index 289e13c105..41f7057cc0 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/20231113190400_InitialMigration.Designer.cs
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/20231113190400_InitialMigration.Designer.cs
@@ -20,7 +20,7 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
- .HasAnnotation("ProductVersion", "8.0.0-rc.2.23480.1")
+ .HasAnnotation("ProductVersion", "8.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/AppDbContextModelSnapshot.cs b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/AppDbContextModelSnapshot.cs
index 3b72f33044..2174370dd2 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/AppDbContextModelSnapshot.cs
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Server/Api/Data/Migrations/AppDbContextModelSnapshot.cs
@@ -17,7 +17,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
- .HasAnnotation("ProductVersion", "8.0.0-rc.2.23480.1")
+ .HasAnnotation("ProductVersion", "8.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
diff --git a/src/Templates/Boilerplate/Bit.Boilerplate/src/Shared/Boilerplate.Shared.csproj b/src/Templates/Boilerplate/Bit.Boilerplate/src/Shared/Boilerplate.Shared.csproj
index 51d78886a7..a551a82b64 100644
--- a/src/Templates/Boilerplate/Bit.Boilerplate/src/Shared/Boilerplate.Shared.csproj
+++ b/src/Templates/Boilerplate/Bit.Boilerplate/src/Shared/Boilerplate.Shared.csproj
@@ -14,11 +14,11 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
-
+
+
+
+
+
compile; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Websites/Careers/src/Bit.Websites.Careers.Api/Bit.Websites.Careers.Api.csproj b/src/Websites/Careers/src/Bit.Websites.Careers.Api/Bit.Websites.Careers.Api.csproj
index ffb5600dda..42ce238055 100644
--- a/src/Websites/Careers/src/Bit.Websites.Careers.Api/Bit.Websites.Careers.Api.csproj
+++ b/src/Websites/Careers/src/Bit.Websites.Careers.Api/Bit.Websites.Careers.Api.csproj
@@ -9,7 +9,7 @@
-
+
@@ -23,21 +23,21 @@
-
+
-
+
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/src/Websites/Careers/src/Bit.Websites.Careers.Shared/Bit.Websites.Careers.Shared.csproj b/src/Websites/Careers/src/Bit.Websites.Careers.Shared/Bit.Websites.Careers.Shared.csproj
index 3e827a2de5..31d7932567 100644
--- a/src/Websites/Careers/src/Bit.Websites.Careers.Shared/Bit.Websites.Careers.Shared.csproj
+++ b/src/Websites/Careers/src/Bit.Websites.Careers.Shared/Bit.Websites.Careers.Shared.csproj
@@ -12,10 +12,10 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
-
+
+
+
+
+
diff --git a/src/Websites/Careers/src/Bit.Websites.Careers.Web/Bit.Websites.Careers.Web.csproj b/src/Websites/Careers/src/Bit.Websites.Careers.Web/Bit.Websites.Careers.Web.csproj
index 670c82aa3f..cbe33f78c2 100644
--- a/src/Websites/Careers/src/Bit.Websites.Careers.Web/Bit.Websites.Careers.Web.csproj
+++ b/src/Websites/Careers/src/Bit.Websites.Careers.Web/Bit.Websites.Careers.Web.csproj
@@ -42,10 +42,10 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
+
+
+
+
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj
index d6adf013e3..a641f6221e 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Bit.Websites.Platform.Client.csproj
@@ -16,7 +16,7 @@
-
+
@@ -37,7 +37,7 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/DevelopmentPrerequisitesPage.razor b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/DevelopmentPrerequisitesPage.razor
index 04b13db09d..6d72f46a53 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/DevelopmentPrerequisitesPage.razor
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/DevelopmentPrerequisitesPage.razor
@@ -21,7 +21,7 @@
All
- - .NET Sdk 8.0.100-rc.2
+ - .NET Sdk 8.0.100
- Node.js
-
Run the following commands:
@@ -39,7 +39,7 @@
-
- Microsoft Visual Studio 2022 - Version 17.8.0 preview or higher with the following workloads and extension
+ Microsoft Visual Studio 2022 - Version 17.8.0 or higher with the following workloads and extension
- ASP.NET and web development
- .NET Multi-Platform App UI development
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Server/Bit.Websites.Platform.Server.csproj b/src/Websites/Platform/src/Bit.Websites.Platform.Server/Bit.Websites.Platform.Server.csproj
index 8730b169ed..3d8f64d918 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Server/Bit.Websites.Platform.Server.csproj
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Server/Bit.Websites.Platform.Server.csproj
@@ -9,8 +9,8 @@
-
-
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Shared/Bit.Websites.Platform.Shared.csproj b/src/Websites/Platform/src/Bit.Websites.Platform.Shared/Bit.Websites.Platform.Shared.csproj
index 68afc2a4c7..4cdb27e881 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Shared/Bit.Websites.Platform.Shared.csproj
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Shared/Bit.Websites.Platform.Shared.csproj
@@ -14,9 +14,9 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
+
+
+
compile; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Websites/Sales/src/Bit.Websites.Sales.Api/Bit.Websites.Sales.Api.csproj b/src/Websites/Sales/src/Bit.Websites.Sales.Api/Bit.Websites.Sales.Api.csproj
index 1d5972f7bc..b558fa5cc6 100644
--- a/src/Websites/Sales/src/Bit.Websites.Sales.Api/Bit.Websites.Sales.Api.csproj
+++ b/src/Websites/Sales/src/Bit.Websites.Sales.Api/Bit.Websites.Sales.Api.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/Websites/Sales/src/Bit.Websites.Sales.Shared/Bit.Websites.Sales.Shared.csproj b/src/Websites/Sales/src/Bit.Websites.Sales.Shared/Bit.Websites.Sales.Shared.csproj
index de502d087b..93d850b17a 100644
--- a/src/Websites/Sales/src/Bit.Websites.Sales.Shared/Bit.Websites.Sales.Shared.csproj
+++ b/src/Websites/Sales/src/Bit.Websites.Sales.Shared/Bit.Websites.Sales.Shared.csproj
@@ -12,10 +12,10 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
+
+
+
+
diff --git a/src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj b/src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj
index 6a69f1104b..51e48b208a 100644
--- a/src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj
+++ b/src/Websites/Sales/src/Bit.Websites.Sales.Web/Bit.Websites.Sales.Web.csproj
@@ -43,9 +43,9 @@
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
+
+
+
diff --git a/src/global.json b/src/global.json
index 1b99e7d61d..fb5197ed1b 100644
--- a/src/global.json
+++ b/src/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.100-rc.2.23502.2",
+ "version": "8.0.100",
"rollForward": "disable"
}
}
\ No newline at end of file