﻿________________________________________________________________________
                       Stop - do this first!
________________________________________________________________________

If you try to build the solution right now, Visual Studio will fail with
an error like:

    error MSB3825: Couldn't process file <SomeForm>.resx due to its
    being in the Internet or Restricted zone or having the mark of the
    web on the file.

This is not a bug in the SpiceLogic HTML Editor.

It happens because Windows tags every file extracted from a downloaded
ZIP as "from the Internet zone", and MSBuild refuses to process .resx
files that carry that tag.

________________________________________________________________________
                        The fix (10 seconds)
________________________________________________________________________

Close Visual Studio, delete this extracted folder, then find the .zip
you downloaded, right-click it, choose Properties, tick the "Unblock"
checkbox at the bottom of the General tab, click Apply, and extract it
again. Windows clears the tag at extraction time, so everything comes
out clean.

Already extracted and would rather not do it twice? Open PowerShell in
this folder and run this yourself:

    Get-ChildItem -Recurse -File | Unblock-File

That is the whole command. We deliberately do not ship a script that
runs it for you: you should be able to read what you are about to run,
especially from a vendor you have not bought from yet.

________________________________________________________________________
                     Or skip this entirely
________________________________________________________________________

These exact samples are also a public Git repository. Nothing cloned
with git carries the mark of the web, so there is no tag to clear and
nothing to unblock:

    git clone https://github.com/spicelogic/wpf-html-editor-control-samples.git

________________________________________________________________________

That's the whole gotcha. The samples themselves are clean.

README.md in this same folder walks through every sample, how to
retarget them to a different .NET version, and how to apply your
license key after you buy.
