Skip to content

Commit

Permalink
update target frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
marihachi committed Jun 17, 2018
1 parent 8e4422f commit 42c1926
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions AlbumArtExtraction/AlbumArtExtraction.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<TargetFrameworks Condition="'$(LibraryFrameworks)'==''">net45;net40;netstandard1.3;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
<LangVersion>latest</LangVersion>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1</FileVersion>
<Version>1.0.1</Version>
<Description>A .NET library extracts album art from metadata such as FLAC, ID3, etc.</Description>
<Copyright>(C) 2018 Legato-Dev</Copyright>
<PackageLicenseUrl>https://github.com/Legato-Dev/AlbumArtExtraction/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Legato-Dev/AlbumArtExtraction</PackageProjectUrl>
<PackageIconUrl>https://github.com/Legato-Dev/AlbumArtExtraction/raw/master/logo64.png</PackageIconUrl>
<PackageId>AlbumArtExtraction</PackageId>
<PackageTags>ID3 MP3 FLAC AlbumArt Extraction NowPlaying CSharp</PackageTags>
<Version>1.0.0</Version>
<PackageIconUrl>https://github.com/Legato-Dev/AlbumArtExtraction/raw/master/logo64.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Legato-Dev/AlbumArtExtraction</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Legato-Dev/AlbumArtExtraction/blob/master/LICENSE</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\AlbumArtExtraction.xml</DocumentationFile>
<DocumentationFile>bin\Release\net45\AlbumArtExtraction.xml</DocumentationFile>
<OutputPath>bin\Release\</OutputPath>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<WarningLevel>2</WarningLevel>
Expand Down

0 comments on commit 42c1926

Please sign in to comment.