diff --git a/.github/workflows/build+release.yml b/.github/workflows/build+release.yml new file mode 100644 index 0000000..c9c3a27 --- /dev/null +++ b/.github/workflows/build+release.yml @@ -0,0 +1,122 @@ +name: Build + +on: + workflow_dispatch: + inputs: + create-binaries: + type: boolean + description: create libwebp and binaries? + libwebp-version: + description: libwebp tag to use + default: v1.3.0 + create-release: + type: boolean + description: create release? + version: + required: true + description: Version number (use existing tag, e.g. 1.5) + +env: + AppName: WebP-wrapper + +jobs: + + build: + + runs-on: windows-latest + + env: + SolutionPath: WebPTest.sln + ProjectPath: WebPTest + LibraryProjectPath: WebPWrapperLib + OutputPath: WebPTest/bin/Release + VersionNumber: ${{ github.event.inputs.version }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v1.1 + + - name: Clone libwebp + if: github.event.inputs.create-binaries == 'true' + env: + branch_tag: ${{ github.event.inputs.libwebp-version }} + run: | + git clone --depth 1 --branch ${{ env.branch_tag }} https://chromium.googlesource.com/webm/libwebp + + - uses: ilammy/msvc-dev-cmd@v1 + if: github.event.inputs.create-binaries == 'true' + with: + arch: x86 + - name: Build libwebp x86 + if: github.event.inputs.create-binaries == 'true' + run: | + cd libwebp + nmake /f Makefile.vc CFG=release-dynamic RTLIBCFG=static OBJDIR=output + + - uses: ilammy/msvc-dev-cmd@v1 + if: github.event.inputs.create-binaries == 'true' + with: + arch: x64 + - name: Build libwebp x64 + if: github.event.inputs.create-binaries == 'true' + run: | + cd libwebp + nmake /f Makefile.vc CFG=release-dynamic RTLIBCFG=static OBJDIR=output + + - name: Copy Dlls + if: github.event.inputs.create-binaries == 'true' + run: | + Copy-Item "libwebp\output\release-dynamic\x86\bin\*.dll" "${{ env.LibraryProjectPath }}\x86" + Copy-Item "libwebp\output\release-dynamic\x64\bin\*.dll" "${{ env.LibraryProjectPath }}\x64" + + - name: Build + run: msbuild ${{ env.SolutionPath }} /p:Configuration=Release /p:Platform="Any CPU" + + - name: GIT commit and push changed files + if: github.event.inputs.create-binaries == 'true' + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git commit -a -m "Build action" + git push + + - name: Add files + if: github.event.inputs.create-release == 'true' + run: | + Copy-Item "build_libwebp_dll.md" "${{ env.OutputPath }}" + Copy-Item "LICENSE" "${{ env.OutputPath }}" + Copy-Item "${{ env.LibraryProjectPath }}\WebPWrapper.cs" "${{ env.OutputPath }}" + + - name: Create Draft Release + id: create_release + if: github.event.inputs.create-release == 'true' + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ env.VersionNumber }} + release_name: ${{ env.AppName }}-${{ env.VersionNumber }} + draft: true + prerelease: false + + - name: Zip files + if: github.event.inputs.create-release == 'true' + uses: thedoctor0/zip-release@master + with: + type: 'zip' + filename: '${{ env.AppName }}-${{ env.VersionNumber }}.zip' + directory: ${{ env.OutputPath }} + + - name: Upload release assets + if: github.event.inputs.create-release == 'true' + uses: actions/upload-release-asset@v1.0.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: .\${{ env.OutputPath }}\${{ env.AppName }}-${{ env.VersionNumber }}.zip + asset_name: ${{ env.AppName }}-${{ env.VersionNumber }}.zip + asset_content_type: application/zip diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b33c0d5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,405 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/* +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/* +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml + +# exceptions for this project +WebPTest.exe.config +!WebPTest.pdb +!bin/Release +!WebPTest/x86 +!WebPTest/x64 diff --git a/BUILDING.md b/BUILDING.md index 17f7173..5ee73af 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -15,3 +15,4 @@ nmake /f Makefile.vc CFG=release-dynamic RTLIBCFG=dynamic OBJDIR=output ## Notes * Depend on which `Native Tools Command Prompt` (x86 or x64), the compiled binaries will match the architecture with the `Command Prompt`'s environment. * You **may** need to manually add some directory to `PATH` environment so that the build tool can find the external tools. +* see [build_libwebp_dll.md](build_libwebp_dll.md) for more details on building the `libwebp` DLLs diff --git a/Compile dll.txt b/Compile dll.txt deleted file mode 100644 index 47780e8..0000000 --- a/Compile dll.txt +++ /dev/null @@ -1,21 +0,0 @@ -Build instructions for libwebp.dll -================================== - -Current version : 1.2.1 - -Download libwebp-{version}.tar.gz from the downloads list at http://downloads.webmproject.org/releases/webp -and extract its contents. - -Run "x86 Native Tools Command Prompt for VS2019" - -Change to the libwebp-{version} directory, run: - -nmake /f Makefile.vc CFG=release-dynamic RTLIBCFG=static OBJDIR=output - -Run "x64 Native Tools Command Prompt for VS2019" - -Change to the libwebp-{version} directory, run: - -nmake /f Makefile.vc CFG=release-dynamic RTLIBCFG=static OBJDIR=output - -Copy to x86 and x64 directories from /output/bin/ \ No newline at end of file diff --git a/LICENSE b/LICENSE index 0568952..06ff0a5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Jose M. Piñeiro +Copyright (c) 2020 Jose M. Piñeiro and others Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 482f0a1..12fd617 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Wrapper for libwebp in C#. The most complete wrapper in pure managed C#. Exposes Simple Decoding and Encoding API, Advanced Decoding and Encoding API (with statistics of compression), Get version library and WebPGetFeatures (info of any WebP file). Exposed get PSNR, SSIM or LSIM distortion metrics. -The wrapper is in safe managed code in one class. No need for external dll except libwebp_x86.dll (included v0.4.4) and libwebp_x64.dll (included v1.2.1). The wrapper works in 32, 64 bit or ANY (auto swith to the appropriate library). +It also provides methods for handling animated WebP files. + +The wrapper is in safe managed code in one class. No need for external dll except libwebp (included v1.3.0). The wrapper works in 32, 64 bit or ANY (auto swith to the appropriate library). The code is commented and includes simple examples for using the wrapper. @@ -100,6 +102,31 @@ using (WebP webp = new WebP()) File.WriteAllBytes("test.webp", rawWebP); ``` +## Animated WebP Functions: + +Load frames of an animated WebP file +```C# +var frames = webp.AnimLoad(strFilepath); +// or +var frames = webp.AnimDecode(byteArray); +``` + +Support for optional frame ranges (by indices) when decoding animated WebP files (see `webp.AnimDecode(..)`) +```C# +var frames = webp.AnimDecode(byteArray, 0, 1); +``` + +Get animated WebP's (compressed) frame data +```C# +_ = webp.AnimInit(strFilepath, out uint frameCount); +var frameData = webp.AnimGetFrame(intFrameNumber); +``` + +and decode at a later time +```C# +var bmp = webp.Decode(frameData.Data); +``` + ## Another Functions: Get version of libwebp.dll ```C# diff --git a/WebPTest.sln b/WebPTest.sln index e7f7a60..1c00f55 100644 --- a/WebPTest.sln +++ b/WebPTest.sln @@ -1,26 +1,61 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.852 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31515.178 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebPTest", "WebPTest\WebPTest.csproj", "{38700B2B-939E-439F-A975-E6FA91703BDB}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebPWrapperLib", "WebPWrapperLib\WebPWrapperLib.csproj", "{935F7370-4266-43D1-B907-1322BDBCD6ED}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug x86|Any CPU = Debug x86|Any CPU + Debug x86|x64 = Debug x86|x64 + Debug x86|x86 = Debug x86|x86 Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|Any CPU.ActiveCfg = Debug x86|Any CPU + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|Any CPU.Build.0 = Debug x86|Any CPU + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|x64.ActiveCfg = Debug x86|x64 + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|x64.Build.0 = Debug x86|x64 + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|x86.ActiveCfg = Debug x86|x86 + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug x86|x86.Build.0 = Debug x86|x86 {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|x64.ActiveCfg = Debug|x64 + {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|x64.Build.0 = Debug|x64 {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|x86.ActiveCfg = Debug|x86 {38700B2B-939E-439F-A975-E6FA91703BDB}.Debug|x86.Build.0 = Debug|x86 {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|Any CPU.ActiveCfg = Release|Any CPU {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|Any CPU.Build.0 = Release|Any CPU + {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|x64.ActiveCfg = Release|x64 + {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|x64.Build.0 = Release|x64 {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|x86.ActiveCfg = Release|x86 {38700B2B-939E-439F-A975-E6FA91703BDB}.Release|x86.Build.0 = Release|x86 + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|Any CPU.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|Any CPU.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|x64.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|x64.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|x86.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug x86|x86.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|x64.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|x64.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|x86.ActiveCfg = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Debug|x86.Build.0 = Debug|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|Any CPU.ActiveCfg = Release|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|Any CPU.Build.0 = Release|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|x64.ActiveCfg = Release|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|x64.Build.0 = Release|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|x86.ActiveCfg = Release|Any CPU + {935F7370-4266-43D1-B907-1322BDBCD6ED}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/WebPTest/WebPExample.cs b/WebPTest/WebPExample.cs index 4b2185b..14f53b3 100644 --- a/WebPTest/WebPExample.cs +++ b/WebPTest/WebPExample.cs @@ -61,7 +61,22 @@ private void ButtonLoad_Click(object sender, EventArgs e) if (Path.GetExtension(pathFileName) == ".webp") { using (WebP webp = new WebP()) - pictureBox.Image = webp.Load(pathFileName); + { + byte[] bytes = File.ReadAllBytes(pathFileName); + webp.GetInfo(bytes, out int width, out int height, out bool hasAlpha, out bool hasAnimation, out string format); + if (!hasAnimation) + { + pictureBox.Image = webp.Decode(bytes); + } + else + { + //var list = new System.Collections.Generic.List(webp.AnimDecode(bytes)); + System.Collections.Generic.IEnumerable frames = webp.AnimDecode(bytes, 0, 1); + var enumerator = frames.GetEnumerator(); + enumerator.MoveNext(); + pictureBox.Image = enumerator.Current.Bitmap; + } + } } else pictureBox.Image = Image.FromFile(pathFileName); diff --git a/WebPTest/WebPTest.csproj b/WebPTest/WebPTest.csproj index 6a1b908..fc5d718 100644 --- a/WebPTest/WebPTest.csproj +++ b/WebPTest/WebPTest.csproj @@ -2,7 +2,7 @@ Debug - x86 + AnyCPU 8.0.30703 2.0 {38700B2B-939E-439F-A975-E6FA91703BDB} @@ -73,6 +73,45 @@ MinimumRecommendedRules.ruleset false + + true + bin\x86\Debug_x86\ + DEBUG;TRACE + full + AnyCPU + 7.3 + prompt + + + true + bin\Debug_x86\ + DEBUG;TRACE + full + AnyCPU + 7.3 + prompt + MinimumRecommendedRules.ruleset + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + + + bin\x64\Release\ + TRACE + true + pdbonly + x64 + 7.3 + prompt + MinimumRecommendedRules.ruleset + @@ -82,7 +121,6 @@ - Form @@ -116,12 +154,6 @@ - - Always - - - Always - Always @@ -141,6 +173,12 @@ true + + + {935f7370-4266-43d1-b907-1322bdbcd6ed} + WebPWrapperLib + +