From 052db40567d3d1abd1fbce6888933a71b200662c Mon Sep 17 00:00:00 2001 From: Javier Calvarro Nelson Date: Fri, 23 Jun 2017 19:09:45 -0700 Subject: [PATCH] Fix documentation and target files issues --- .../Microsoft.AspNetCore.Mvc.Testing.Xunit.csproj | 1 + .../Microsoft.AspNetCore.Mvc.Testing.Xunit.targets | 0 .../build/{ => netstandard2.0}/xunit.runner.json | 0 .../Microsoft.AspNetCore.Mvc.Testing.csproj | 1 + .../MvcWebApplicationBuilder.cs | 4 ++-- .../Microsoft.AspNetCore.Mvc.Testing.targets | 0 .../Microsoft.AspNetCore.Mvc.FunctionalTests.csproj | 4 ++-- 7 files changed, 6 insertions(+), 4 deletions(-) rename src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/{ => netstandard2.0}/Microsoft.AspNetCore.Mvc.Testing.Xunit.targets (100%) rename src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/{ => netstandard2.0}/xunit.runner.json (100%) rename src/Microsoft.AspNetCore.Mvc.Testing/build/{ => netstandard2.0}/Microsoft.AspNetCore.Mvc.Testing.targets (100%) diff --git a/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/Microsoft.AspNetCore.Mvc.Testing.Xunit.csproj b/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/Microsoft.AspNetCore.Mvc.Testing.Xunit.csproj index bf45538e3f..0aaf02b86f 100644 --- a/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/Microsoft.AspNetCore.Mvc.Testing.Xunit.csproj +++ b/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/Microsoft.AspNetCore.Mvc.Testing.Xunit.csproj @@ -6,6 +6,7 @@ XUnit convenience fixture for creating functional tests for MVC applications. netstandard2.0 $(NoWarn);CS1591 + true aspnetcore;aspnetcoremvc;aspnetcoremvctesting diff --git a/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/Microsoft.AspNetCore.Mvc.Testing.Xunit.targets b/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.Xunit.targets similarity index 100% rename from src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/Microsoft.AspNetCore.Mvc.Testing.Xunit.targets rename to src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.Xunit.targets diff --git a/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/xunit.runner.json b/src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/netstandard2.0/xunit.runner.json similarity index 100% rename from src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/xunit.runner.json rename to src/Microsoft.AspNetCore.Mvc.Testing.Xunit/build/netstandard2.0/xunit.runner.json diff --git a/src/Microsoft.AspNetCore.Mvc.Testing/Microsoft.AspNetCore.Mvc.Testing.csproj b/src/Microsoft.AspNetCore.Mvc.Testing/Microsoft.AspNetCore.Mvc.Testing.csproj index 6c0201d8c9..490ff527f3 100644 --- a/src/Microsoft.AspNetCore.Mvc.Testing/Microsoft.AspNetCore.Mvc.Testing.csproj +++ b/src/Microsoft.AspNetCore.Mvc.Testing/Microsoft.AspNetCore.Mvc.Testing.csproj @@ -6,6 +6,7 @@ Support for writing functional tests for MVC applications. netstandard2.0 $(NoWarn);CS1591 + true aspnetcore;aspnetcoremvc;aspnetcoremvctesting diff --git a/src/Microsoft.AspNetCore.Mvc.Testing/MvcWebApplicationBuilder.cs b/src/Microsoft.AspNetCore.Mvc.Testing/MvcWebApplicationBuilder.cs index 04753a5260..b06729601e 100644 --- a/src/Microsoft.AspNetCore.Mvc.Testing/MvcWebApplicationBuilder.cs +++ b/src/Microsoft.AspNetCore.Mvc.Testing/MvcWebApplicationBuilder.cs @@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing public List ApplicationAssemblies { get; set; } = new List(); /// - /// Configures services before runs. + /// Configures services before TStartup.ConfigureServices runs. /// /// The to configure the services with. /// An instance of this @@ -38,7 +38,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing } /// - /// Configures services after runs. + /// Configures services after TStartup.ConfigureServices runs. /// /// The to configure the services with. /// An instance of this diff --git a/src/Microsoft.AspNetCore.Mvc.Testing/build/Microsoft.AspNetCore.Mvc.Testing.targets b/src/Microsoft.AspNetCore.Mvc.Testing/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.targets similarity index 100% rename from src/Microsoft.AspNetCore.Mvc.Testing/build/Microsoft.AspNetCore.Mvc.Testing.targets rename to src/Microsoft.AspNetCore.Mvc.Testing/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.targets diff --git a/test/Microsoft.AspNetCore.Mvc.FunctionalTests/Microsoft.AspNetCore.Mvc.FunctionalTests.csproj b/test/Microsoft.AspNetCore.Mvc.FunctionalTests/Microsoft.AspNetCore.Mvc.FunctionalTests.csproj index 34bc035c86..c2a91030ac 100644 --- a/test/Microsoft.AspNetCore.Mvc.FunctionalTests/Microsoft.AspNetCore.Mvc.FunctionalTests.csproj +++ b/test/Microsoft.AspNetCore.Mvc.FunctionalTests/Microsoft.AspNetCore.Mvc.FunctionalTests.csproj @@ -1,7 +1,7 @@  - - + + netcoreapp2.0;net461