Skip to content

Commit 3f8f1dc

Browse files
authored
Merge pull request #288 from drewnoakes/version-2.5.0
Version 2.5.0
2 parents 09ebbc8 + 5066a67 commit 3f8f1dc

File tree

5 files changed

+6
-13
lines changed

5 files changed

+6
-13
lines changed

Build.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@ if ((test-path $msbuild) -eq $false) {
3131
}
3232

3333
&$msbuild MetadataExtractor\MetadataExtractor.csproj /t:Restore,Build,Pack /p:Configuration=Release /p:ContinuousIntegrationBuild=True /p:PackageOutputPath=..\artifacts
34-
&$msbuild MetadataExtractor\MetadataExtractor.csproj /t:Restore,Build,Pack /p:Configuration=Release /p:ContinuousIntegrationBuild=True /p:PackageOutputPath=..\artifacts /p:Signed=True /p:PackageId=MetadataExtractor.StrongName
3534

3635
Pop-Location

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>2.4.3</VersionPrefix>
4+
<VersionPrefix>2.5.0</VersionPrefix>
55
<DebugType>portable</DebugType>
66
<LangVersion>preview</LangVersion>
77
<Nullable>enable</Nullable>
88
<Authors>Drew Noakes</Authors>
9-
<Copyright>Copyright Drew Noakes 2002-2020</Copyright>
9+
<Copyright>Copyright Drew Noakes 2002-2021</Copyright>
1010
<PackageIcon>metadata-extractor-logo-122.png</PackageIcon>
1111
<PackageProjectUrl>https://github.com/drewnoakes/metadata-extractor-dotnet</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

MetadataExtractor.sln

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
88
.editorconfig = .editorconfig
99
.gitattributes = .gitattributes
1010
.gitignore = .gitignore
11+
.gitmodules = .gitmodules
1112
appveyor.yml = appveyor.yml
1213
azure-pipelines.yml = azure-pipelines.yml
1314
Build.ps1 = Build.ps1
1415
CONTRIBUTING.md = CONTRIBUTING.md
1516
Directory.Build.props = Directory.Build.props
1617
Directory.Build.targets = Directory.Build.targets
1718
LICENSE = LICENSE
19+
MetadataExtractor.snk = MetadataExtractor.snk
1820
README.md = README.md
1921
EndProjectSection
2022
EndProject

MetadataExtractor/MetadataExtractor.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,7 @@ Camera manufacturer specific support exists for Agfa, Canon, Casio, DJI, Epson,
1111
<TargetFrameworks>netstandard1.3;netstandard2.0;net35;net45</TargetFrameworks>
1212
<NoWarn>$(NoWarn);1591</NoWarn>
1313
<GenerateDocumentationFile>true</GenerateDocumentationFile>
14-
<PackageId>MetadataExtractor</PackageId>
1514
<PackageTags>Metadata;Exif;IPTC;XMP;ICC;Photoshop;WebP;PNG;BMP;ICO;PCX;JPEG;TIFF;PSD;Photography;QuickTime;MOV;MP4;M4V;Video;MP3;WAV;Imaging;Video;Audio</PackageTags>
16-
</PropertyGroup>
17-
18-
<PropertyGroup Condition=" '$(Signed)' == 'True' ">
19-
<PackageId>MetadataExtractor.StrongName</PackageId>
20-
<AssemblyTitle>Metadata Extractor (Strong Name)</AssemblyTitle>
21-
<AssemblyName>MetadataExtractor.StrongName</AssemblyName>
2215
<AssemblyOriginatorKeyFile>../MetadataExtractor.snk</AssemblyOriginatorKeyFile>
2316
<SignAssembly>true</SignAssembly>
2417
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
@@ -34,8 +27,7 @@ Camera manufacturer specific support exists for Agfa, Canon, Casio, DJI, Epson,
3427
</ItemGroup>
3528

3629
<ItemGroup>
37-
<PackageReference Include="XmpCore" Version="6.1.10" Condition=" '$(Signed)' != 'True' " />
38-
<PackageReference Include="XmpCore.StrongName" Version="6.1.10" Condition=" '$(Signed)' == 'True' " />
30+
<PackageReference Include="XmpCore" Version="6.1.10.1" />
3931
</ItemGroup>
4032

4133
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' OR '$(TargetFramework)' == 'netstandard2.0' ">

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Either add this to your project file
1414

1515
```xml
1616
<ItemGroup>
17-
<PackageReference Include="MetadataExtractor" Version="2.4.3" />
17+
<PackageReference Include="MetadataExtractor" Version="2.5.0" />
1818
</ItemGroup>
1919
```
2020

0 commit comments

Comments
 (0)