diff options
author | Rob Mensching <rob@firegiant.com> | 2025-04-04 13:33:48 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-04-04 16:08:37 -0700 |
commit | 90b1d345326fd05e701c82fa874590aeb6d1ee93 (patch) | |
tree | e93f29d3a253b061ce1c7828252a4522f6deca11 /src/dtf | |
parent | 532889b04d46ada4bfce65904f03c8f4db727368 (diff) | |
download | wix-90b1d345326fd05e701c82fa874590aeb6d1ee93.tar.gz wix-90b1d345326fd05e701c82fa874590aeb6d1ee93.tar.bz2 wix-90b1d345326fd05e701c82fa874590aeb6d1ee93.zip |
Update READMEs to include OSMF
Fixes 7862
Fixes 8974
Diffstat (limited to 'src/dtf')
17 files changed, 268 insertions, 1 deletions
diff --git a/src/dtf/WixToolset.Dtf.Compression.Cab/README.md b/src/dtf/WixToolset.Dtf.Compression.Cab/README.md new file mode 100644 index 00000000..d67ea7d1 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.Compression.Cab/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.Compression.Cab - managed cabinet compression API | ||
2 | |||
3 | The `WixToolset.Dtf.Compression.Cab` package contains the managed libraries for cabinet archive packing and unpacking. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.Compression.Cab/WixToolset.Dtf.Compression.Cab.csproj b/src/dtf/WixToolset.Dtf.Compression.Cab/WixToolset.Dtf.Compression.Cab.csproj index 08a88b30..e6ed8004 100644 --- a/src/dtf/WixToolset.Dtf.Compression.Cab/WixToolset.Dtf.Compression.Cab.csproj +++ b/src/dtf/WixToolset.Dtf.Compression.Cab/WixToolset.Dtf.Compression.Cab.csproj | |||
@@ -7,11 +7,13 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.Compression.Cab</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.Compression.Cab</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Managed libraries for cabinet archive packing and unpacking</Description> | 9 | <Description>Managed libraries for cabinet archive packing and unpacking</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
13 | <ItemGroup> | 14 | <ItemGroup> |
14 | <None Include="Errors.txt" /> | 15 | <None Include="Errors.txt" /> |
16 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
15 | <EmbeddedResource Include="Errors.resources" /> | 17 | <EmbeddedResource Include="Errors.resources" /> |
16 | </ItemGroup> | 18 | </ItemGroup> |
17 | 19 | ||
diff --git a/src/dtf/WixToolset.Dtf.Compression.Zip/README.md b/src/dtf/WixToolset.Dtf.Compression.Zip/README.md new file mode 100644 index 00000000..3837e985 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.Compression.Zip/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.Compression.Zip - managed zip compression API | ||
2 | |||
3 | The `WixToolset.Dtf.Compression.Zip` package contains the managed libraries for zip archive packing and unpacking. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.Compression.Zip/WixToolset.Dtf.Compression.Zip.csproj b/src/dtf/WixToolset.Dtf.Compression.Zip/WixToolset.Dtf.Compression.Zip.csproj index aa97019d..1d185162 100644 --- a/src/dtf/WixToolset.Dtf.Compression.Zip/WixToolset.Dtf.Compression.Zip.csproj +++ b/src/dtf/WixToolset.Dtf.Compression.Zip/WixToolset.Dtf.Compression.Zip.csproj | |||
@@ -7,10 +7,15 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.Compression.Zip</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.Compression.Zip</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Managed libraries for zip archive packing and unpacking</Description> | 9 | <Description>Managed libraries for zip archive packing and unpacking</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
13 | <ItemGroup> | 14 | <ItemGroup> |
15 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <ItemGroup> | ||
14 | <ProjectReference Include="..\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj" /> | 19 | <ProjectReference Include="..\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj" /> |
15 | </ItemGroup> | 20 | </ItemGroup> |
16 | </Project> | 21 | </Project> |
diff --git a/src/dtf/WixToolset.Dtf.Compression/README.md b/src/dtf/WixToolset.Dtf.Compression/README.md new file mode 100644 index 00000000..b96d3172 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.Compression/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.Compression - managed compression API | ||
2 | |||
3 | The `WixToolset.Dtf.Compression` package contains the abstract base libraries for archive packing and unpacking. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.Compression/WixToolset.Dtf.Compression.csproj b/src/dtf/WixToolset.Dtf.Compression/WixToolset.Dtf.Compression.csproj index 907e7a04..99a4017c 100644 --- a/src/dtf/WixToolset.Dtf.Compression/WixToolset.Dtf.Compression.csproj +++ b/src/dtf/WixToolset.Dtf.Compression/WixToolset.Dtf.Compression.csproj | |||
@@ -7,10 +7,12 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.Compression</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.Compression</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Abstract base libraries for archive packing and unpacking</Description> | 9 | <Description>Abstract base libraries for archive packing and unpacking</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
13 | <ItemGroup> | 14 | <ItemGroup> |
14 | <None Include="Compression.cd" /> | 15 | <None Include="Compression.cd" /> |
16 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
15 | </ItemGroup> | 17 | </ItemGroup> |
16 | </Project> | 18 | </Project> |
diff --git a/src/dtf/WixToolset.Dtf.CustomAction/README.md b/src/dtf/WixToolset.Dtf.CustomAction/README.md new file mode 100644 index 00000000..ad8621b0 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.CustomAction/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.CustomAction - the WiX Toolset Managed CustomAction Framework | ||
2 | |||
3 | The `WixToolset.Dtf.CustomAction` package enables developers to create managed custom actions for the Windows Installer. This package contains the tools necessary to convert your project into a managed custom action. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.csproj b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.csproj index 379aa194..9204e22b 100644 --- a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.csproj +++ b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.csproj | |||
@@ -7,7 +7,6 @@ | |||
7 | <IncludeBuildOutput>false</IncludeBuildOutput> | 7 | <IncludeBuildOutput>false</IncludeBuildOutput> |
8 | <Title>The WiX Toolset Managed CustomAction Framework.</Title> | 8 | <Title>The WiX Toolset Managed CustomAction Framework.</Title> |
9 | <Description>The WiX Toolset lets developers create managed custom actions for the Windows Installer. This package contains the tools necessary to convert your project into a managed custom action.</Description> | 9 | <Description>The WiX Toolset lets developers create managed custom actions for the Windows Installer. This package contains the tools necessary to convert your project into a managed custom action.</Description> |
10 | |||
11 | <NuspecBasePath>$(OutputPath)</NuspecBasePath> | 10 | <NuspecBasePath>$(OutputPath)</NuspecBasePath> |
12 | </PropertyGroup> | 11 | </PropertyGroup> |
13 | 12 | ||
diff --git a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec index 8eb7110f..bac680dc 100644 --- a/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec +++ b/src/dtf/WixToolset.Dtf.CustomAction/WixToolset.Dtf.CustomAction.nuspec | |||
@@ -7,6 +7,7 @@ | |||
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>icon.png</icon> | 9 | <icon>icon.png</icon> |
10 | <readme>README.md</readme> | ||
10 | <license type="file">OSMFEULA.txt</license> | 11 | <license type="file">OSMFEULA.txt</license> |
11 | <requireLicenseAcceptance>true</requireLicenseAcceptance> | 12 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
12 | <tags>$packageTags$ CustomActions</tags> | 13 | <tags>$packageTags$ CustomActions</tags> |
@@ -21,6 +22,7 @@ | |||
21 | <files> | 22 | <files> |
22 | <file src="$eulaTxt$" /> | 23 | <file src="$eulaTxt$" /> |
23 | <file src="$iconPng$" /> | 24 | <file src="$iconPng$" /> |
25 | <file src="$projectFolder$\README.md" /> | ||
24 | <file src="$projectFolder$\$id$.targets" target="build" /> | 26 | <file src="$projectFolder$\$id$.targets" target="build" /> |
25 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe" target="tools" /> | 27 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe" target="tools" /> |
26 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe.config" target="tools" /> | 28 | <file src="net472\WixToolset.Dtf.MakeSfxCA.exe.config" target="tools" /> |
diff --git a/src/dtf/WixToolset.Dtf.Resources/README.md b/src/dtf/WixToolset.Dtf.Resources/README.md new file mode 100644 index 00000000..00b0ea18 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.Resources/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.Resources - managed executable resource API | ||
2 | |||
3 | The `WixToolset.Dtf.Resources` package contains support for reading and writing resource data in executable files. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.Resources/WixToolset.Dtf.Resources.csproj b/src/dtf/WixToolset.Dtf.Resources/WixToolset.Dtf.Resources.csproj index 89bff841..41f55dcd 100644 --- a/src/dtf/WixToolset.Dtf.Resources/WixToolset.Dtf.Resources.csproj +++ b/src/dtf/WixToolset.Dtf.Resources/WixToolset.Dtf.Resources.csproj | |||
@@ -7,6 +7,11 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.Resources</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.Resources</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Classes for reading and writing resource data in executable files</Description> | 9 | <Description>Classes for reading and writing resource data in executable files</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
13 | |||
14 | <ItemGroup> | ||
15 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
16 | </ItemGroup> | ||
12 | </Project> | 17 | </Project> |
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/README.md b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/README.md new file mode 100644 index 00000000..c667bd4c --- /dev/null +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.WindowsInstaller.Linq - managed Widows Installer LINQ extensions | ||
2 | |||
3 | The `WixToolset.Dtf.WindowsInstaller.Linq` package contains the LINQ extensions for the managed Windows Installer API. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/WixToolset.Dtf.WindowsInstaller.Linq.csproj b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/WixToolset.Dtf.WindowsInstaller.Linq.csproj index fbc85880..010fc5af 100644 --- a/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/WixToolset.Dtf.WindowsInstaller.Linq.csproj +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/WixToolset.Dtf.WindowsInstaller.Linq.csproj | |||
@@ -7,10 +7,15 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller.Linq</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller.Linq</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net35</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net35</TargetFrameworks> |
9 | <Description>LINQ extensions for Windows Installer classes</Description> | 9 | <Description>LINQ extensions for Windows Installer classes</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
13 | <ItemGroup> | 14 | <ItemGroup> |
15 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <ItemGroup> | ||
14 | <ProjectReference Include="..\WixToolset.Dtf.WindowsInstaller\WixToolset.Dtf.WindowsInstaller.csproj" /> | 19 | <ProjectReference Include="..\WixToolset.Dtf.WindowsInstaller\WixToolset.Dtf.WindowsInstaller.csproj" /> |
15 | </ItemGroup> | 20 | </ItemGroup> |
16 | </Project> | 21 | </Project> |
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/README.md b/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/README.md new file mode 100644 index 00000000..e9eea708 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.WindowsInstaller.Package - managed extended Windows Installer API | ||
2 | |||
3 | The `WixToolset.Dtf.WindowsInstaller.Package` package contains extended managed libraries for accessing the Windows Installer API. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/WixToolset.Dtf.WindowsInstaller.Package.csproj b/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/WixToolset.Dtf.WindowsInstaller.Package.csproj index b3952177..85442fc4 100644 --- a/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/WixToolset.Dtf.WindowsInstaller.Package.csproj +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller.Package/WixToolset.Dtf.WindowsInstaller.Package.csproj | |||
@@ -7,10 +7,15 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller.Package</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller.Package</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Extended managed libraries for Windows Installer</Description> | 9 | <Description>Extended managed libraries for Windows Installer</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
13 | <ItemGroup> | 14 | <ItemGroup> |
15 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <ItemGroup> | ||
14 | <ProjectReference Include="..\WixToolset.Dtf.WindowsInstaller\WixToolset.Dtf.WindowsInstaller.csproj" /> | 19 | <ProjectReference Include="..\WixToolset.Dtf.WindowsInstaller\WixToolset.Dtf.WindowsInstaller.csproj" /> |
15 | <ProjectReference Include="..\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj" /> | 20 | <ProjectReference Include="..\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj" /> |
16 | <ProjectReference Include="..\WixToolset.Dtf.Compression.Cab\WixToolset.Dtf.Compression.Cab.csproj" /> | 21 | <ProjectReference Include="..\WixToolset.Dtf.Compression.Cab\WixToolset.Dtf.Compression.Cab.csproj" /> |
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller/README.md b/src/dtf/WixToolset.Dtf.WindowsInstaller/README.md new file mode 100644 index 00000000..22cefde7 --- /dev/null +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller/README.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # WixToolset.Dtf.WindowsInstaller - managed Windows Installer API | ||
2 | |||
3 | The `WixToolset.Dtf.WindowsInstaller` package contains managed libraries for accessing the Windows Installer. | ||
4 | |||
5 | [Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions] | ||
6 | |||
7 | |||
8 | ## Open Source Maintenance Fee | ||
9 | |||
10 | To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula]. | ||
11 | |||
12 | To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset). | ||
13 | |||
14 | |||
15 | ## Additional resources | ||
16 | |||
17 | * [WiX Website][web] | ||
18 | * [WiX Documentation][docs] | ||
19 | * [WiX Issue Tracker][issues] | ||
20 | * [WiX Discussions][discussions] | ||
21 | |||
22 | |||
23 | [web]: https://www.firegiant.com/wixtoolset/ | ||
24 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
25 | [issues]: https://github.com/wixtoolset/issues/issues | ||
26 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
27 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
28 | [osmf]: https://opensourcemaintenancefee.org/ | ||
29 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
30 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller/WixToolset.Dtf.WindowsInstaller.csproj b/src/dtf/WixToolset.Dtf.WindowsInstaller/WixToolset.Dtf.WindowsInstaller.csproj index 117a4114..55a9dc79 100644 --- a/src/dtf/WixToolset.Dtf.WindowsInstaller/WixToolset.Dtf.WindowsInstaller.csproj +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller/WixToolset.Dtf.WindowsInstaller.csproj | |||
@@ -7,6 +7,7 @@ | |||
7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller</AssemblyName> | 7 | <AssemblyName>WixToolset.Dtf.WindowsInstaller</AssemblyName> |
8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | 8 | <TargetFrameworks>netstandard2.0;net20</TargetFrameworks> |
9 | <Description>Managed libraries for Windows Installer</Description> | 9 | <Description>Managed libraries for Windows Installer</Description> |
10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
10 | <CreateDocumentationFile>true</CreateDocumentationFile> | 11 | <CreateDocumentationFile>true</CreateDocumentationFile> |
11 | </PropertyGroup> | 12 | </PropertyGroup> |
12 | 13 | ||
@@ -17,6 +18,7 @@ | |||
17 | <ItemGroup> | 18 | <ItemGroup> |
18 | <None Include="Errors.txt" /> | 19 | <None Include="Errors.txt" /> |
19 | <None Include="WindowsInstaller.cd" /> | 20 | <None Include="WindowsInstaller.cd" /> |
21 | <None Include="README.md" Pack="true" PackagePath="\" /> | ||
20 | </ItemGroup> | 22 | </ItemGroup> |
21 | 23 | ||
22 | <ItemGroup Condition=" '$(TargetFramework)'=='net20' "> | 24 | <ItemGroup Condition=" '$(TargetFramework)'=='net20' "> |