CA_DirectoryChooser 1.0.0
See the version list below for details.
dotnet add package CA_DirectoryChooser --version 1.0.0
NuGet\Install-Package CA_DirectoryChooser -Version 1.0.0
<PackageReference Include="CA_DirectoryChooser" Version="1.0.0" />
paket add CA_DirectoryChooser --version 1.0.0
#r "nuget: CA_DirectoryChooser, 1.0.0"
// Install CA_DirectoryChooser as a Cake Addin #addin nuget:?package=CA_DirectoryChooser&version=1.0.0 // Install CA_DirectoryChooser as a Cake Tool #tool nuget:?package=CA_DirectoryChooser&version=1.0.0
WiX Custom Action - Directory Chooser
This is a CustomAction for a WiX Project (v3) which provides a handy dialog to choose a directory. <br />
<img src="https://github.com/wbicode/CA_DirectoryChooser/blob/develop/CA_DirectoryChooser/documentation/example.png?raw=true" alt="" style="float: left; margin-right: 10px;" />
Usage
Include the built CA_DirectoryChooser.CA.dll from this project in your own project or use the published nuget (defined in CA_DirectoryChooser/CA_DirectoryChooser.nuspec). <br />
Reference the .dll in your .wxs like so:
<Binary Id="CA_DirectoryChooser" SourceFile="pathToPackages/CA_DirectoryChooser.X.X.X/lib/net45/CA_DirectoryChooser.CA.dll" />
- "pathToPackages" could be $(var.SolutionDir)/packages
<br />
And now you can have your CustomAction: <br />
<CustomAction Id="OpenFileChooser" BinaryKey="CA_DirectoryChooser" DllEntry="OpenFileChooser" />
- Id can be something different
<br />
Which can now be called in the GUI (Publish element is a child of the Button-Control element) :
<Control Id="ChangeFolder" Type="PushButton" X="79" Y="158" Width="80" Height="17" Text="Browse"> <Publish Event="DoAction" Value="OpenFileChooser" Order="1">1</Publish> <Publish Property="LOG_PATH" Value="[CHOSEN_DIRECTORY]" Order="2">1</Publish> </Control>
After the OpenFileChooser-CustomAction the MSI property "CHOSEN_DIRECTORY" is set to the user-chosen directory. In the above example it's stored into LOG_PATH to be able to choose another directory later.
Customize Default Directory
Define the property "CA_DC_OPEN_DIR" (If you use multiple calls, use SetProperty with the attribute Before or After) to define the directory which gets opened at startup.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.2 | 854 | 3/12/2019 |
1.0.1 | 645 | 3/11/2019 |
1.0.0 | 636 | 3/5/2019 |
0.1.0-dev0008 | 511 | 3/5/2019 |
0.1.0-dev0007 | 500 | 3/5/2019 |
0.1.0-dev0006 | 489 | 3/5/2019 |
0.1.0-dev0004 | 501 | 3/5/2019 |
0.1.0-dev0003 | 473 | 3/4/2019 |
0.1.0-dev0002 | 452 | 3/4/2019 |
Initial Release