Skip to content

Commit 65bce68

Browse files
committed
Elucidate Windows Installer 2017-09-30
1 parent 876b026 commit 65bce68

10 files changed

Lines changed: 353 additions & 13 deletions

File tree

96.7 KB
Binary file not shown.
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<ProductVersion>3.5</ProductVersion>
7+
<ProjectGuid>{ea76fde5-c6ae-46b7-ada4-f3dc9dccc9fb}</ProjectGuid>
8+
<SchemaVersion>2.0</SchemaVersion>
9+
<OutputName>Elucidate Windows Installer</OutputName>
10+
<OutputType>Package</OutputType>
11+
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
12+
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
13+
<SccProjectName>SAK</SccProjectName>
14+
<SccProvider>SAK</SccProvider>
15+
<SccAuxPath>SAK</SccAuxPath>
16+
<SccLocalPath>SAK</SccLocalPath>
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
19+
<OutputPath>bin\$(Configuration)\</OutputPath>
20+
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
21+
<DefineConstants>Debug</DefineConstants>
22+
</PropertyGroup>
23+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
24+
<OutputPath>bin\$(Configuration)\</OutputPath>
25+
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
26+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
27+
<SuppressAllWarnings>False</SuppressAllWarnings>
28+
<Pedantic>True</Pedantic>
29+
<LeaveTemporaryFiles>False</LeaveTemporaryFiles>
30+
<SuppressPdbOutput>True</SuppressPdbOutput>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Compile Include="Product.wxs" />
34+
</ItemGroup>
35+
<ItemGroup>
36+
<Content Include="Banner.bmp" />
37+
<Content Include="GPLv2.rtf" />
38+
<Content Include="WixUIDialogBmp.bmp" />
39+
</ItemGroup>
40+
<ItemGroup>
41+
<WixExtension Include="WixUIExtension">
42+
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
43+
<Name>WixUIExtension</Name>
44+
</WixExtension>
45+
<WixExtension Include="WixUtilExtension">
46+
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
47+
<Name>WixUtilExtension</Name>
48+
</WixExtension>
49+
<WixExtension Include="WixNetFxExtension">
50+
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
51+
<Name>WixNetFxExtension</Name>
52+
</WixExtension>
53+
</ItemGroup>
54+
<ItemGroup>
55+
<ProjectReference Include="..\Elucidate\Elucidate.csproj">
56+
<Name>Elucidate</Name>
57+
<Project>{c45a0899-34d4-4cb0-b5ff-9dfadbc5e70e}</Project>
58+
<Private>True</Private>
59+
<DoNotHarvest>True</DoNotHarvest>
60+
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
61+
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
62+
</ProjectReference>
63+
</ItemGroup>
64+
<Import Project="$(WixTargetsPath)" />
65+
<!--
66+
To modify your build process, add your task inside one of the targets below and uncomment it.
67+
Other similar extension points exist, see Wix.targets.
68+
<Target Name="BeforeBuild">
69+
</Target>
70+
<Target Name="AfterBuild">
71+
</Target>
72+
-->
73+
</Project>

Elucidate/Elucidate Windows Installer/GPLv2.rtf

