* Remove net451 as a compilation target
* Upgrade to netcoreapp2.0
This commit is contained in:
Pranav K 2017-03-23 17:30:20 -07:00
Родитель 7a36c06ff4
Коммит fc76a82d00
4 изменённых файлов: 5 добавлений и 3 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -28,3 +28,4 @@ project.lock.json
*.*sdf
*.ipch
.vs/
global.json

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

@ -3,6 +3,7 @@
<AspNetCoreVersion>1.2.0-*</AspNetCoreVersion>
<CoreFxVersion>4.3.0</CoreFxVersion>
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
<RuntimeFrameworkVersion>2.0.0-*</RuntimeFrameworkVersion>
<TestSdkVersion>15.0.0</TestSdkVersion>
<XunitVersion>2.2.0</XunitVersion>
</PropertyGroup>

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

@ -4,7 +4,7 @@
<PropertyGroup>
<Description>A middleware that supports creating a communication channel between the development environment and one or more web browsers.</Description>
<TargetFrameworks>net451;netstandard1.5</TargetFrameworks>
<TargetFrameworks>net46;netstandard1.5</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

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

@ -3,8 +3,8 @@
<Import Project="..\..\build\common.props" />
<PropertyGroup>
<TargetFrameworks>net452;netcoreapp1.1</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp1.1</TargetFrameworks>
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>