diff options
author | Rob Mensching <rob@firegiant.com> | 2025-03-19 16:26:36 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-03-19 17:55:00 -0700 |
commit | 4d3f7c8cf16db06932596beb27d8d025be501b95 (patch) | |
tree | ca9306b13294190a85de1fbd13ff0eac8da34602 | |
parent | 669057f49c207de597604f847fb6ec55f17df121 (diff) | |
download | wix-4d3f7c8cf16db06932596beb27d8d025be501b95.tar.gz wix-4d3f7c8cf16db06932596beb27d8d025be501b95.tar.bz2 wix-4d3f7c8cf16db06932596beb27d8d025be501b95.zip |
Introduce the Open Source Maintenance Fee EULA
This adds the EULA to all the binary releases
Closes 8974
20 files changed, 375 insertions, 30 deletions
diff --git a/OSMFEULA.txt b/OSMFEULA.txt new file mode 100644 index 00000000..e6b014e9 --- /dev/null +++ b/OSMFEULA.txt | |||
@@ -0,0 +1,63 @@ | |||
1 | End User License Agreement | ||
2 | |||
3 | This Open Source Maintenance Fee Agreement ("Agreement") is a legal agreement | ||
4 | between you ("User") and WiX Toolset ("Project") for the use of the | ||
5 | WiX Toolset ("Software"), an open source software project licensed under | ||
6 | the Microsoft Reciprocal License ("OSI License"), an OSI-approved open source license. | ||
7 | Project offers a Binary Release of the Software to Users in exchange for a | ||
8 | maintenance fee ("Fee"). "Binary Release" refers to pre-compiled executable | ||
9 | versions of the Software provided by Project. By accessing or using the | ||
10 | Binary Release, User agrees to be bound by the terms of this Agreement. | ||
11 | |||
12 | 1. Applicability | ||
13 | |||
14 | Project agrees to provide User with the Binary Release in exchange for the | ||
15 | Fees outlined in Section 2, subject to the terms of this Agreement. The Fee | ||
16 | applies only to Users that generate revenue by the Software. | ||
17 | Non-revenue-generating use of the Software is exempt from this Fee. In | ||
18 | addition, Users who pay separate support and/or maintenance fees to the | ||
19 | maintainers of the Software are exempt from the Fee outlined in this | ||
20 | Agreement. This distinction ensures that duplicate fees are not imposed, | ||
21 | promoting fairness and consistency while respecting alternative support | ||
22 | arrangements. | ||
23 | |||
24 | 2. Monthly Fee and Payment Terms | ||
25 | |||
26 | Revenue-generating Users required to pay the Fee shall follow the payment | ||
27 | terms set forth by the Project. Failure to comply with these terms may result | ||
28 | in suspending access to the Binary Release. However, this does not restrict | ||
29 | the User from obtaining or redistributing binaries from other sources or | ||
30 | self-compiling them. | ||
31 | |||
32 | 3. Nature of the Fee | ||
33 | |||
34 | The Fee is not a license fee. The Software's source code is licensed to User | ||
35 | under the OSI License and remains freely distributable under the terms of the | ||
36 | OSI License and any applicable open-source licenses. | ||
37 | |||
38 | 4. Conflicts with OSI License | ||
39 | |||
40 | To the extent any term of this Agreement conflicts with User's rights | ||
41 | under the OSI License regarding the Software, the OSI License shall govern. | ||
42 | This Agreement applies only to the Binary Release and does not limit User's | ||
43 | ability to access, modify, or distribute the Software's source code or | ||
44 | self-compiled binaries. User may independently compile binaries from the | ||
45 | Software's source code without this Agreement, subject to OSI License terms. | ||
46 | User may redistribute the Binary Release received under this Agreement, | ||
47 | provided such redistribution complies with the OSI License (e.g., including | ||
48 | copyright and permission notices). This Agreement imposes no additional | ||
49 | restrictions on such rights. | ||
50 | |||
51 | 5. Disclaimer of Warranty and Limitation of Liability | ||
52 | |||
53 | THE SOFTWARE AND BINARY RELEASE ARE PROVIDED BY THE PROJECT "AS IS" AND ANY | ||
54 | EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
55 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
56 | DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR | ||
57 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
58 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
59 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
60 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
61 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
62 | OF THE SOFTWARE AND BINARY RELEASE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
63 | SUCH DAMAGE. | ||
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 883aba42..4c5c0668 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
@@ -9,6 +9,7 @@ | |||
9 | <NoWarn>$(NoWarn);MSB3026</NoWarn> | 9 | <NoWarn>$(NoWarn);MSB3026</NoWarn> |
10 | 10 | ||
11 | <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> | 11 | <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> |
12 | <RootFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\))</RootFolder> | ||
12 | <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder> | 13 | <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder> |
13 | <RootPackagesFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\packages\))</RootPackagesFolder> | 14 | <RootPackagesFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\packages\))</RootPackagesFolder> |
14 | <LogsFolder>$(RootBuildFolder)logs\</LogsFolder> | 15 | <LogsFolder>$(RootBuildFolder)logs\</LogsFolder> |
@@ -29,7 +30,11 @@ | |||
29 | <Authors>WiX Toolset Team</Authors> | 30 | <Authors>WiX Toolset Team</Authors> |
30 | <Company>WiX Toolset</Company> | 31 | <Company>WiX Toolset</Company> |
31 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> | 32 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> |
32 | <PackageLicenseExpression>MS-RL</PackageLicenseExpression> | 33 | |
34 | <PackageEulaSource>$(RootFolder)OSMFEULA.txt</PackageEulaSource> | ||
35 | <PackageLicenseFile>OSMFEULA.txt</PackageLicenseFile> | ||
36 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
37 | |||
33 | <Product>WiX Toolset</Product> | 38 | <Product>WiX Toolset</Product> |
34 | <ProjectUrl>https://wixtoolset.org/</ProjectUrl> | 39 | <ProjectUrl>https://wixtoolset.org/</ProjectUrl> |
35 | <PackageIcon>wix.png</PackageIcon> | 40 | <PackageIcon>wix.png</PackageIcon> |
diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 4adf903c..91aadf5b 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets | |||
@@ -46,7 +46,7 @@ | |||
46 | <NuspecProperties>$(NuspecProperties);Id=$(PackageId);Version=$(PackageVersion);MajorVersion=$(SomeVerInfoMajor);NextMajorVersion=$(SomeVerInfoNextMajor);Authors=$(Authors);Configuration=$(Configuration)</NuspecProperties> | 46 | <NuspecProperties>$(NuspecProperties);Id=$(PackageId);Version=$(PackageVersion);MajorVersion=$(SomeVerInfoMajor);NextMajorVersion=$(SomeVerInfoNextMajor);Authors=$(Authors);Configuration=$(Configuration)</NuspecProperties> |
47 | <NuspecProperties>$(NuspecProperties);Copyright=$(Copyright);Description=$(Description);Title=$(Title)</NuspecProperties> | 47 | <NuspecProperties>$(NuspecProperties);Copyright=$(Copyright);Description=$(Description);Title=$(Title)</NuspecProperties> |
48 | <NuspecProperties>$(NuspecProperties);RepositoryType=$(RepositoryType);RepositoryCommit=$(RepositoryCommit);RepositoryUrl=$(RepositoryUrl)</NuspecProperties> | 48 | <NuspecProperties>$(NuspecProperties);RepositoryType=$(RepositoryType);RepositoryCommit=$(RepositoryCommit);RepositoryUrl=$(RepositoryUrl)</NuspecProperties> |
49 | <NuspecProperties>$(NuspecProperties);ProjectUrl=$(ProjectUrl);ProjectFolder=$(MSBuildProjectDirectory)</NuspecProperties> | 49 | <NuspecProperties>$(NuspecProperties);ProjectUrl=$(ProjectUrl);ProjectFolder=$(MSBuildProjectDirectory);RootFolder=$(RootFolder);EulaTxt=$(PackageEulaSource)</NuspecProperties> |
50 | </PropertyGroup> | 50 | </PropertyGroup> |
51 | </Target> | 51 | </Target> |
52 | 52 | ||
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/WixToolset.BootstrapperApplicationApi.nuspec b/src/api/burn/WixToolset.BootstrapperApplicationApi/WixToolset.BootstrapperApplicationApi.nuspec index 8618c2f1..61c19117 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/WixToolset.BootstrapperApplicationApi.nuspec +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/WixToolset.BootstrapperApplicationApi.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -22,6 +22,7 @@ | |||
22 | </metadata> | 22 | </metadata> |
23 | 23 | ||
24 | <files> | 24 | <files> |
25 | <file src="$eulaTxt$" /> | ||
25 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 26 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
26 | 27 | ||
27 | <file src="$projectFolder$\build\WixToolset.BootstrapperApplicationApi.props" target="build\" /> | 28 | <file src="$projectFolder$\build\WixToolset.BootstrapperApplicationApi.props" target="build\" /> |
diff --git a/src/api/burn/bextutil/bextutil.nuspec b/src/api/burn/bextutil/bextutil.nuspec index fb329d24..5bb3875c 100644 --- a/src/api/burn/bextutil/bextutil.nuspec +++ b/src/api/burn/bextutil/bextutil.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -18,6 +18,7 @@ | |||
18 | </metadata> | 18 | </metadata> |
19 | 19 | ||
20 | <files> | 20 | <files> |
21 | <file src="$eulaTxt$" /> | ||
21 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | 22 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
22 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 23 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
23 | <file src="$projectFolder$\inc\*" target="build\native\include" /> | 24 | <file src="$projectFolder$\inc\*" target="build\native\include" /> |
diff --git a/src/burn/stub/stub.nuspec b/src/burn/stub/stub.nuspec index a02cfe94..7e868c67 100644 --- a/src/burn/stub/stub.nuspec +++ b/src/burn/stub/stub.nuspec | |||
@@ -6,14 +6,15 @@ | |||
6 | <title>$title$</title> | 6 | <title>$title$</title> |
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <license type="expression">MS-RL</license> | 9 | <license type="file">OSMFEULA.txt</license> |
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
11 | <copyright>$copyright$</copyright> | 11 | <copyright>$copyright$</copyright> |
12 | <projectUrl>$projectUrl$</projectUrl> | 12 | <projectUrl>$projectUrl$</projectUrl> |
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
14 | </metadata> | 14 | </metadata> |
15 | 15 | ||
16 | <files> | 16 | <files> |
17 | <file src="$eulaTxt$" /> | ||
17 | <file src="$projectFolder$\$id$.props" target="buildTransitive" /> | 18 | <file src="$projectFolder$\$id$.props" target="buildTransitive" /> |
18 | <file src="..\x86\burn.exe" target="tools\x86" /> | 19 | <file src="..\x86\burn.exe" target="tools\x86" /> |
19 | <file src="..\x64\burn.exe" target="tools\x64" /> | 20 | <file src="..\x64\burn.exe" target="tools\x64" /> |
diff --git a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec index cbc53152..232a3c1d 100644 --- a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec +++ b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -18,6 +18,7 @@ | |||
18 | </metadata> | 18 | </metadata> |
19 | 19 | ||
20 | <files> | 20 | <files> |
21 | <file src="$eulaTxt$" /> | ||
21 | <file src="$projectFolder$\$id$.targets" target="build" /> | 22 | <file src="$projectFolder$\$id$.targets" target="build" /> |
22 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> | 23 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> |
23 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe" target="tools" /> | 24 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe" target="tools" /> |
diff --git a/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec b/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec index 7a681707..2327f0a2 100644 --- a/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec +++ b/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec | |||
@@ -7,14 +7,15 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
15 | </metadata> | 15 | </metadata> |
16 | 16 | ||
17 | <files> | 17 | <files> |
18 | <file src="$eulaTxt$" /> | ||
18 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 19 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
19 | <file src="$projectFolder$\WixToolset.Bal.wixext.targets" target="build" /> | 20 | <file src="$projectFolder$\WixToolset.Bal.wixext.targets" target="build" /> |
20 | <file src="WixToolset.BootstrapperApplications.wixext.dll" target="$wixExtensionPackageFolder$" /> | 21 | <file src="WixToolset.BootstrapperApplications.wixext.dll" target="$wixExtensionPackageFolder$" /> |
diff --git a/src/ext/Bal/wixstdfn/wixstdfn.nuspec b/src/ext/Bal/wixstdfn/wixstdfn.nuspec index f436f375..4ca6eadb 100644 --- a/src/ext/Bal/wixstdfn/wixstdfn.nuspec +++ b/src/ext/Bal/wixstdfn/wixstdfn.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -22,6 +22,7 @@ | |||
22 | </metadata> | 22 | </metadata> |
23 | 23 | ||
24 | <files> | 24 | <files> |
25 | <file src="$eulaTxt$" /> | ||
25 | <file src="$projectFolder$\README.md" /> | 26 | <file src="$projectFolder$\README.md" /> |
26 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | 27 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
27 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 28 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
diff --git a/src/libs/dutil/WixToolset.DUtil/dutil.nuspec b/src/libs/dutil/WixToolset.DUtil/dutil.nuspec index a87da122..cd95990a 100644 --- a/src/libs/dutil/WixToolset.DUtil/dutil.nuspec +++ b/src/libs/dutil/WixToolset.DUtil/dutil.nuspec | |||
@@ -7,14 +7,15 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
15 | </metadata> | 15 | </metadata> |
16 | 16 | ||
17 | <files> | 17 | <files> |
18 | <file src="$eulaTxt$" /> | ||
18 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | 19 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
19 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 20 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
20 | <file src="$projectFolder$\inc\*" target="build\native\include" /> | 21 | <file src="$projectFolder$\inc\*" target="build\native\include" /> |
diff --git a/src/libs/wcautil/WixToolset.WcaUtil/wcautil.nuspec b/src/libs/wcautil/WixToolset.WcaUtil/wcautil.nuspec index 704dedc2..87c35b52 100644 --- a/src/libs/wcautil/WixToolset.WcaUtil/wcautil.nuspec +++ b/src/libs/wcautil/WixToolset.WcaUtil/wcautil.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -18,6 +18,7 @@ | |||
18 | </metadata> | 18 | </metadata> |
19 | 19 | ||
20 | <files> | 20 | <files> |
21 | <file src="$eulaTxt$" /> | ||
21 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | 22 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
22 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | 23 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> |
23 | <file src="$projectFolder$\inc\*" target="build\native\include" /> | 24 | <file src="$projectFolder$\inc\*" target="build\native\include" /> |
diff --git a/src/setup/OSMFEULA.rtf b/src/setup/OSMFEULA.rtf new file mode 100644 index 00000000..e988b435 --- /dev/null +++ b/src/setup/OSMFEULA.rtf | |||
@@ -0,0 +1,258 @@ | |||
1 | {\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f2\fbidi \fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;} | ||
2 | {\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\f45\fbidi \fmodern\fcharset0\fprq1{\*\panose 00000000000000000000}Consolas;} | ||
3 | {\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | ||
4 | {\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0302020204030204}Calibri Light;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | ||
5 | {\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | ||
6 | {\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f46\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | ||
7 | {\f47\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f49\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f50\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f51\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | ||
8 | {\f52\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f53\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f54\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f66\fbidi \fmodern\fcharset238\fprq1 Courier New CE;} | ||
9 | {\f67\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr;}{\f69\fbidi \fmodern\fcharset161\fprq1 Courier New Greek;}{\f70\fbidi \fmodern\fcharset162\fprq1 Courier New Tur;}{\f71\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew);} | ||
10 | {\f72\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f73\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic;}{\f74\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f386\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} | ||
11 | {\f387\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f389\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f390\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f393\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} | ||
12 | {\f394\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\f416\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f417\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f419\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;} | ||
13 | {\f420\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\f421\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\f422\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\f423\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} | ||
14 | {\f424\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\f496\fbidi \fmodern\fcharset238\fprq1 Consolas CE;}{\f497\fbidi \fmodern\fcharset204\fprq1 Consolas Cyr;}{\f499\fbidi \fmodern\fcharset161\fprq1 Consolas Greek;} | ||
15 | {\f500\fbidi \fmodern\fcharset162\fprq1 Consolas Tur;}{\f503\fbidi \fmodern\fcharset186\fprq1 Consolas Baltic;}{\f504\fbidi \fmodern\fcharset163\fprq1 Consolas (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | ||
16 | {\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} | ||
17 | {\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} | ||
18 | {\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} | ||
19 | {\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | ||
20 | {\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} | ||
21 | {\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Calibri Light CE;}{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Calibri Light Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Calibri Light Greek;} | ||
22 | {\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Calibri Light Tur;}{\fhimajor\f31533\fbidi \fswiss\fcharset177\fprq2 Calibri Light (Hebrew);}{\fhimajor\f31534\fbidi \fswiss\fcharset178\fprq2 Calibri Light (Arabic);} | ||
23 | {\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Calibri Light Baltic;}{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Calibri Light (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | ||
24 | {\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} | ||
25 | {\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} | ||
26 | {\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} | ||
27 | {\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | ||
28 | {\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} | ||
29 | {\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} | ||
30 | {\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} | ||
31 | {\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} | ||
32 | {\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} | ||
33 | {\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} | ||
34 | {\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} | ||
35 | {\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | ||
36 | {\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} | ||
37 | {\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; | ||
38 | \red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \li0\ri0\sa160\sl259\slmult1 | ||
39 | \widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 | ||
40 | \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* | ||
41 | \ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 | ||
42 | \widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused Normal Table;}{ | ||
43 | \s15\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs21\alang1025 \ltrch\fcs0 \f45\fs21\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext15 \slink16 \sunhideused \styrsid10238504 | ||
44 | Plain Text;}{\*\cs16 \additive \rtlch\fcs1 \af0\afs21 \ltrch\fcs0 \f45\fs21 \sbasedon10 \slink15 \slocked \styrsid10238504 Plain Text Char;}}{\*\rsidtbl \rsid8468552\rsid10238504\rsid10488425\rsid14299409\rsid15219288}{\mmathPr\mmathFont34\mbrkBin0 | ||
45 | \mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author word}{\operator Rob Mensching}{\creatim\yr2025\mo3\dy19\hr21\min58}{\revtim\yr2025\mo3\dy19\hr14}{\version3}{\edmins1}{\nofpages2} | ||
46 | {\nofwords501}{\nofchars2861}{\nofcharsws3356}{\vern115}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1501\margr1502\margt1440\margb1440\gutter0\ltrsect | ||
47 | \widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen | ||
48 | \expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1501\dgvorigin1440\dghshow1\dgvshow1 | ||
49 | \jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct | ||
50 | \asianbrkrule\rsidroot14299409\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 | ||
51 | {\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid10238504\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 | ||
52 | \pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 | ||
53 | \pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang | ||
54 | {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\s15\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid10238504 \rtlch\fcs1 \af0\afs21\alang1025 \ltrch\fcs0 \f45\fs21\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | ||
55 | \rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 End User License Agreement | ||
56 | \par | ||
57 | \par This Open Source Maintenance Fee Agreement ("Agreement") is a legal agreement}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
58 | between you ("User") and WiX Toolset ("Project") for the use of the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
59 | WiX Toolset ("Software"), an open source software project licensed under}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
60 | the Microsoft Reciprocal License ("OSI License"), an OSI-approved open source license.}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
61 | Project offers a Binary Release of the Software to Users in exchange for a}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
62 | maintenance fee ("Fee"). "Binary Release" refers to pre-compiled executable}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
63 | versions of the Software provided by Project. By accessing or using the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
64 | Binary Release, User agrees to be bound by the terms of this Agreement. | ||
65 | \par | ||
66 | \par 1. Applicability | ||
67 | \par | ||
68 | \par Project agrees to provide User with the Binary Release in exchange for the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
69 | Fees outlined in Section 2, subject to the terms of this Agreement. The Fee}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 applies only to Users that generate revenue by the Software. | ||
70 | }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 Non-revenue-generating use of the Software is exempt from this Fee. In}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{ | ||
71 | \rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 addition, Users who pay separate support and/or maintenance fees to the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 | ||
72 | \f2\insrsid10488425\charrsid10238504 maintainers of the Software are exempt from the Fee outlined in this}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
73 | Agreement. This distinction ensures that duplicate fees are not imposed,}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
74 | promoting fairness and consistency while respecting alternative support}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 arrangements. | ||
75 | \par | ||
76 | \par 2. Monthly Fee and Payment Terms | ||
77 | \par | ||
78 | \par Revenue-generating Users required to pay the Fee shall follow the payment}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
79 | terms set forth by the Project. Failure to comply with these terms may result}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
80 | in suspending access to the Binary Release. However, this does not restrict}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
81 | the User from obtaining or redistributing binaries from other sources or}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 self-compiling them. | ||
82 | \par | ||
83 | \par 3. Nature of the Fee | ||
84 | \par | ||
85 | \par The Fee is not a license fee. The Software's source code is licensed to User}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
86 | under the OSI License and remains freely distributable under the terms of the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 OSI License and any applicable open-source licenses. | ||
87 | |||
88 | \par | ||
89 | \par 4. Conflicts with OSI License | ||
90 | \par | ||
91 | \par To the extent any term of this Agreement conflicts with User's rights | ||
92 | \par under the OSI License regarding the Software, the OSI License shall govern.}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
93 | This Agreement applies only to the Binary Release and does not limit User's}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
94 | ability to access, modify, or distribute the Software's source code or}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
95 | self-compiled binaries. User may independently compile binaries from the}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
96 | Software's source code without this Agreement, subject to OSI License terms.}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
97 | User may redistribute the Binary Release received under this Agreement,}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
98 | provided such redistribution complies with the OSI License (e.g., including}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
99 | copyright and permission notices). This Agreement imposes no additional}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 restrictions on such rights. | ||
100 | \par | ||
101 | \par 5. Disclaimer of Warranty and Limitation of Liability | ||
102 | \par | ||
103 | \par THE SOFTWARE AND BINARY RELEASE ARE PROVIDED BY THE PROJECT "AS IS" AND ANY}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
104 | EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
105 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
106 | DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
107 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
108 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 | ||
109 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 CAUSED AND ON ANY THEORY OF LI | ||
110 | ABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE}{ | ||
111 | \rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 OF THE SOFTWARE AND BINARY RELEASE, EVEN IF ADVISED OF THE POSSIBILITY OF}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid15219288 }{ | ||
112 | \rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10488425\charrsid10238504 SUCH DAMAGE.}{\rtlch\fcs1 \af2 \ltrch\fcs0 \f2\insrsid10238504 | ||
113 | \par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a | ||
114 | 9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad | ||
115 | 5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 | ||
116 | b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 | ||
117 | 0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 | ||
118 | a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f | ||
119 | c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 | ||
120 | 0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 | ||
121 | a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 | ||
122 | 6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b | ||
123 | 4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b | ||
124 | 4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210007b740aaca0600008f1a0000160000007468656d652f7468656d652f | ||
125 | 7468656d65312e786d6cec595b8bdb46147e2ff43f08bd3bbe49be2cf1065bb69336bb49889d943cceda636bb2238dd18c776342a0244f7d2914d2d28706fad6 | ||
126 | 87521a68a0a12ffd310b1bdaf447f4cc489667ec71f6420aa1640d8b34face996fce39face48ba7aed51449d239c70c2e2965bbe52721d1c8fd898c4d3967b6f | ||
127 | d82f345c870b148f1165316eb90bccdd6bbb9f7e7215ed881047d801fb98efa0961b0a31db2916f9088611bfc26638866b13964448c069322d8e13740c7e235a | ||
128 | ac944ab5628448ec3a318ac0ededc9848cb033942edddda5f31e85d358703930a2c940bac68685c28e0fcb12c1173ca089738468cb8579c6ec78881f09d7a188 | ||
129 | 0bb8d0724beacf2dee5e2da29dcc888a2db69a5d5ffd657699c1f8b0a2e64ca607f9a49ee77bb576ee5f01a8d8c4f5eabd5aaf96fb5300341ac14a532eba4fbf | ||
130 | d3ec74fd0cab81d2438bef6ebd5b2d1b78cd7f758373db973f03af40a97f6f03dfef07104503af4029dedfc07b5ebd1278065e81527c6d035f2fb5bb5eddc02b | ||
131 | 5048497cb8812ef9b56ab05c6d0e99307ac30a6ffa5ebf5ec99caf50500d7975c929262c16db6a2d420f59d2078004522448ec88c50c4fd008aa3840941c24c4 | ||
132 | d923d3100a6f8662c661b85429f54b55f82f7f9e3a5211413b1869d6921730e11b43928fc34709998996fb39787535c8e9ebd7274f5f9d3cfdfde4d9b393a7bf | ||
133 | 66732b5786dd0d144f75bbb73f7df3cf8b2f9dbf7ffbf1edf36fd3a9d7f15cc7bff9e5ab377ffcf92ef7b0e255284ebf7bf9e6d5cbd3efbffeebe7e716efed04 | ||
134 | 1de8f0218930776ee163e72e8b608116fef820b998c5304444b768c7538e622467b1f8ef89d040df5a208a2cb80e36e3783f01a9b101afcf1f1a8407613217c4 | ||
135 | e2f1661819c07dc6688725d628dc947369611ecee3a97df264aee3ee2274649b3b40b191e5de7c061a4b6c2e83101b34ef50140b34c531168ebcc60e31b6acee | ||
136 | 0121465cf7c928619c4d84f380381d44ac21199203a39a56463748047959d80842be8dd8ecdf773a8cda56ddc5472612ee0d442de487981a61bc8ee602453697 | ||
137 | 4314513de07b48843692834532d2713d2e20d3534c99d31b63ce6d36b71358af96f49b2033f6b4efd345642213410e6d3ef710633ab2cb0e831045331b7640e2 | ||
138 | 50c77ec60fa144917387091b7c9f9977883c873ca0786bbaef136ca4fb6c35b8070aab535a1588bc324f2cb9bc8e9951bf83059d20aca4061a80a1eb1189cf14 | ||
139 | f93579f7ff3b7907113dfde1856545ef47d2ed8e8d7c5c50ccdb09b1de4d37d6247c1b6e5db803968cc987afdb5d348fef60b855369bd747d9fe28dbeeff5eb6 | ||
140 | b7ddcfef5fac57fa0cd22db7ade9765d6ddea3ad7bf709a174201614ef71b57de7d095c67d189476eab915e7cf72b3100ee59d0c1318b86982948d9330f10511 | ||
141 | e1204433d8e3975de964ca33d753eecc1887adbf1ab6fa96783a8ff6d9387d642d97e5e3692a1e1c89d578c9cfc7e17143a4e85a7df51896bb576ca7ea717949 | ||
142 | 40da5e8484369949a26a21515f0eca20a98773089a85845ad97b61d1b4b06848f7cb546db0006a795660dbe4c066abe5fa1e9880113c55218ac7324f69aa97d9 | ||
143 | 55c97c9f99de164ca302600fb1ac8055a69b92ebd6e5c9d5a5a5768e4c1b24b4723349a8c8a81ec64334c65975cad1f3d0b868ae9bab941af46428d47c505a2b | ||
144 | 1af5c6bb585c36d760b7ae0d34d69582c6ce71cbad557d2899119ab5dc093cfac3613483dae172bb8be814de9f8d4492def097519659c24517f1300db8129d54 | ||
145 | 0d222270e25012b55cb9fc3c0d34561aa2b8952b20081f2cb926c8ca87460e926e26194f267824f4b46b2332d2e929287caa15d6abcafcf26069c9e690ee4138 | ||
146 | 3e760ee83cb98ba0c4fc7a5906704c38bc012aa7d11c1378a5990bd9aafed61a5326bbfa3b455543e938a2b310651d4517f314aea43ca7a3cef2186867d99a21 | ||
147 | a05a48b2467830950d560faad14df3ae9172d8da75cf369291d34473d5330d55915dd3ae62c60ccb36b016cbcb35798dd532c4a0697a874fa57b5d729b4bad5b | ||
148 | db27e45d02029ec7cfd275cfd110346aabc90c6a92f1a60c4bcdce46cddeb15ce019d4ced32434d5af2dddaec52def11d6e960f0529d1fecd6ab168626cb7da5 | ||
149 | 8ab4faf6a17f9e60070f413cbaf022784e0557a9848f0f09820dd140ed4952d9805be491c86e0d3872e60969b98f4b7edb0b2a7e502835fc5ec1ab7aa542c36f | ||
150 | 570b6ddfaf967b7eb9d4ed549e4063116154f6d3ef2e7d780d4517d9d71735bef105265abe69bb32625191a92f2c45455c7d812957b67f81710888cee35aa5df | ||
151 | ac363bb542b3daee17bc6ea7516806b54ea15b0beadd7e37f01bcdfe13d7395260af5d0dbc5aaf51a89583a0e0d54a927ea359a87b954adbabb71b3daffd24db | ||
152 | c6c0ca53f9c86201e155bc76ff050000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f7468656d652f5f72 | ||
153 | 656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f2451eced0dae2c08 | ||
154 | 2e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198720e274a939cd0 | ||
155 | 8a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528a2c6cce0239baa | ||
156 | 4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c0200001300000000000000000000000000000000005b436f | ||
157 | 6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000000000000000300100005f72 | ||
158 | 656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000190200007468656d652f746865 | ||
159 | 6d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210007b740aaca0600008f1a00001600000000000000000000000000d60200 | ||
160 | 007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027000000000000000000000000 | ||
161 | 00d40900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000cf0a00000000} | ||
162 | {\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d | ||
163 | 617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 | ||
164 | 6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 | ||
165 | 656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} | ||
166 | {\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; | ||
167 | \lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; | ||
168 | \lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; | ||
169 | \lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; | ||
170 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; | ||
171 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; | ||
172 | \lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; | ||
173 | \lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; | ||
174 | \lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; | ||
175 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; | ||
176 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; | ||
177 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; | ||
178 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; | ||
179 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; | ||
180 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; | ||
181 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; | ||
182 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; | ||
183 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; | ||
184 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; | ||
185 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; | ||
186 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; | ||
187 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; | ||
188 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; | ||
189 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; | ||
190 | \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; | ||
191 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; | ||
192 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; | ||
193 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; | ||
194 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1; | ||
195 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid; | ||
196 | \lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid; | ||
197 | \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2; | ||
198 | \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1; | ||
199 | \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1; | ||
200 | \lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1; | ||
201 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; | ||
202 | \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2; | ||
203 | \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; | ||
204 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2; | ||
205 | \lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3; | ||
206 | \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3; | ||
207 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3; | ||
208 | \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4; | ||
209 | \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4; | ||
210 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; | ||
211 | \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5; | ||
212 | \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; | ||
213 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; | ||
214 | \lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; | ||
215 | \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; | ||
216 | \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; | ||
217 | \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; | ||
218 | \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; | ||
219 | \lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; | ||
220 | \lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; | ||
221 | \lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; | ||
222 | \lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; | ||
223 | \lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; | ||
224 | \lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; | ||
225 | \lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; | ||
226 | \lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; | ||
227 | \lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; | ||
228 | \lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; | ||
229 | \lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; | ||
230 | \lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; | ||
231 | \lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; | ||
232 | \lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; | ||
233 | \lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; | ||
234 | \lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; | ||
235 | \lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; | ||
236 | \lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; | ||
237 | \lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; | ||
238 | \lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; | ||
239 | \lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; | ||
240 | \lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; | ||
241 | \lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; | ||
242 | \lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; | ||
243 | \lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; | ||
244 | \lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000 | ||
245 | 02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 | ||
246 | d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
247 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
248 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
249 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
250 | fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
251 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
252 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
253 | ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | ||
254 | ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000007006 | ||
255 | defa1199db01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 | ||
256 | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 | ||
257 | 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 | ||
258 | 0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file | ||
diff --git a/src/setup/WixAdditionalTools/WixAdditionalTools.wxl b/src/setup/WixAdditionalTools/WixAdditionalTools.wxl index 5085b5dd..9c1264a2 100644 --- a/src/setup/WixAdditionalTools/WixAdditionalTools.wxl +++ b/src/setup/WixAdditionalTools/WixAdditionalTools.wxl | |||
@@ -6,7 +6,6 @@ | |||
6 | <String Id="Name" Overridable="yes" Value="WiX Toolset Additional Tools" /> | 6 | <String Id="Name" Overridable="yes" Value="WiX Toolset Additional Tools" /> |
7 | <String Id="Regid" Overridable="yes" Value="wixtoolset.org" /> | 7 | <String Id="Regid" Overridable="yes" Value="wixtoolset.org" /> |
8 | <String Id="AboutUrl" Overridable="yes" Value="https://wixtoolset.org/" /> | 8 | <String Id="AboutUrl" Overridable="yes" Value="https://wixtoolset.org/" /> |
9 | <String Id="LicenseUrl" Overridable="yes" Value="https://wixtoolset.org/about/license/" /> | ||
10 | <String Id="SupportUrl" Overridable="yes" Value="https://wixtoolset.org/docs/gethelp/" /> | 9 | <String Id="SupportUrl" Overridable="yes" Value="https://wixtoolset.org/docs/gethelp/" /> |
11 | <String Id="UpdateUrl" Overridable="yes" Value="https://wixtoolset.org/releases/feeds/wix-additional-tools-$(SetupDashedMajorMinorVersion)$(SetupDashedPrerelease).feed" /> | 10 | <String Id="UpdateUrl" Overridable="yes" Value="https://wixtoolset.org/releases/feeds/wix-additional-tools-$(SetupDashedMajorMinorVersion)$(SetupDashedPrerelease).feed" /> |
12 | </WixLocalization> | 11 | </WixLocalization> |
diff --git a/src/setup/WixAdditionalTools/WixAdditionalTools.wxs b/src/setup/WixAdditionalTools/WixAdditionalTools.wxs index 9369f32e..da8201ee 100644 --- a/src/setup/WixAdditionalTools/WixAdditionalTools.wxs +++ b/src/setup/WixAdditionalTools/WixAdditionalTools.wxs | |||
@@ -6,8 +6,8 @@ | |||
6 | AboutUrl="!(loc.AboutUrl)" HelpUrl="!(loc.SupportUrl)" UpdateUrl="!(loc.UpdateUrl)"> | 6 | AboutUrl="!(loc.AboutUrl)" HelpUrl="!(loc.SupportUrl)" UpdateUrl="!(loc.UpdateUrl)"> |
7 | <BootstrapperApplication> | 7 | <BootstrapperApplication> |
8 | <bal:WixStandardBootstrapperApplication | 8 | <bal:WixStandardBootstrapperApplication |
9 | LicenseUrl="!(loc.LicenseUrl)" | 9 | LicenseFile="..\OSMFEULA.rtf" |
10 | Theme="hyperlinkLicense" | 10 | Theme="rtfLicense" |
11 | ShowVersion="true" | 11 | ShowVersion="true" |
12 | LogoFile="wix-logo-sq.png" /> | 12 | LogoFile="wix-logo-sq.png" /> |
13 | </BootstrapperApplication> | 13 | </BootstrapperApplication> |
diff --git a/src/setup/wix-cli/Package.wxs b/src/setup/wix-cli/Package.wxs index 48d544e0..c3a66973 100644 --- a/src/setup/wix-cli/Package.wxs +++ b/src/setup/wix-cli/Package.wxs | |||
@@ -1,5 +1,6 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" |
3 | xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> | ||
3 | <Package Id="WixToolset.CommandLineTools$(SetupMajorVersion).Package" Name="WiX Toolset Command-Line Tools" Manufacturer="WiX Toolset" Version="!(bind.fileVersion.WixExe)"> | 4 | <Package Id="WixToolset.CommandLineTools$(SetupMajorVersion).Package" Name="WiX Toolset Command-Line Tools" Manufacturer="WiX Toolset" Version="!(bind.fileVersion.WixExe)"> |
4 | <MediaTemplate EmbedCab="yes" /> | 5 | <MediaTemplate EmbedCab="yes" /> |
5 | 6 | ||
@@ -9,6 +10,9 @@ | |||
9 | <Property Id="ARPURLINFOABOUT" Value="https://wixtoolset.org/" /> | 10 | <Property Id="ARPURLINFOABOUT" Value="https://wixtoolset.org/" /> |
10 | <Property Id="ARPHELPLINK" Value="https://wixtoolset.org/docs/gethelp/" /> | 11 | <Property Id="ARPHELPLINK" Value="https://wixtoolset.org/docs/gethelp/" /> |
11 | <SetProperty Id="ARPINSTALLLOCATION" Value="[INSTALLFOLDER]" After="CostFinalize" /> | 12 | <SetProperty Id="ARPINSTALLLOCATION" Value="[INSTALLFOLDER]" After="CostFinalize" /> |
13 | |||
14 | <ui:WixUI Id="WixUI_Minimal" /> | ||
15 | <WixVariable Id="WixUILicenseRtf" Value="..\OSMFEULA.rtf" /> | ||
12 | </Package> | 16 | </Package> |
13 | 17 | ||
14 | <Fragment> | 18 | <Fragment> |
diff --git a/src/setup/wix-cli/wix-cli.wixproj b/src/setup/wix-cli/wix-cli.wixproj index 35457460..5a5e2a93 100644 --- a/src/setup/wix-cli/wix-cli.wixproj +++ b/src/setup/wix-cli/wix-cli.wixproj | |||
@@ -28,6 +28,10 @@ | |||
28 | <BindPath Include="$(RootBuildFolder)VisualStudio.wixext\$(Configuration)\netstandard2.0\" /> | 28 | <BindPath Include="$(RootBuildFolder)VisualStudio.wixext\$(Configuration)\netstandard2.0\" /> |
29 | </ItemGroup> | 29 | </ItemGroup> |
30 | 30 | ||
31 | <ItemGroup> | ||
32 | <PackageReference Include="WixToolset.UI.wixext" /> | ||
33 | </ItemGroup> | ||
34 | |||
31 | <UsingTask TaskName="GenerateMetadata" AssemblyFile="$(BaseOutputPath)$(Configuration)\net472\MetadataTask.dll" /> | 35 | <UsingTask TaskName="GenerateMetadata" AssemblyFile="$(BaseOutputPath)$(Configuration)\net472\MetadataTask.dll" /> |
32 | 36 | ||
33 | <Target Name="GenerateMetadata" AfterTargets="AfterBuild"> | 37 | <Target Name="GenerateMetadata" AfterTargets="AfterBuild"> |
diff --git a/src/tools/WixToolset.Heat/WixToolset.Heat.nuspec b/src/tools/WixToolset.Heat/WixToolset.Heat.nuspec index d3ee59f7..fea090c3 100644 --- a/src/tools/WixToolset.Heat/WixToolset.Heat.nuspec +++ b/src/tools/WixToolset.Heat/WixToolset.Heat.nuspec | |||
@@ -7,14 +7,15 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
15 | </metadata> | 15 | </metadata> |
16 | 16 | ||
17 | <files> | 17 | <files> |
18 | <file src="$eulaTxt$" /> | ||
18 | <file src="$projectFolder$\$id$.targets" target="build" /> | 19 | <file src="$projectFolder$\$id$.targets" target="build" /> |
19 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> | 20 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> |
20 | <file src="tools\**\*" target="tools" /> | 21 | <file src="tools\**\*" target="tools" /> |
diff --git a/src/wix/WixToolset.Core.Native/WixToolset.Core.Native.nuspec b/src/wix/WixToolset.Core.Native/WixToolset.Core.Native.nuspec index e4a32d2c..32ba7614 100644 --- a/src/wix/WixToolset.Core.Native/WixToolset.Core.Native.nuspec +++ b/src/wix/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | |||
@@ -6,8 +6,8 @@ | |||
6 | <title>$title$</title> | 6 | <title>$title$</title> |
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <license type="expression">MS-RL</license> | 9 | <license type="file">OSMFEULA.txt</license> |
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
11 | <copyright>$copyright$</copyright> | 11 | <copyright>$copyright$</copyright> |
12 | <projectUrl>$projectUrl$</projectUrl> | 12 | <projectUrl>$projectUrl$</projectUrl> |
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -17,6 +17,7 @@ | |||
17 | </metadata> | 17 | </metadata> |
18 | 18 | ||
19 | <files> | 19 | <files> |
20 | <file src="$eulaTxt$" /> | ||
20 | <file src="$id$.dll" target="lib\netstandard2.0" /> | 21 | <file src="$id$.dll" target="lib\netstandard2.0" /> |
21 | <file src="$id$.xml" target="lib\netstandard2.0" /> | 22 | <file src="$id$.xml" target="lib\netstandard2.0" /> |
22 | 23 | ||
diff --git a/src/wix/WixToolset.Sdk/WixToolset.Sdk.nuspec b/src/wix/WixToolset.Sdk/WixToolset.Sdk.nuspec index 1f4e1cb3..12c121ce 100644 --- a/src/wix/WixToolset.Sdk/WixToolset.Sdk.nuspec +++ b/src/wix/WixToolset.Sdk/WixToolset.Sdk.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -18,6 +18,7 @@ | |||
18 | </metadata> | 18 | </metadata> |
19 | 19 | ||
20 | <files> | 20 | <files> |
21 | <file src="$eulaTxt$" /> | ||
21 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> | 22 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> |
22 | <file src="build\**\*" target="build" /> | 23 | <file src="build\**\*" target="build" /> |
23 | <file src="Sdk\**\*" target="Sdk" /> | 24 | <file src="Sdk\**\*" target="Sdk" /> |
diff --git a/src/wix/pack-wix/pack-wix.nuspec b/src/wix/pack-wix/pack-wix.nuspec index 8ecca0f2..eb065149 100644 --- a/src/wix/pack-wix/pack-wix.nuspec +++ b/src/wix/pack-wix/pack-wix.nuspec | |||
@@ -7,8 +7,8 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | 9 | <icon>wix.png</icon> |
10 | <license type="expression">MS-RL</license> | 10 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
@@ -18,6 +18,7 @@ | |||
18 | </metadata> | 18 | </metadata> |
19 | 19 | ||
20 | <files> | 20 | <files> |
21 | <file src="$eulaTxt$" /> | ||
21 | <file src="$projectFolder$\DotnetToolSettings.xml" target="tools\net6.0\any" /> | 22 | <file src="$projectFolder$\DotnetToolSettings.xml" target="tools\net6.0\any" /> |
22 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> | 23 | <file src="$projectFolder$\..\..\internal\images\wix.png" /> |
23 | <file src="**" target="tools\net6.0\any" exclude="**\*.xml;**\WixToolset.Core.Native.targets" /> | 24 | <file src="**" target="tools\net6.0\any" exclude="**\*.xml;**\WixToolset.Core.Native.targets" /> |