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

View File

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

View File

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

View File

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