diff --git a/eng/Versions.props b/eng/Versions.props
index 7735e756e0..1440435365 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -94,7 +94,7 @@
5.0.0-alpha.1.19556.7
5.0.0-alpha.1.19556.7
-
+
3.1.0-preview4.19578.1
5.0.0-alpha.1.20056.3
diff --git a/src/Components/Blazor/Build/src/targets/BuiltInBclLinkerDescriptor.xml b/src/Components/Blazor/Build/src/targets/BuiltInBclLinkerDescriptor.xml
index 1e34ca6987..6f36c72089 100644
--- a/src/Components/Blazor/Build/src/targets/BuiltInBclLinkerDescriptor.xml
+++ b/src/Components/Blazor/Build/src/targets/BuiltInBclLinkerDescriptor.xml
@@ -6,7 +6,7 @@
+ to implement timers. Fixes https://github.com/dotnet/blazor/issues/239 -->
diff --git a/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs b/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs
index 1fafb9e81d..2292df38d8 100644
--- a/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs
+++ b/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs
@@ -448,7 +448,7 @@ namespace Test
frame => AssertFrame.Attribute(frame, "onchange", typeof(EventCallback), 4));
}
- [Fact] // See https://github.com/aspnet/Blazor/issues/703
+ [Fact] // See https://github.com/dotnet/blazor/issues/703
public void Workaround_703()
{
// Arrange
diff --git a/src/Components/Blazor/Build/test/ComponentRenderingRazorIntegrationTest.cs b/src/Components/Blazor/Build/test/ComponentRenderingRazorIntegrationTest.cs
index 9e924cb7b1..077a433eb1 100644
--- a/src/Components/Blazor/Build/test/ComponentRenderingRazorIntegrationTest.cs
+++ b/src/Components/Blazor/Build/test/ComponentRenderingRazorIntegrationTest.cs
@@ -408,7 +408,7 @@ namespace Test
frame => AssertFrame.Text(frame, "Some text", 4));
}
- [Fact] // https://github.com/aspnet/Blazor/issues/773
+ [Fact] // https://github.com/dotnet/blazor/issues/773
public void Regression_773()
{
// Arrange
diff --git a/src/Components/Components/test/RendererTest.cs b/src/Components/Components/test/RendererTest.cs
index b2bd6d5d5e..5560a9703a 100644
--- a/src/Components/Components/test/RendererTest.cs
+++ b/src/Components/Components/test/RendererTest.cs
@@ -2575,7 +2575,7 @@ namespace Microsoft.AspNetCore.Components.Test
[Fact]
public async Task CanCombineBindAndConditionalAttribute()
{
- // This test represents https://github.com/aspnet/Blazor/issues/624
+ // This test represents https://github.com/dotnet/blazor/issues/624
// Arrange: Rendered with textbox enabled
var renderer = new TestRenderer();
diff --git a/src/Components/README.md b/src/Components/README.md
index 6eacb16cda..f234cefc74 100644
--- a/src/Components/README.md
+++ b/src/Components/README.md
@@ -8,7 +8,7 @@ Blazor is a component based web UI framework. Blazor apps can run client-side in
Blazor uses only the latest web standards. No plugins or transpilation needed. It runs in the browser on a real .NET runtime implemented in [WebAssembly](http://webassembly.org) that executes normal .NET assemblies.
-[](https://gitter.im/aspnet/Blazor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
+[](https://gitter.im/dotnet/blazor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
You can learn more about Blazor at https://blazor.net.