Lines changed: 58 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
3+
xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"
4+
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
5+
>
6+
7+
<?define MgtSource=$(sys.SOURCEFILEDIR)..\Elucidate\bin\Release ?>
8+
9+
<!-- do not change this ever !-->
10+
<?define UpgradeCode = "B015A529-67FB-4009-93A8-E7465CA191C1" ?>
11+
12+
<!-- Change this when creating new release YY-MM-DD.Build -->
13+
<?define Version = "!(bind.FileVersion.Elucidate.exe)" ?>
14+
15+
<?define ProductName = "Elucidate: A GUI to drive the SnapRAID command line (via .Net)"?>
16+
17+
<Product Version="$(var.Version)" Id="*" UpgradeCode="$(var.UpgradeCode)"
18+
Name="$(var.ProductName)" Language="1033" Manufacturer="https://github.com/Smurf-IV/Elucidate/" >
19+
20+
<Package Id="*" Keywords='Installer'
21+
InstallScope='perMachine'
22+
Description="$(var.ProductName)"
23+
Comments="Elucidate" InstallerVersion="401" Compressed="yes"
24+
AdminImage='no'
25+
Platform='x86'
26+
/>
27+
28+
<MajorUpgrade DowngradeErrorMessage="Downgrades are not allowed - Use add/remove from the control panel" />
29+
30+
<!-- Support Information shown in Add/Remove programs (this is optional) -->
31+
<Property Id="ARPHELPLINK" Value="https://github.com/Smurf-IV/Elucidate/docs" />
32+
<Property Id="ARPCOMMENTS" Value="https://github.com/Smurf-IV/Elucidate/issues"/>
33+
<Property Id="ARPCONTACT" Value="Smurf-IV" />
34+
<Property Id="ARPURLINFOABOUT" Value="https://github.com/Smurf-IV/Elucidate" />
35+
<Icon Id="InstallerIcon" SourceFile="$(sys.SOURCEFILEDIR)..\Elucidate\Elucidate.ico" />
36+
<Property Id="ARPPRODUCTICON" Value="InstallerIcon" />
37+
<WixVariable Id="WixUILicenseRtf" Value="GPLv2.rtf" />
38+
39+
<!-- Properties to allow detection of .Net installation -->
40+
<PropertyRef Id="NETFRAMEWORK45"/>
41+
42+
<Condition Message="[ProductName] Requires .NET Framework 4.5.1 or greater to be installed">
43+
<![CDATA[Installed OR (NETFRAMEWORK45 AND NETFRAMEWORK45 >= "#378675")]]>
44+
</Condition>
45+
<Condition Message="You need to be an administrator to install this product.">
46+
Privileged
47+
</Condition>
48+
49+
<!--Allow 7z / zip compression to squeeze this tighter -->
50+
<Media Id="1" Cabinet="Setup.cab" EmbedCab="yes" CompressionLevel="high" />
51+
52+
<Directory Id="TARGETDIR" Name="SourceDir">
53+
<Directory Id="ProgramFilesFolder">
54+
<Directory Id="INSTALLDIR" Name="Elucidate">
55+
<Directory Id="ClientDIR" Name="Elucidate Client">
56+
</Directory>
57+
<Directory Id="ServiceDIR" Name="Elucidate Service">
58+
</Directory>
59+
</Directory>
60+
</Directory>
61+
<Directory Id="ProgramMenuFolder">
62+
<Directory Id="ProgramMenuDir" Name="Elucidate"/>
63+
<Directory Id="StartupFolder" Name="Startup" />
64+
</Directory>
65+
66+
<Directory Id="CommonAppDataFolder" Name="CommonAppData">
67+
<Directory Id="ElucidateSvc_Data" Name="ElucidateSvc" >
68+
<Component Id="DataDir" Guid="01234567-7E98-44CE-B049-C477CC0A2B01" KeyPath="yes" />
69+
</Directory>
70+
</Directory>
71+
72+
</Directory>
73+
74+
<ComponentGroup Id="Client" Directory="ClientDIR">
75+
<Component Id="Client" Guid="5EBF3F29-9CF1-44FE-A94C-CC1B4FE09367" >
76+
<File Id="InstallerIcon" Name="Elucidate.ico" Source="$(sys.SOURCEFILEDIR)..\Elucidate\Elucidate.ico" />
77+
<File Id="Elucidate.exe" Name="Elucidate.exe" Source="$(var.MgtSource)\Elucidate.exe" KeyPath="yes" />
78+
</Component>
79+
<Component>
80+
<File Source="$(sys.SOURCEFILEDIR)..\Elucidate\ChangeLog.htm" KeyPath="yes" />
81+
</Component>
82+
<Component>
83+
<File Source="$(var.MgtSource)\Elucidate.exe.config" KeyPath="yes" />
84+
</Component>
85+
86+
<Component>
87+
<File Source="$(var.MgtSource)\AeroWizard.dll" KeyPath="yes" />
88+
</Component>
89+
<Component>
90+
<File Source="$(var.MgtSource)\CubicOrange.Windows.Forms.ActiveDirectory.dll" KeyPath="yes" />
91+
</Component>
92+
<Component>
93+
<File Source="$(var.MgtSource)\GroupControls.dll" KeyPath="yes" />
94+
</Component>
95+
<Component>
96+
<File Source="$(var.MgtSource)\Microsoft.Win32.TaskScheduler.dll" KeyPath="yes" />
97+
</Component>
98+
<Component>
99+
<File Source="$(var.MgtSource)\Microsoft.Win32.TaskSchedulerEditor.dll" KeyPath="yes" />
100+
</Component>
101+
102+
<Component>
103+
<File Source="$(var.MgtSource)\NLog.dll" KeyPath="yes" />
104+
</Component>
105+
<Component>
106+
<File Source="$(var.MgtSource)\TimeSpan2.dll" KeyPath="yes" />
107+
</Component>
108+
109+
<Component>
110+
<File Source="$(sys.SOURCEFILEDIR)GPLv2.rtf" KeyPath="yes" />
111+
</Component>
112+
<Component>
113+
<File Source="$(var.MgtSource)\wyDay.Controls\License.txt" KeyPath="yes" />
114+
</Component>
115+
</ComponentGroup>
116+
117+
<DirectoryRef Id="ProgramMenuDir">
118+
<Component Id="ProgramMenuDir2" Guid="11234567-7E98-44CE-B049-C477CC0A2B01">
119+
<Shortcut Id="Elucidate_Shortcut" Name="Elucidate MGT" Description="Elucidate Management Application" Target="[ClientDIR]Elucidate.exe" WorkingDirectory="ClientDIR" Icon="InstallerIcon" IconIndex="0" />
120+
<Shortcut Id="Elucidate_Start" Name="Elucidate MGT" Directory="StartupFolder" Description="Elucidate MGT Application" Target="[ClientDIR]Elucidate.exe" WorkingDirectory="ClientDIR" Icon="InstallerIcon" IconIndex="0" />
121+
<util:InternetShortcut Type="url" Id="Home" Name="Elucidate Forum" Target="[ARPHELPLINK]" />
122+
<util:InternetShortcut Type="link" Id="Change" Name="Change Log" Target="[ClientDIR]ChangeLog.htm"/>
123+
<util:InternetShortcut Type="url" Id="SnapRAID" Name="SnapRAID Forum" Target="https://sourceforge.net/projects/snapraid/forums/forum/1677233" />
124+
<RemoveFolder Id="ProgramMenuDir" On="uninstall"/>
125+
<RegistryValue Root="HKCU" Key="Software\Microsoft\Elucidate" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
126+
</Component>
127+
</DirectoryRef>
128+
129+
<Feature Id="ProductFeature" Title="Elucidate_Setup" Level="1">
130+
<ComponentRef Id="DataDir" />
131+
<ComponentGroupRef Id="Client" />
132+
<ComponentRef Id='ProgramMenuDir2'/>
133+
</Feature>
134+
135+
136+
<CustomAction Id="MgtApp" FileKey="Elucidate.exe" ExeCommand="" Return="asyncNoWait" />
137+
<util:CloseApplication CloseMessage="yes" Id="CloseElucidate" Target="Elucidate.exe" RebootPrompt="no"/>
138+
139+
<InstallUISequence>
140+
<Custom Action="WixCloseApplications" Before="LaunchConditions" />
141+
</InstallUISequence>
142+
143+
<!-- Now to sequence these Custom Actions in the execute sequence -->
144+
<InstallExecuteSequence>
145+
<Custom Action="WixCloseApplications" Before="LaunchConditions" />
146+
147+
<Custom Action="MgtApp" After="InstallFinalize">Not Installed</Custom>
148+
</InstallExecuteSequence>
149+
150+
<!-- Get the install to skip a few steps -->
151+
<UIRef Id="WixUI_Common" />
152+
<WixVariable Id="WixUIBannerBmp" Value="banner.bmp" />
153+
<!-- This just adds 90K on top of the UI Extension.dll -->
154+
<WixVariable Id="WixUIDialogBmp" Value="WixUIDialogBmp.bmp" />
155+
<!-- This just adds 390K on top of the UI Extension.dll -->
156+
<UI>
157+
<Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
158+
<TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
159+
<TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
160+
<TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
161+
162+
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
163+
<Property Id="ARPNOMODIFY" Value="1" />
164+
165+
<DialogRef Id="BrowseDlg" />
166+
<DialogRef Id="DiskCostDlg" />
167+
<DialogRef Id="ErrorDlg" />
168+
<DialogRef Id="FatalError" />
169+
<DialogRef Id="FilesInUse" />
170+
<DialogRef Id="MsiRMFilesInUse" />
171+
<DialogRef Id="PrepareDlg" />
172+
<DialogRef Id="ProgressDlg" />
173+
<DialogRef Id="ResumeDlg" />
174+
<DialogRef Id="UserExit" />
175+
176+
<Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
177+
<Publish Dialog="WelcomeEulaDlg" Control="Install" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
178+
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeEulaDlg" Order="1">NOT Installed</Publish>
179+
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed</Publish>
180+
181+
<Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
182+
<Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
183+
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
184+
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
185+
</UI>
186+
187+
<UIRef Id="WixUI_ErrorProgressText" />
188+
189+
</Product>
190+
</Wix>
460 KB
Binary file not shown.

