| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- commit 1f3f010f873f22bfdaa23d6855ad3750a4058dfc
- Author: Nate McMaster <[email protected]>
- Date: Tue Dec 12 14:37:42 2017 -0800
- Upgrade CLI tools to .NET Core 2.1
- diff --git a/Directory.Build.props b/Directory.Build.props
- index 29ae42a346f..1afa691c5fe 100644
- --- a/Directory.Build.props
- +++ b/Directory.Build.props
- @@ -1,4 +1,8 @@
- <Project>
- + <Import
- + Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))\AspNetCoreSettings.props"
- + Condition=" '$(CI)' != 'true' AND '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))' != '' " />
- +
- <Import Project="version.props" />
- <Import Project="build\dependencies.props" />
- <Import Project="build\sources.props" />
- diff --git a/Directory.Build.targets b/Directory.Build.targets
- index 894b1d0cf88..c3d61be3b4c 100644
- --- a/Directory.Build.targets
- +++ b/Directory.Build.targets
- @@ -1,6 +1,5 @@
- <Project>
- <PropertyGroup>
- - <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
- <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(MicrosoftNETCoreApp21PackageVersion)</RuntimeFrameworkVersion>
- </PropertyGroup>
- </Project>
- diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json
- index c279df4745d..6979dfba80b 100644
- --- a/NuGetPackageVerifier.json
- +++ b/NuGetPackageVerifier.json
- @@ -27,7 +27,7 @@
- "Microsoft.AspNetCore.DeveloperCertificates.XPlat": {
- "Exclusions": {
- "DOC_MISSING": {
- - "lib/netcoreapp2.0/Microsoft.AspNetCore.DeveloperCertificates.XPlat.dll": "Enter justification"
- + "lib/netcoreapp2.1/Microsoft.AspNetCore.DeveloperCertificates.XPlat.dll": "Docs not required to shipoob package"
- }
- }
- }
- diff --git a/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj b/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj
- index 39dea69c5f3..96438bfa811 100644
- --- a/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj
- +++ b/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj
- @@ -1,6 +1,6 @@
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj b/samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj
- index f45eb26ccf7..65fd51d8d71 100755
- --- a/samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj
- +++ b/samples/dotnet-watch/WatchJavascriptFiles/WatchJavascriptFiles.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj b/samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj
- index 694a96f3f95..0ffd10766a7 100755
- --- a/samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj
- +++ b/samples/dotnet-watch/WatchMultipleProjects/Test/Test.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj b/samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj
- index 0bc2f3e71b0..ec2a93ed3aa 100755
- --- a/samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj
- +++ b/samples/dotnet-watch/WatchMultipleProjects/Web/Web.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/samples/dotnet-watch/WatchMultipleProjects/watch.csproj b/samples/dotnet-watch/WatchMultipleProjects/watch.csproj
- index d34686cbbce..b0ab41a5394 100644
- --- a/samples/dotnet-watch/WatchMultipleProjects/watch.csproj
- +++ b/samples/dotnet-watch/WatchMultipleProjects/watch.csproj
- @@ -1,6 +1,6 @@
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <EnableDefaultItems>false</EnableDefaultItems>
- </PropertyGroup>
-
- diff --git a/src/Microsoft.AspNetCore.DeveloperCertificates.Tools/Microsoft.AspNetCore.DeveloperCertificates.Tools.csproj b/src/Microsoft.AspNetCore.DeveloperCertificates.Tools/Microsoft.AspNetCore.DeveloperCertificates.Tools.csproj
- index 36ba69485ea..c2fd9283f10 100644
- --- a/src/Microsoft.AspNetCore.DeveloperCertificates.Tools/Microsoft.AspNetCore.DeveloperCertificates.Tools.csproj
- +++ b/src/Microsoft.AspNetCore.DeveloperCertificates.Tools/Microsoft.AspNetCore.DeveloperCertificates.Tools.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <AssemblyName>dotnet-developercertificates</AssemblyName>
- <OutputType>exe</OutputType>
- <Description>Command line tool to generate certificates used in ASP.NET Core during development.</Description>
- diff --git a/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj b/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj
- index 04bf6946c9c..81c90a297cc 100644
- --- a/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj
- +++ b/src/Microsoft.AspNetCore.DeveloperCertificates.XPlat/Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj
- @@ -1,11 +1,10 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <Description>Package for the CLI first run experience.</Description>
- <DefineConstants>$(DefineConstants);XPLAT</DefineConstants>
- <PackageTags>aspnet;cli</PackageTags>
- - <GenerateDocumentationFile>false</GenerateDocumentationFile>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/src/Microsoft.DotNet.Watcher.Tools/Microsoft.DotNet.Watcher.Tools.csproj b/src/Microsoft.DotNet.Watcher.Tools/Microsoft.DotNet.Watcher.Tools.csproj
- index 294943581a7..5c79f6f652d 100644
- --- a/src/Microsoft.DotNet.Watcher.Tools/Microsoft.DotNet.Watcher.Tools.csproj
- +++ b/src/Microsoft.DotNet.Watcher.Tools/Microsoft.DotNet.Watcher.Tools.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <AssemblyName>dotnet-watch</AssemblyName>
- <OutputType>exe</OutputType>
- <Description>Command line tool to watch for source file changes during development and restart the dotnet command.</Description>
- diff --git a/src/Microsoft.Extensions.Caching.SqlConfig.Tools/Microsoft.Extensions.Caching.SqlConfig.Tools.csproj b/src/Microsoft.Extensions.Caching.SqlConfig.Tools/Microsoft.Extensions.Caching.SqlConfig.Tools.csproj
- index f8ea1559869..d3ce82febea 100644
- --- a/src/Microsoft.Extensions.Caching.SqlConfig.Tools/Microsoft.Extensions.Caching.SqlConfig.Tools.csproj
- +++ b/src/Microsoft.Extensions.Caching.SqlConfig.Tools/Microsoft.Extensions.Caching.SqlConfig.Tools.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <AssemblyName>dotnet-sql-cache</AssemblyName>
- <OutputType>exe</OutputType>
- <Description>Command line tool to create tables and indexes in a Microsoft SQL Server database for distributed caching.</Description>
- diff --git a/src/Microsoft.Extensions.SecretManager.Tools/Microsoft.Extensions.SecretManager.Tools.csproj b/src/Microsoft.Extensions.SecretManager.Tools/Microsoft.Extensions.SecretManager.Tools.csproj
- index 3dc0507021e..ef8adb296fd 100644
- --- a/src/Microsoft.Extensions.SecretManager.Tools/Microsoft.Extensions.SecretManager.Tools.csproj
- +++ b/src/Microsoft.Extensions.SecretManager.Tools/Microsoft.Extensions.SecretManager.Tools.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <AssemblyName>dotnet-user-secrets</AssemblyName>
- <OutputType>exe</OutputType>
- <Description>Command line tool to manage user secrets for Microsoft.Extensions.Configuration.</Description>
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/FileWatcherTests.cs b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/FileWatcherTests.cs
- index 4df16166a01..9f1cc132bc2 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/FileWatcherTests.cs
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/FileWatcherTests.cs
- @@ -292,16 +292,16 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
- {
- changedEv.Set();
- }
- - catch(ObjectDisposedException)
- + catch (ObjectDisposedException)
- {
- // There's a known race condition here:
- // even though we tell the watcher to stop raising events and we unsubscribe the handler
- - // there might be in-flight events that will still process. Since we dispose the reset
- + // there might be in-flight events that will still process. Since we dispose the reset
- // event, this code will fail if the handler executes after Dispose happens. There's no
- // better way to guard against it than catch because we cannot check if the object is
- // disposed nor can we check if there are any in-flight events.
- // This is actually a known issue in the corefx file watcher. It can trigger multiple
- - // times for the same item.
- + // times for the same item.
- }
- };
-
- @@ -316,8 +316,10 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
- var testFileFullPath = Path.Combine(dir, "foo1");
- File.WriteAllText(testFileFullPath, string.Empty);
- Assert.True(changedEv.WaitOne(DefaultTimeout));
- - Assert.Equal(testFileFullPath, filesChanged.Single());
- + var fileChanged = Assert.Single(filesChanged);
- + Assert.Equal(testFileFullPath, fileChanged);
- filesChanged.Clear();
- + changedEv.Reset();
-
- // On Unix the file write time is in 1s increments;
- // if we don't wait, there's a chance that the polling
- @@ -327,8 +329,10 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
- testFileFullPath = Path.Combine(dir, "foo2");
- File.WriteAllText(testFileFullPath, string.Empty);
- Assert.True(changedEv.WaitOne(DefaultTimeout));
- - Assert.Equal(testFileFullPath, filesChanged.Single());
- + fileChanged = Assert.Single(filesChanged);
- + Assert.Equal(testFileFullPath, fileChanged);
- filesChanged.Clear();
- + changedEv.Reset();
-
- // On Unix the file write time is in 1s increments;
- // if we don't wait, there's a chance that the polling
- @@ -340,6 +344,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
- Assert.True(changedEv.WaitOne(DefaultTimeout));
- Assert.Equal(testFileFullPath, filesChanged.Single());
- filesChanged.Clear();
- + changedEv.Reset();
-
- // On Unix the file write time is in 1s increments;
- // if we don't wait, there's a chance that the polling
- @@ -348,7 +353,8 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
-
- File.WriteAllText(testFileFullPath, string.Empty);
- Assert.True(changedEv.WaitOne(DefaultTimeout));
- - Assert.Equal(testFileFullPath, filesChanged.Single());
- + fileChanged = Assert.Single(filesChanged);
- + Assert.Equal(testFileFullPath, fileChanged);
-
- watcher.EnableRaisingEvents = false;
- watcher.OnFileChange -= handler;
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/Microsoft.DotNet.Watcher.Tools.FunctionalTests.csproj b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/Microsoft.DotNet.Watcher.Tools.FunctionalTests.csproj
- index 8d2c4713c8f..06434ae064a 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/Microsoft.DotNet.Watcher.Tools.FunctionalTests.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/Microsoft.DotNet.Watcher.Tools.FunctionalTests.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <DefaultItemExcludes>$(DefaultItemExcludes);TestProjects\**\*</DefaultItemExcludes>
- </PropertyGroup>
-
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj
- index 3a4f75ddc6a..76d74464528 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/AppWithDeps/AppWithDeps.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <OutputType>exe</OutputType>
- </PropertyGroup>
-
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj
- index d18211405ee..60645a49dad 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/GlobbingApp/GlobbingApp.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <OutputType>exe</OutputType>
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- </PropertyGroup>
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj
- index aeb186ac39a..699071e138c 100755
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/KitchenSink/KitchenSink.csproj
- @@ -9,7 +9,7 @@
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj
- index 161a1c9290e..86e88b8b958 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/TestProjects/NoDepsApp/NoDepsApp.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- <OutputType>exe</OutputType>
- </PropertyGroup>
-
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.Tests/Microsoft.DotNet.Watcher.Tools.Tests.csproj b/test/Microsoft.DotNet.Watcher.Tools.Tests/Microsoft.DotNet.Watcher.Tools.Tests.csproj
- index c005f40d88c..0ace1e9148f 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.Tests/Microsoft.DotNet.Watcher.Tools.Tests.csproj
- +++ b/test/Microsoft.DotNet.Watcher.Tools.Tests/Microsoft.DotNet.Watcher.Tools.Tests.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/test/Microsoft.DotNet.Watcher.Tools.Tests/MsBuildFileSetFactoryTest.cs b/test/Microsoft.DotNet.Watcher.Tools.Tests/MsBuildFileSetFactoryTest.cs
- index dde03d31ab0..572b021f800 100644
- --- a/test/Microsoft.DotNet.Watcher.Tools.Tests/MsBuildFileSetFactoryTest.cs
- +++ b/test/Microsoft.DotNet.Watcher.Tools.Tests/MsBuildFileSetFactoryTest.cs
- @@ -6,6 +6,7 @@ using System.Linq;
- using System.Text.RegularExpressions;
- using System.Threading;
- using System.Threading.Tasks;
- +using Microsoft.AspNetCore.Testing;
- using Microsoft.DotNet.Watcher.Internal;
- using Microsoft.Extensions.Tools.Internal;
- using Xunit;
- @@ -274,12 +275,9 @@ namespace Microsoft.DotNet.Watcher.Tools.Tests
- private async Task<IFileSet> GetFileSet(MsBuildFileSetFactory filesetFactory)
- {
- _tempDir.Create();
- - var createTask = filesetFactory.CreateAsync(CancellationToken.None);
- - var finished = await Task.WhenAny(createTask, Task.Delay(TimeSpan.FromSeconds(10)));
- -
- - Assert.Same(createTask, finished);
- - Assert.NotNull(createTask.Result);
- - return createTask.Result;
- + return await filesetFactory
- + .CreateAsync(CancellationToken.None)
- + .TimeoutAfter(TimeSpan.FromSeconds(30));
- }
-
- public void Dispose()
- diff --git a/test/Microsoft.Extensions.SecretManager.Tools.Tests/Microsoft.Extensions.SecretManager.Tools.Tests.csproj b/test/Microsoft.Extensions.SecretManager.Tools.Tests/Microsoft.Extensions.SecretManager.Tools.Tests.csproj
- index 67ace090c07..cd5d68d140a 100644
- --- a/test/Microsoft.Extensions.SecretManager.Tools.Tests/Microsoft.Extensions.SecretManager.Tools.Tests.csproj
- +++ b/test/Microsoft.Extensions.SecretManager.Tools.Tests/Microsoft.Extensions.SecretManager.Tools.Tests.csproj
- @@ -1,7 +1,7 @@
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- - <TargetFramework>netcoreapp2.0</TargetFramework>
- + <TargetFramework>netcoreapp2.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- diff --git a/test/Microsoft.Extensions.SecretManager.Tools.Tests/UserSecretsTestFixture.cs b/test/Microsoft.Extensions.SecretManager.Tools.Tests/UserSecretsTestFixture.cs
- index 36a9e524ae4..14e62805bca 100644
- --- a/test/Microsoft.Extensions.SecretManager.Tools.Tests/UserSecretsTestFixture.cs
- +++ b/test/Microsoft.Extensions.SecretManager.Tools.Tests/UserSecretsTestFixture.cs
- @@ -35,7 +35,7 @@ namespace Microsoft.Extensions.Configuration.UserSecrets.Tests
- private const string ProjectTemplate = @"<Project ToolsVersion=""15.0"" Sdk=""Microsoft.NET.Sdk"">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- - <TargetFrameworks>netcoreapp2.0</TargetFrameworks>
- + <TargetFrameworks>netcoreapp2.1</TargetFrameworks>
- {0}
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- </PropertyGroup>
|