Update links for repo moves/renames (dotnet/aspnetcore-tooling#1474)

\n\nCommit migrated from fae9a5fdbc
This commit is contained in:
Kevin Pilch 2020-01-08 16:51:55 -08:00 committed by GitHub
parent 91efa9310f
commit 52b9fd85a2
10 changed files with 17 additions and 17 deletions

View File

@ -81,7 +81,7 @@ namespace Microsoft.AspNetCore.Razor.Language.Components
Assert.Equal(expected, block.Content, ignoreLineEndingDifferences: true); Assert.Equal(expected, block.Content, ignoreLineEndingDifferences: true);
} }
// See: https://github.com/aspnet/AspNetCore/issues/6480 // See: https://github.com/dotnet/aspnetcore/issues/6480
[Fact] [Fact]
public void Execute_RewritesHtml_HtmlAttributePrefix() public void Execute_RewritesHtml_HtmlAttributePrefix()
{ {

View File

@ -5120,7 +5120,7 @@ namespace Test
CompileToAssembly(generated); CompileToAssembly(generated);
} }
[Fact] // https://github.com/aspnet/Blazor/issues/597 [Fact] // https://github.com/dotnet/blazor/issues/597
public void Regression_597() public void Regression_597()
{ {
// Arrange // Arrange
@ -5186,7 +5186,7 @@ namespace Test
CompileToAssembly(generated); CompileToAssembly(generated);
} }
[Fact] // https://github.com/aspnet/Blazor/issues/772 [Fact] // https://github.com/dotnet/blazor/issues/772
public void Regression_772() public void Regression_772()
{ {
// Arrange // Arrange
@ -5224,7 +5224,7 @@ Welcome to your new app.
d => Assert.Equal("RZ1035", d.Id)); d => Assert.Equal("RZ1035", d.Id));
} }
[Fact] // https://github.com/aspnet/Blazor/issues/773 [Fact] // https://github.com/dotnet/blazor/issues/773
public void Regression_773() public void Regression_773()
{ {
// Arrange // Arrange

View File

@ -95,7 +95,7 @@ namespace Microsoft.AspNetCore.Razor.Language.IntegrationTests
Assert.Contains(typeof(IDoCoolThings), component.GetType().GetInterfaces()); Assert.Contains(typeof(IDoCoolThings), component.GetType().GetInterfaces());
} }
[Fact] // Regression test for https://github.com/aspnet/Blazor/issues/453 [Fact] // Regression test for https://github.com/dotnet/blazor/issues/453
public void DeclarationConfiguration_FunctionsBlockHasLineMappings_MappingsApplyToError() public void DeclarationConfiguration_FunctionsBlockHasLineMappings_MappingsApplyToError()
{ {
// Arrange & Act 1 // Arrange & Act 1

View File

@ -516,7 +516,7 @@ Copyright (c) .NET Foundation. All rights reserved.
</Target> </Target>
<!-- <!--
Temporarary workaround for https://github.com/aspnet/AspNetCore/issues/6859. This can be removed after a VS insertion with a newer copy of the DesignTime targets. Temporarary workaround for https://github.com/dotnet/aspnetcore/issues/6859. This can be removed after a VS insertion with a newer copy of the DesignTime targets.
--> -->
<ItemGroup> <ItemGroup>
<Content Update="$(_RazorComponentInclude)"> <Content Update="$(_RazorComponentInclude)">

View File

@ -97,7 +97,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
} }
} }
// Regression test for https://github.com/aspnet/AspNetCore/issues/11315 // Regression test for https://github.com/dotnet/aspnetcore/issues/11315
[Fact] [Fact]
[InitializeTestProject("AppWithP2PReference", additionalProjects: "ClassLibrary")] [InitializeTestProject("AppWithP2PReference", additionalProjects: "ClassLibrary")]
public async Task BuildIncrementalism_CausingRecompilation_WhenApplicationPartAttributeIsGenerated() public async Task BuildIncrementalism_CausingRecompilation_WhenApplicationPartAttributeIsGenerated()
@ -123,7 +123,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Assert.AssemblyHasAttribute(result, Path.Combine(OutputPath, "AppWithP2PReference.dll"), "Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute"); Assert.AssemblyHasAttribute(result, Path.Combine(OutputPath, "AppWithP2PReference.dll"), "Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute");
} }
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/13303")] [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/13303")]
[InitializeTestProject("SimpleMvcFSharp", language: "F#", additionalProjects: "ClassLibrary")] [InitializeTestProject("SimpleMvcFSharp", language: "F#", additionalProjects: "ClassLibrary")]
public async Task Build_ProjectWithDependencyThatReferencesMvc_AddsAttributeToNonCSharpProjects() public async Task Build_ProjectWithDependencyThatReferencesMvc_AddsAttributeToNonCSharpProjects()
{ {

View File

@ -472,7 +472,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Assert.FileDoesNotContain(result, razorAssemblyInfo, "Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute"); Assert.FileDoesNotContain(result, razorAssemblyInfo, "Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute");
} }
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/13303")] [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/13303")]
[InitializeTestProject("SimpleMvcFSharp", language: "F#")] [InitializeTestProject("SimpleMvcFSharp", language: "F#")]
public async Task Build_SimpleMvcFSharp_NoopsWithoutFailing() public async Task Build_SimpleMvcFSharp_NoopsWithoutFailing()
{ {
@ -639,14 +639,14 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Assert.FileDoesNotExist(result, IntermediateOutputPath, "SimpleMvc.Views.dll"); Assert.FileDoesNotExist(result, IntermediateOutputPath, "SimpleMvc.Views.dll");
} }
[Fact(Skip = "Default C# version is 7.3 for netcoreapp3.1 and later https://github.com/aspnet/AspNetCore/issues/13930")] [Fact(Skip = "Default C# version is 7.3 for netcoreapp3.1 and later https://github.com/dotnet/aspnetcore/issues/13930")]
[InitializeTestProject("SimpleMvc")] [InitializeTestProject("SimpleMvc")]
public async Task Build_ImplicitCSharp8_NullableEnforcement_WarningsDuringBuild_NoBuildServer() public async Task Build_ImplicitCSharp8_NullableEnforcement_WarningsDuringBuild_NoBuildServer()
{ {
var result = await DotnetMSBuild( var result = await DotnetMSBuild(
"Build", "Build",
// Remove /p:LangVersion=Default once we've picked up a compiler that supports .NET 5.0. // Remove /p:LangVersion=Default once we've picked up a compiler that supports .NET 5.0.
// Tracked by https://github.com/aspnet/AspNetCore/issues/13304 // Tracked by https://github.com/dotnet/aspnetcore/issues/13304
"/p:Nullable=enable /p:LangVersion=Default", "/p:Nullable=enable /p:LangVersion=Default",
suppressBuildServer: true); suppressBuildServer: true);
var indexFilePath = Path.Combine(RazorIntermediateOutputPath, "Views", "Home", "Index.cshtml.g.cs"); var indexFilePath = Path.Combine(RazorIntermediateOutputPath, "Views", "Home", "Index.cshtml.g.cs");

View File

@ -212,7 +212,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
[InitializeTestProject("SimpleMvc")] [InitializeTestProject("SimpleMvc")]
public async Task IntrospectJsonContentFiles_WithExcludeConfigFilesFromBuildOutputSet() public async Task IntrospectJsonContentFiles_WithExcludeConfigFilesFromBuildOutputSet()
{ {
// Verifies that the fix for https://github.com/aspnet/AspNetCore/issues/14017 works. // Verifies that the fix for https://github.com/dotnet/aspnetcore/issues/14017 works.
var result = await DotnetMSBuild("_IntrospectContentItems", "/p:ExcludeConfigFilesFromBuildOutput=true"); var result = await DotnetMSBuild("_IntrospectContentItems", "/p:ExcludeConfigFilesFromBuildOutput=true");
Assert.BuildPassed(result); Assert.BuildPassed(result);

View File

@ -329,7 +329,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Assert.FileCountEquals(result, 0, Path.Combine(PublishOutputPath, "Views"), "*.cshtml"); Assert.FileCountEquals(result, 0, Path.Combine(PublishOutputPath, "Views"), "*.cshtml");
} }
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/13303")] [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/13303")]
[InitializeTestProject("SimpleMvcFSharp", language: "F#")] [InitializeTestProject("SimpleMvcFSharp", language: "F#")]
public async Task Publish_SimpleMvcFSharp_NoopsWithoutFailing() public async Task Publish_SimpleMvcFSharp_NoopsWithoutFailing()
{ {

View File

@ -32,7 +32,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
public ITestOutputHelper Output { get; private set; } public ITestOutputHelper Output { get; private set; }
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17233")] [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/17233")]
[InitializeTestProject("AppWithPackageAndP2PReference",language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })] [InitializeTestProject("AppWithPackageAndP2PReference",language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
public async Task Build_GeneratesStaticWebAssetsManifest_Success_CreatesManifest() public async Task Build_GeneratesStaticWebAssetsManifest_Success_CreatesManifest()
{ {
@ -142,7 +142,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
Assert.FileDoesNotExist(result, IntermediateOutputPath, "staticwebassets", "AppWithPackageAndP2PReference.StaticWebAssets.xml"); Assert.FileDoesNotExist(result, IntermediateOutputPath, "staticwebassets", "AppWithPackageAndP2PReference.StaticWebAssets.xml");
} }
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17233")] [Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/17233")]
[InitializeTestProject("AppWithPackageAndP2PReference",language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })] [InitializeTestProject("AppWithPackageAndP2PReference",language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
public async Task Rebuild_Success_RecreatesManifestAndCache() public async Task Rebuild_Success_RecreatesManifestAndCache()
{ {

View File

@ -142,7 +142,7 @@ namespace Microsoft.AspNetCore.Razor.Tasks
[Fact] [Fact]
public void Resolve_Works_WhenAssemblyReferencesAreRecursive() public void Resolve_Works_WhenAssemblyReferencesAreRecursive()
{ {
// Test for https://github.com/aspnet/AspNetCore/issues/12693 // Test for https://github.com/dotnet/aspnetcore/issues/12693
// Arrange // Arrange
var resolver = new TestReferencesToMvcResolver(new[] var resolver = new TestReferencesToMvcResolver(new[]
{ {