Elucidate/Elucidate.sln

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26730.16
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elucidate", "Elucidate\Elucidate.csproj", "{C45A0899-34D4-4CB0-B5FF-9DFADBC5E70E}"
77
EndProject
8+
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "Elucidate Windows Installer", "Elucidate Windows Installer\Elucidate Windows Installer.wixproj", "{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -21,8 +23,18 @@ Global
2123
{C45A0899-34D4-4CB0-B5FF-9DFADBC5E70E}.Release|Any CPU.Build.0 = Release|Any CPU
2224
{C45A0899-34D4-4CB0-B5FF-9DFADBC5E70E}.Release|x86.ActiveCfg = Release|x86
2325
{C45A0899-34D4-4CB0-B5FF-9DFADBC5E70E}.Release|x86.Build.0 = Release|x86
26+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Debug|Any CPU.ActiveCfg = Debug|x86
27+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Debug|x86.ActiveCfg = Debug|x86
28+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Debug|x86.Build.0 = Debug|x86
29+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Release|Any CPU.ActiveCfg = Release|x86
30+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Release|Any CPU.Build.0 = Release|x86
31+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Release|x86.ActiveCfg = Release|x86
32+
{EA76FDE5-C6AE-46B7-ADA4-F3DC9DCCC9FB}.Release|x86.Build.0 = Release|x86
2433
EndGlobalSection
2534
GlobalSection(SolutionProperties) = preSolution
2635
HideSolutionNode = FALSE
2736
EndGlobalSection
37+
GlobalSection(ExtensibilityGlobals) = postSolution
38+
SolutionGuid = {39E6A612-AC12-4D63-BE2A-60EA16940A8A}
39+
EndGlobalSection
2840
EndGlobal

