Skip to content

Commit

Permalink
Created a separate dll for the full .NET Framework
Browse files Browse the repository at this point in the history
  • Loading branch information
skazantsev committed Aug 20, 2017
1 parent 6a93300 commit 9932033
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions src/WebDav.Client/WebDav.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1</TargetFrameworks>
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
<PackageReference Include="NETStandard.Library" Version="1.6.1" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>

<PropertyGroup>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<VersionPrefix>2.0.0</VersionPrefix>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<VersionPrefix>2.0.1</VersionPrefix>
<AssemblyName>WebDav.Client</AssemblyName>
<Title>WebDav.Client</Title>
<Product>WebDav.Client</Product>
Expand Down

0 comments on commit 9932033

Please sign in to comment.