Skip to content

Commit

Permalink
Target netstandard2.0 and net40
Browse files Browse the repository at this point in the history
  • Loading branch information
davetransom committed Nov 22, 2019
1 parent b30ba52 commit 06cb283
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CSharpVitamins.ShortGuid/CSharpVitamins.ShortGuid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>CSharpVitamins</RootNamespace>
<Authors>Dave Transom</Authors>
Expand All @@ -12,8 +12,10 @@
<PackageLicenseExpression></PackageLicenseExpression>
<RepositoryUrl>https://github.com/csharpvitamins/csharpvitamins.shortguid/</RepositoryUrl>
<PackageTags>Guid ShortGuid Identifiers Base64</PackageTags>
<PackageReleaseNotes>- 1.0.0 Initial release</PackageReleaseNotes>
<PackageReleaseNotes>- 1.0.1 Target netstandard2.0 and net40
- 1.0.0 Initial release</PackageReleaseNotes>
<Copyright>Copyright 2007</Copyright>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions CSharpVitamins.ShortGuid/ShortGuid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ public static bool TryDecode(string value, out Guid guid)
}
catch
{
guid = Guid.Empty;
return false;
}
}
Expand Down

0 comments on commit 06cb283

Please sign in to comment.