Elucidate/Elucidate/ChangeLog.htm

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<h1 style="font-family: Consolas; font-size: large; color: black; background: white;
2222
text-decoration: underline; font-weight: bold;">
2323
Welcome&nbsp;to&nbsp;the&nbsp;Elucidate&nbsp;Changelog</h1>
24-
Keep&nbsp;an&nbsp;open&nbsp;eye&nbsp;on&nbsp;the&nbsp;<a href="http://Elucidate.codeplex.com/">http://Elucidate.codeplex.com/</a>&nbsp;site.<br />
24+
Keep&nbsp;an&nbsp;open&nbsp;eye&nbsp;on&nbsp;the&nbsp;<a href="https://github.com/Smurf-IV/Elucidate">https://github.com/Smurf-IV/Elucidate</a>&nbsp;site.<br />
2525
&nbsp;<br />
2626
<h2>
2727
Some&nbsp;Helpful&nbsp;Information:</h2>
@@ -52,6 +52,16 @@ <h3>
5252
<h3>
5353
Done (Newest First):</h3>
5454
<table border="1" width="100%">
55+
<tr>
56+
<td class="style3">
57+
2017-09-##</td>
58+
<td>
59+
- Move to Github<br />
60+
- Make sure it still builds<br />
61+
- Make sure current function ality works with SnapRaid 10.0<br />
62+
- Change URLs to point to Github locations<br />
63+
- Use packag manager for external elements</td>
64+
</tr>
5565
<tr>
5666
<td class="style3">
5767
2015-03-##</td>

