From 59fd8658c3b65e1f5e7eb19ef7943b483fcbd24a Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Sun, 9 May 2021 19:59:10 +1000 Subject: [PATCH 1/5] Remove redundant MSBuild property --- MetadataExtractor/MetadataExtractor.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/MetadataExtractor/MetadataExtractor.csproj b/MetadataExtractor/MetadataExtractor.csproj index a80192f51..4200a9425 100644 --- a/MetadataExtractor/MetadataExtractor.csproj +++ b/MetadataExtractor/MetadataExtractor.csproj @@ -11,7 +11,6 @@ Camera manufacturer specific support exists for Agfa, Canon, Casio, DJI, Epson, netstandard1.3;netstandard2.0;net35;net45 $(NoWarn);1591 true - MetadataExtractor 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 From 6bb8868cecef909a4b6ed9ab1c566ff9823c4060 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Sun, 9 May 2021 19:59:24 +1000 Subject: [PATCH 2/5] Bump copyright year --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 37c56c390..4f87df3b3 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -6,7 +6,7 @@ preview enable Drew Noakes - Copyright Drew Noakes 2002-2020 + Copyright Drew Noakes 2002-2021 metadata-extractor-logo-122.png https://github.com/drewnoakes/metadata-extractor-dotnet Apache-2.0 From 550a0c81bcb67b628394bfb20fe12770da3e8602 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Sun, 9 May 2021 19:59:36 +1000 Subject: [PATCH 3/5] Add solution items --- MetadataExtractor.sln | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MetadataExtractor.sln b/MetadataExtractor.sln index 1c607970b..1393bfdef 100644 --- a/MetadataExtractor.sln +++ b/MetadataExtractor.sln @@ -8,6 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution .editorconfig = .editorconfig .gitattributes = .gitattributes .gitignore = .gitignore + .gitmodules = .gitmodules appveyor.yml = appveyor.yml azure-pipelines.yml = azure-pipelines.yml Build.ps1 = Build.ps1 @@ -15,6 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets LICENSE = LICENSE + MetadataExtractor.snk = MetadataExtractor.snk README.md = README.md EndProjectSection EndProject From 94b99e14ecf2f825814db037ea01ea671ef4ebb0 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Sun, 9 May 2021 20:01:29 +1000 Subject: [PATCH 4/5] Move to a single strong-named package --- Build.ps1 | 1 - MetadataExtractor/MetadataExtractor.csproj | 9 +-------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index 566021c03..bc72cfe77 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -31,6 +31,5 @@ if ((test-path $msbuild) -eq $false) { } &$msbuild MetadataExtractor\MetadataExtractor.csproj /t:Restore,Build,Pack /p:Configuration=Release /p:ContinuousIntegrationBuild=True /p:PackageOutputPath=..\artifacts -&$msbuild MetadataExtractor\MetadataExtractor.csproj /t:Restore,Build,Pack /p:Configuration=Release /p:ContinuousIntegrationBuild=True /p:PackageOutputPath=..\artifacts /p:Signed=True /p:PackageId=MetadataExtractor.StrongName Pop-Location diff --git a/MetadataExtractor/MetadataExtractor.csproj b/MetadataExtractor/MetadataExtractor.csproj index 4200a9425..159d9c2e7 100644 --- a/MetadataExtractor/MetadataExtractor.csproj +++ b/MetadataExtractor/MetadataExtractor.csproj @@ -12,12 +12,6 @@ Camera manufacturer specific support exists for Agfa, Canon, Casio, DJI, Epson, $(NoWarn);1591 true 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 - - - - MetadataExtractor.StrongName - Metadata Extractor (Strong Name) - MetadataExtractor.StrongName ../MetadataExtractor.snk true true @@ -33,8 +27,7 @@ Camera manufacturer specific support exists for Agfa, Canon, Casio, DJI, Epson, - - + From 5066a6780dad35c8748dd9805264595b0492467c Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Sun, 9 May 2021 20:01:49 +1000 Subject: [PATCH 5/5] Version 2.5.0 --- Directory.Build.props | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 4f87df3b3..e38566176 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 2.4.3 + 2.5.0 portable preview enable diff --git a/README.md b/README.md index 1b49396dd..93ca48a1e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Either add this to your project file ```xml - + ```