Fix documentation and target files issues

This commit is contained in:
Javier Calvarro Nelson 2017-06-23 19:09:45 -07:00
parent 35152d5933
commit 052db40567
7 changed files with 6 additions and 4 deletions

View File

@ -6,6 +6,7 @@
<Description>XUnit convenience fixture for creating functional tests for MVC applications.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;aspnetcoremvc;aspnetcoremvctesting</PackageTags>
</PropertyGroup>

View File

@ -6,6 +6,7 @@
<Description>Support for writing functional tests for MVC applications.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;aspnetcoremvc;aspnetcoremvctesting</PackageTags>
</PropertyGroup>

View File

@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing
public List<Assembly> ApplicationAssemblies { get; set; } = new List<Assembly>();
/// <summary>
/// Configures services before <see cref="TStartup.ConfigureServices"/> runs.
/// Configures services before TStartup.ConfigureServices runs.
/// </summary>
/// <param name="configure">The <see cref="Action{IServiceCollection}"/> to configure the services with.</param>
/// <returns>An instance of this <see cref="MvcWebApplicationBuilder{TStartup}"/></returns>
@ -38,7 +38,7 @@ namespace Microsoft.AspNetCore.Mvc.Testing
}
/// <summary>
/// Configures services after <see cref="TStartup.ConfigureServices"/> runs.
/// Configures services after TStartup.ConfigureServices runs.
/// </summary>
/// <param name="configure">The <see cref="Action{IServiceCollection}"/> to configure the services with.</param>
/// <returns>An instance of this <see cref="MvcWebApplicationBuilder{TStartup}"/></returns>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\common.props" />
<Import Project="..\..\src\Microsoft.AspNetCore.Mvc.Testing\build\Microsoft.AspNetCore.Mvc.Testing.targets" />
<Import Project="..\..\src\Microsoft.AspNetCore.Mvc.Testing.Xunit\build\Microsoft.AspNetCore.Mvc.Testing.Xunit.targets" />
<Import Project="..\..\src\Microsoft.AspNetCore.Mvc.Testing\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.targets" />
<Import Project="..\..\src\Microsoft.AspNetCore.Mvc.Testing.Xunit\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.Xunit.targets" />
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>