Elucidate/Elucidate/Elucidate.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,7 @@
120120
<HintPath>..\packages\NLog.3.2.0.0\lib\net45\NLog.dll</HintPath>
121121
</Reference>
122122
<Reference Include="System" />
123-
<Reference Include="System.Configuration" />
124-
<Reference Include="System.Data" />
125123
<Reference Include="System.Drawing" />
126-
<Reference Include="System.Web" />
127124
<Reference Include="System.Windows" />
128125
<Reference Include="System.Windows.Forms" />
129126
<Reference Include="System.Windows.Forms.DataVisualization" />
@@ -262,7 +259,9 @@
262259
<None Include="wyDay.Controls\Windows 7 Progress Bar, taskbar progress bar, open source C# control, .NET.website" />
263260
</ItemGroup>
264261
<ItemGroup>
265-
<Content Include="wyDay.Controls\License.txt" />
262+
<Content Include="wyDay.Controls\License.txt">
263+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
264+
</Content>
266265
<None Include="ChangeLog.htm" />
267266
<Content Include="Elucidate.ico" />
268267
<None Include="Resources\cam_48.png" />
@@ -298,7 +297,7 @@
298297
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
299298
<ProjectExtensions>
300299
<VisualStudio>
301-
<UserProperties BuildVersion_BuildVersioningStyle="YearStamp.MonthStamp.DayStamp.Increment" BuildVersion_UseGlobalSettings="True" />
300+
<UserProperties BuildVersion_UseGlobalSettings="True" BuildVersion_BuildVersioningStyle="YearStamp.MonthStamp.DayStamp.Increment" />
302301
</VisualStudio>
303302
</ProjectExtensions>
304303
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Elucidate/Elucidate/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
[assembly: AssemblyConfiguration("")]
3636
[assembly: AssemblyCompany("Smurf-IV")]
3737
[assembly: AssemblyProduct("Elucidate")]
38-
[assembly: AssemblyCopyright("Copyright © Simon Coghlan (Aka Smurf-IV) 2011-2015")]
38+
[assembly: AssemblyCopyright("Copyright © Simon Coghlan (Aka Smurf-IV) 2011-2017")]
3939
[assembly: AssemblyTrademark("")]
4040
[assembly: AssemblyCulture("")]
4141

@@ -54,5 +54,5 @@
5454
// Build Number - Increment
5555
// Revision - Day
5656
//
57-
[assembly: AssemblyVersion("15.3.501.31")]
58-
[assembly: AssemblyFileVersion("15.3.501.31")]
57+
[assembly: AssemblyVersion("15.3.601.31")]
58+
[assembly: AssemblyFileVersion("15.3.601.31")]
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="AdvancedWizard" version="4.0.0.0" targetFramework="net451" />
43
<package id="AeroWizard" version="2.0.6" targetFramework="net451" />
54
<package id="GroupControls" version="1.4.1" targetFramework="net451" />
65
<package id="NLog" version="3.2.0.0" targetFramework="net451" />
76
<package id="TaskScheduler" version="2.3.0" targetFramework="net451" />
87
<package id="TaskSchedulerEditor" version="2.3.0" targetFramework="net451" />
98
<package id="TimeSpan2" version="2.0.4" targetFramework="net451" />
10-
<package id="WinFormsWizard" version="1.2.0.14" targetFramework="net451" />
119
</packages>

0 commit comments

Comments
 (0)