Skip to content

Commit e79dcc8

Browse files
authored
Relax the TargetFramework (#157)
1 parent 83f5f2c commit e79dcc8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ script:
2020
- make
2121
- make dist # Let's make sure we don't break make dist
2222
- cd src/TaglibSharp.Tests/bin/Debug
23-
- mono ../../../../packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe --labels=All net462/TaglibSharp.Tests.dll
23+
- mono ../../../../packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe --labels=All net45/TaglibSharp.Tests.dll
2424
# This errors out for some reason:
2525
# System.IO.FileNotFoundException: Unable to find tests for C:\code\taglib-sharp\src\TaglibSharp.Tests\bin\Debug\netstandard2.0\TaglibSharp.Tests.dll.
2626
# Make sure test project has a nuget reference of package "Microsoft.NET.Test.Sdk" and framework version settings are appropriate.

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<ReleaseVersion>2.2.0.0-beta</ReleaseVersion>
44
<RepositoryUrl>https://github.com/mono/taglib-sharp</RepositoryUrl>
55
<RepositoryType>git</RepositoryType>
6-
<TaglibSharpTargetFramework>net462;netstandard2.0</TaglibSharpTargetFramework>
6+
<TaglibSharpTargetFramework>net45;netstandard2.0</TaglibSharpTargetFramework>
77
<LangVersion>latest</LangVersion>
88
</PropertyGroup>
99
</Project>

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AM_MAINTAINER_MODE
44

55
ASSEMBLY_NAME="$PACKAGE"
66
ASSEMBLY_VERSION="$VERSION"
7-
TARGET_FRAMEWORK="net462"
7+
TARGET_FRAMEWORK="net45"
88

99
AC_SUBST(VERSION)
1010
AC_SUBST(ASSEMBLY_VERSION)

src/TaglibSharp/TaglibSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<PackageLicenseUrl>http://www.opensource.org/licenses/lgpl-2.1.php</PackageLicenseUrl>
2424
<PackageReleaseNotes>Version $(ReleaseVersion)
2525
January 21, 2019
26-
* Lots and lots of updates including net462 and .netstandard 2.0</PackageReleaseNotes>
26+
* Lots and lots of updates including net45 and .netstandard 2.0</PackageReleaseNotes>
2727
</PropertyGroup>
2828

2929
<ItemGroup>

0 commit comments

Comments
 (0)