20 lines
771 B
XML
20 lines
771 B
XML
<Project>
|
|
<Import Project="dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<EnableBenchmarkValidation>true</EnableBenchmarkValidation>
|
|
<VSTestVerboseOutput Condition="'$(CI)' == 'true'">true</VSTestVerboseOutput>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Mvc.Core.TestCommon\*.csproj" />
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Mvc.Views.TestCommon\*.csproj" />
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Mvc.TestDiagnosticListener\*.csproj" />
|
|
<ExcludeSolutions Include="$(RepositoryRoot)Mvc.*Fun.sln" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreAppPackageVersion)" />
|
|
</ItemGroup>
|
|
</Project>
|