Skip F# variant of `MvcTemplate_NoAuthImplAsync(...)` test

- #14022
- template test run on CI does not honour `[Flaky]`

nit: remove an explicit 'netcoreapp5.0'
This commit is contained in:
Doug Bunting 2019-09-21 11:40:02 -07:00
parent ee9c8bb36d
commit f79b3a9be2
No known key found for this signature in database
GPG Key ID: EE41520987982C03
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework Condition="'$(SupportPagesAndViews)' == 'True'">netcoreapp5.0</TargetFramework>
<TargetFramework Condition="'$(SupportPagesAndViews)' == 'True'">${DefaultNetCoreTargetFramework}</TargetFramework>
<TargetFramework Condition="'$(SupportPagesAndViews)' != 'True'">netstandard2.0</TargetFramework>
<RazorLangVersion Condition="'$(SupportPagesAndViews)' != 'True'">3.0</RazorLangVersion>
<AddRazorSupportForMvc Condition="'$(SupportPagesAndViews)' == 'True'">true</AddRazorSupportForMvc>

View File

@ -27,7 +27,7 @@ namespace Templates.Test
[Theory]
[InlineData(null)]
[InlineData("F#")]
[InlineData("F#", Skip = "https://github.com/aspnet/AspNetCore/issues/14022")]
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2267", FlakyOn.All)]
public async Task MvcTemplate_NoAuthImplAsync(string languageOverride)
{