зеркало из
1
0
Форкнуть 0

Refactor: remove legacy common content

This commit is contained in:
Chris Maddock 2017-07-25 13:23:41 +01:00
Родитель b077486f11
Коммит 0695ad104c
11 изменённых файлов: 62 добавлений и 91 удалений

Просмотреть файл

@ -31,4 +31,6 @@ important top-level tasks to use are listed here:
FetchPackages Retrieves the latest versions of the required assemblies, from the latest NuGet packages.
CreateImage Extracts the assemblies from the NuGet packages, and adds other required files to an image directory.
PackageMsi Builds the MSI.
PackageZip Builds the Zip.
PackageAll Builds all distributables.
```

Просмотреть файл

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Include>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLDIR" Name="NUnit.org">
</Directory>
</Directory>
</Directory>
</Fragment>
</Include>

Просмотреть файл

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Include>
<Feature Id="NUNIT.COMMON"
ConfigurableDirectory="INSTALLDIR"
Level="1"
Absent="disallow"
Title="NUnit Common"
Description="Installs common NUnit files." >
<ComponentGroupRef Id="NUNIT.COMMON"/>
</Feature>
</Include>

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 29 KiB

После

Ширина:  |  Высота:  |  Размер: 29 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 152 KiB

После

Ширина:  |  Высота:  |  Размер: 152 KiB

Просмотреть файл

@ -35,23 +35,13 @@
</WixExtension>
</ItemGroup>
<ItemGroup>
<Content Include="..\common\common-directories.wxi">
<Link>common-directories.wxi</Link>
</Content>
<Content Include="..\common\common-features.wxi">
<Link>common-features.wxi</Link>
</Content>
<Content Include="..\common\common-files.wxi">
<Link>common-files.wxi</Link>
</Content>
<Content Include="..\common\variables.wxi">
<Link>variables.wxi</Link>
</Content>
<Content Include="addin-files.wxi" />
<Content Include="console-files.wxi" />
<Content Include="engine-files.wxi" />
<Content Include="runner-directories.wxi" />
<Content Include="runner-features.wxi" />
<Content Include="utility-files.wxi" />
<Content Include="variables.wxi" />
</ItemGroup>
<Import Project="$(WixTargetsPath)" />
</Project>

Просмотреть файл

@ -11,22 +11,17 @@
<MajorUpgrade DowngradeErrorMessage="A newer version is already installed; please uninstall it and re-run setup." AllowSameVersionUpgrades="yes" />
<!-- Include the information that is common to all installs -->
<?include ..\common\variables.wxi ?>
<!-- Features -->
<?include ..\common\common-features.wxi ?>
<?include variables.wxi ?>
<?include runner-features.wxi ?>
</Product>
<!-- Directories -->
<?include ..\common\common-directories.wxi ?>
<?include runner-directories.wxi ?>
<!-- Components and files -->
<?include ..\common\common-files.wxi ?>
<?include addin-files.wxi ?>
<?include console-files.wxi ?>
<?include engine-files.wxi ?>
<?include utility-files.wxi ?>
</Wix>

Просмотреть файл

@ -1,6 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLDIR" Name="NUnit.org">
</Directory>
</Directory>
</Directory>
<DirectoryRef Id="INSTALLDIR">
<Directory Id="CONSOLE_BIN" Name="nunit-console">
<Directory Id="ADDINS" Name="addins" />

Просмотреть файл

@ -6,7 +6,7 @@
Title="NUnit Runners"
Display="expand"
Description="Installs the NUnit engine and the console runner that allows you to run tests.">
<ComponentGroupRef Id="NUNIT.RUNNERS" />
<Feature Id="NUNIT.ENGINE"
Level="1"
Absent="disallow"

Просмотреть файл

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Include>
<Fragment>
<ComponentGroup Id="NUNIT.COMMON" Directory="INSTALLDIR">
<ComponentGroup Id="NUNIT.RUNNERS" Directory="INSTALLDIR">
<Component Id="COMPONENTS.txt" Location="local" Guid="DD64E89E-8ADC-42F7-8F53-6594A97C291C">
<File Id="COMPONENTS.txt" Source="$(var.InstallImage)\COMPONENTS.txt" />
</Component>

Просмотреть файл

@ -48,6 +48,6 @@
<UIRef Id="WixUI_Mondo" />
<UIRef Id="WixUI_ErrorProgressText" />
<WixVariable Id="WixUIBannerBmp" Value="..\common\banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="..\common\dialog.bmp" />
<WixVariable Id="WixUIBannerBmp" Value="banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="dialog.bmp" />
</Include>