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/ext/VisualStudio | |
| 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/ext/VisualStudio')
| -rw-r--r-- | src/ext/VisualStudio/README.md | 54 | ||||
| -rw-r--r-- | src/ext/VisualStudio/wixext/WixToolset.VisualStudio.wixext.csproj | 5 |
2 files changed, 57 insertions, 2 deletions
diff --git a/src/ext/VisualStudio/README.md b/src/ext/VisualStudio/README.md index 76fbd4ce..a418d49b 100644 --- a/src/ext/VisualStudio/README.md +++ b/src/ext/VisualStudio/README.md | |||
| @@ -1,2 +1,52 @@ | |||
| 1 | # VisualStudio.wixext | 1 | # WixToolset.VisualStudio.wixext - Visual Studio WiX Toolset Extension |
| 2 | WixToolset.VisualStudio.wixext - Visual Studio WiX Toolset Extension | 2 | |
| 3 | This WiX Extension provides support for configuring Visual Studio. | ||
| 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 | ## Getting started | ||
| 16 | |||
| 17 | Add the WiX Extension as a PackageReference to your .wixproj: | ||
| 18 | |||
| 19 | ``` | ||
| 20 | <Project Sdk="WixToolset.Sdk/6.0.0"> | ||
| 21 | <ItemGroup> | ||
| 22 | <PackageReference Include="WixToolset.VisualStudio.wixext" Version="6.0.0" /> | ||
| 23 | </ItemGroup> | ||
| 24 | </Project> | ||
| 25 | ``` | ||
| 26 | |||
| 27 | Then add the extension's namespace: | ||
| 28 | |||
| 29 | ``` | ||
| 30 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | ||
| 31 | xmlns:vs="http://wixtoolset.org/schemas/v4/wxs/vs"> | ||
| 32 | |||
| 33 | .. | ||
| 34 | </Wix> | ||
| 35 | ``` | ||
| 36 | |||
| 37 | ## Additional resources | ||
| 38 | |||
| 39 | * [WiX Website][web] | ||
| 40 | * [WiX Documentation][docs] | ||
| 41 | * [WiX Issue Tracker][issues] | ||
| 42 | * [WiX Discussions][discussions] | ||
| 43 | |||
| 44 | |||
| 45 | [web]: https://www.firegiant.com/wixtoolset/ | ||
| 46 | [docs]: https://docs.firegiant.com/wixtoolset/ | ||
| 47 | [issues]: https://github.com/wixtoolset/issues/issues | ||
| 48 | [discussions]: https://github.com/orgs/wixtoolset/discussions | ||
| 49 | [sdk]: https://www.nuget.org/packages/WixToolset.Sdk/ | ||
| 50 | [osmf]: https://opensourcemaintenancefee.org/ | ||
| 51 | [license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT | ||
| 52 | [eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt | ||
diff --git a/src/ext/VisualStudio/wixext/WixToolset.VisualStudio.wixext.csproj b/src/ext/VisualStudio/wixext/WixToolset.VisualStudio.wixext.csproj index 0224c98c..eb410c35 100644 --- a/src/ext/VisualStudio/wixext/WixToolset.VisualStudio.wixext.csproj +++ b/src/ext/VisualStudio/wixext/WixToolset.VisualStudio.wixext.csproj | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | <RootNamespace>WixToolset.VisualStudio</RootNamespace> | 7 | <RootNamespace>WixToolset.VisualStudio</RootNamespace> |
| 8 | <Description>WiX Toolset Visual Studio Extension</Description> | 8 | <Description>WiX Toolset Visual Studio Extension</Description> |
| 9 | <Title>WiX Toolset VS Extension</Title> | 9 | <Title>WiX Toolset VS Extension</Title> |
| 10 | <PackageReadmeFile>README.md</PackageReadmeFile> | ||
| 10 | <DebugType>embedded</DebugType> | 11 | <DebugType>embedded</DebugType> |
| 11 | </PropertyGroup> | 12 | </PropertyGroup> |
| 12 | 13 | ||
| @@ -16,6 +17,10 @@ | |||
| 16 | <EmbeddedResource Include="$(OutputPath)..\vs.wixlib" /> | 17 | <EmbeddedResource Include="$(OutputPath)..\vs.wixlib" /> |
| 17 | </ItemGroup> | 18 | </ItemGroup> |
| 18 | 19 | ||
| 20 | <ItemGroup> | ||
| 21 | <None Include="..\README.md" Pack="true" PackagePath="\" /> | ||
| 22 | </ItemGroup> | ||
| 23 | |||
| 19 | <ItemGroup Condition=" '$(NCrunch)'=='' "> | 24 | <ItemGroup Condition=" '$(NCrunch)'=='' "> |
| 20 | <ProjectReference Include="..\wixlib\vs.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> | 25 | <ProjectReference Include="..\wixlib\vs.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> |
| 21 | </ItemGroup> | 26 | </ItemGroup> |
