Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #190 from austinlparker/feature/minNet45
Browse files Browse the repository at this point in the history
use net45 as minimum version
  • Loading branch information
damianh authored Nov 19, 2018
2 parents 11771bc + 2c34cdb commit 2471c5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/LibLog/LibLog.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<LangVersion>7</LangVersion>
<RootNamespace>YourRootNamespace.Logging</RootNamespace>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/LibLog/LibLog.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ This package is a variation of option 3 but will automatically wire things up to
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.CSharp" version="4.4.0" />
</group>
<group targetFramework="net452">
<group targetFramework="net45">
<dependency id="Microsoft.CSharp" version="4.4.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="**/*.cs.pp" target="contentFiles/cs/netstandard2.0" />
<file src="**/*.cs.pp" target="contentFiles/cs/net452" />
<file src="**/*.cs.pp" target="contentFiles/cs/net45" />
</files>
</package>

0 comments on commit 2471c5f

Please sign in to comment.