This has better dotnet test functionality.
This commit is contained in:
Andrew Arnott 2019-06-02 20:39:30 -06:00
Родитель 8793a24499
Коммит 75a9c7c7ff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A9B9910CDCCDA441
3 изменённых файлов: 5 добавлений и 6 удалений

Просмотреть файл

@ -1,9 +1,9 @@
steps:
- task: DotNetCoreInstaller@0
displayName: Install .NET Core SDK 2.2.104
- task: UseDotNet@2
displayName: Install .NET Core SDK 2.2.300
inputs:
packageType: sdk
version: 2.2.104
version: 2.2.300
- script: dotnet --info
displayName: Show dotnet SDK info

Просмотреть файл

@ -1,6 +1,6 @@
{
"sdk": {
// Get the pinned version of the SDK from https://dotnet.microsoft.com/download/dotnet-core/2.1
"version": "2.2.104"
// Get the pinned version of the SDK from https://dotnet.microsoft.com/download/dotnet-core/2.2
"version": "2.2.300"
}
}

Просмотреть файл

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFrameworks>net461;net47;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsTestProject>true</IsTestProject>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<NoWarn>$(NoWarn);CS1701</NoWarn>