Skip to content

Commit

Permalink
Drops support for .NET 4.5 in favor of 4.6 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ecampidoglio committed Oct 24, 2017
1 parent 57c8969 commit 05c09a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Cake.Curl.Tests/Cake.Curl.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp1.0;net452</TargetFrameworks>
<TargetFrameworks>netcoreapp1.0;net46</TargetFrameworks>
<DebugType>portable</DebugType>
<AssemblyName>Cake.Curl.Tests</AssemblyName>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand All @@ -20,11 +20,11 @@
<PackageReference Include="Cake.Testing" Version="0.17.0" />
</ItemGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' ">
<PropertyGroup Condition=" '$(TargetFramework)' == 'net46' ">
<DefineConstants>$(DefineConstants);NETFX</DefineConstants>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Curl/Cake.Curl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PropertyGroup>
<Description>Cake.Curl is a cross-platform add-in for Cake that allows to transfer files to a remote URL using curl.</Description>
<Authors>Enrico Campidoglio</Authors>
<TargetFrameworks>netstandard1.6;net45</TargetFrameworks>
<TargetFrameworks>netstandard1.6;net46</TargetFrameworks>
<DebugType>portable</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Cake.Curl</AssemblyName>
Expand All @@ -24,7 +24,7 @@
<PackageReference Include="Cake.Core" Version="0.17.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
Expand Down

0 comments on commit 05c09a9

Please # to comment.