Skip to content

Commit

Permalink
Support .NET Standard 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tibel committed Aug 26, 2017
1 parent 8ae64b8 commit a37f20e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Weakly/Weakly.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
<TargetFramework>netstandard1.0</TargetFramework>
<Description>Weakly is a collection of some useful weak-reference types.</Description>
<Company>https://github.com/tibel/</Company>
<Version>2.8.0</Version>
<Version>2.8.1</Version>
<Authors>Thomas Ibel</Authors>
<PackageLicenseUrl>https://raw.github.com/tibel/Weakly/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/tibel/Weakly</PackageProjectUrl>
Expand All @@ -14,7 +14,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Copyright © Thomas Ibel 2013-2015</Copyright>
<PackageTags>Weakly WeakReference WeakAction WeakFunc WeakDelegate WeakCollection WeakValueDictionary WeakEventHandler WeakEventSource Async Task</PackageTags>
<PackageReleaseNotes>Switched to .NET Standard 1.3</PackageReleaseNotes>
<PackageReleaseNotes>Switched to .NET Standard 1.0</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -31,4 +31,8 @@
<None Include="..\Weakly.snk" Link="Weakly.snk" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
</ItemGroup>

</Project>

0 comments on commit a37f20e

Please sign in to comment.