Skip to content
This repository was archived by the owner on Nov 7, 2018. It is now read-only.

Commit 3cb1b4c

Browse files
committed
Bump test projects up to .NET 4.5.2
- aspnet/Testing#248 - xUnit no longer supports .NET 4.5.1 - build tests for desktop .NET only on Windows Also fix line endings in one src project. Otherwise unable to update repo.
1 parent c68ede3 commit 3cb1b4c

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<Import Project="..\..\build\common.props" />
4-
5-
<PropertyGroup>
6-
<Description>Provides a strongly typed way of specifying and accessing settings using dependency injection.</Description>
7-
<TargetFramework>netstandard1.0</TargetFramework>
8-
<NoWarn>$(NoWarn);CS1591</NoWarn>
9-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
10-
<PackageTags>aspnetcore;options</PackageTags>
11-
</PropertyGroup>
12-
13-
<ItemGroup>
14-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="1.2.0-*" />
15-
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.2.0-*" />
16-
<PackageReference Include="System.ComponentModel" Version="4.4.0-*" />
17-
</ItemGroup>
18-
19-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<Import Project="..\..\build\common.props" />
4+
5+
<PropertyGroup>
6+
<Description>Provides a strongly typed way of specifying and accessing settings using dependency injection.</Description>
7+
<TargetFramework>netstandard1.0</TargetFramework>
8+
<NoWarn>$(NoWarn);CS1591</NoWarn>
9+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
10+
<PackageTags>aspnetcore;options</PackageTags>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="1.2.0-*" />
15+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.2.0-*" />
16+
<PackageReference Include="System.ComponentModel" Version="4.4.0-*" />
17+
</ItemGroup>
18+
19+
</Project>

test/Microsoft.Extensions.Options.Test/Microsoft.Extensions.Options.Test.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>netcoreapp1.1;net451</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp1.1;net452</TargetFrameworks>
7+
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp1.1</TargetFrameworks>
78
</PropertyGroup>
89

910
<ItemGroup>

0 commit comments

Comments
 (0)