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/WixToolset.Dtf.Resources | |
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/WixToolset.Dtf.Resources')
-rw-r--r-- | src/dtf/WixToolset.Dtf.Resources/README.md | 30 | ||||
-rw-r--r-- | src/dtf/WixToolset.Dtf.Resources/WixToolset.Dtf.Resources.csproj | 5 |
2 files changed, 35 insertions, 0 deletions
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> |