diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.WixBA/WixBA.cs | 6 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixToolset.WixBA.csproj (renamed from src/WixToolset.WixBA/WixBA.csproj) | 20 |
2 files changed, 19 insertions, 7 deletions
diff --git a/src/WixToolset.WixBA/WixBA.cs b/src/WixToolset.WixBA/WixBA.cs index fb69a346..e0444f06 100644 --- a/src/WixToolset.WixBA/WixBA.cs +++ b/src/WixToolset.WixBA/WixBA.cs | |||
@@ -1,6 +1,6 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.UX | 3 | namespace WixToolset.WixBA |
4 | { | 4 | { |
5 | using System; | 5 | using System; |
6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
@@ -12,7 +12,7 @@ namespace WixToolset.UX | |||
12 | using Threading = System.Windows.Threading; | 12 | using Threading = System.Windows.Threading; |
13 | using WinForms = System.Windows.Forms; | 13 | using WinForms = System.Windows.Forms; |
14 | 14 | ||
15 | using WixToolset.Bootstrapper; | 15 | using WixToolset.BootstrapperCore; |
16 | 16 | ||
17 | /// <summary> | 17 | /// <summary> |
18 | /// The WiX toolset user experience. | 18 | /// The WiX toolset user experience. |
@@ -142,7 +142,7 @@ namespace WixToolset.UX | |||
142 | } | 142 | } |
143 | 143 | ||
144 | /// <summary> | 144 | /// <summary> |
145 | /// Thread entry point for WiX Toolset UX. | 145 | /// Thread entry point for WiX Toolset Bootstrapper Application. |
146 | /// </summary> | 146 | /// </summary> |
147 | protected override void Run() | 147 | protected override void Run() |
148 | { | 148 | { |
diff --git a/src/WixToolset.WixBA/WixBA.csproj b/src/WixToolset.WixBA/WixToolset.WixBA.csproj index 6858b172..4ce98a03 100644 --- a/src/WixToolset.WixBA/WixBA.csproj +++ b/src/WixToolset.WixBA/WixToolset.WixBA.csproj | |||
@@ -3,9 +3,10 @@ | |||
3 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> | 3 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> |
4 | <PropertyGroup> | 4 | <PropertyGroup> |
5 | <ProjectGuid>{7C27518B-84AD-4679-8EF4-29DF552CF1AC}</ProjectGuid> | 5 | <ProjectGuid>{7C27518B-84AD-4679-8EF4-29DF552CF1AC}</ProjectGuid> |
6 | <AssemblyName>WixBA</AssemblyName> | 6 | <AssemblyName>WixToolset.WixBA</AssemblyName> |
7 | <OutputType>Library</OutputType> | 7 | <OutputType>Library</OutputType> |
8 | <RootNamespace>WixToolset.UX</RootNamespace> | 8 | <RootNamespace>WixToolset.WixBA</RootNamespace> |
9 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
9 | </PropertyGroup> | 10 | </PropertyGroup> |
10 | <ItemGroup> | 11 | <ItemGroup> |
11 | <Compile Include="Hresult.cs" /> | 12 | <Compile Include="Hresult.cs" /> |
@@ -15,6 +16,7 @@ | |||
15 | <Compile Include="ProgressViewModel.cs" /> | 16 | <Compile Include="ProgressViewModel.cs" /> |
16 | <Compile Include="RelayCommand.cs" /> | 17 | <Compile Include="RelayCommand.cs" /> |
17 | <Compile Include="InstallationViewModel.cs" /> | 18 | <Compile Include="InstallationViewModel.cs" /> |
19 | <Compile Include="WixDistribution.cs" /> | ||
18 | <Page Include="Styles.xaml"> | 20 | <Page Include="Styles.xaml"> |
19 | <Generator>MSBuild:Compile</Generator> | 21 | <Generator>MSBuild:Compile</Generator> |
20 | <SubType>Designer</SubType> | 22 | <SubType>Designer</SubType> |
@@ -36,6 +38,7 @@ | |||
36 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | 38 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
37 | <SubType>Designer</SubType> | 39 | <SubType>Designer</SubType> |
38 | </None> | 40 | </None> |
41 | <None Include="packages.config" /> | ||
39 | </ItemGroup> | 42 | </ItemGroup> |
40 | <ItemGroup> | 43 | <ItemGroup> |
41 | <Reference Include="PresentationCore" /> | 44 | <Reference Include="PresentationCore" /> |
@@ -52,7 +55,9 @@ | |||
52 | <Reference Include="System.Xml" /> | 55 | <Reference Include="System.Xml" /> |
53 | <Reference Include="System.Xaml" /> | 56 | <Reference Include="System.Xaml" /> |
54 | <Reference Include="WindowsBase" /> | 57 | <Reference Include="WindowsBase" /> |
55 | <ProjectReference Include="..\..\ext\BalExtension\mba\core\core.csproj" /> | 58 | <Reference Include="WixToolset.BootstrapperCore"> |
59 | <HintPath>..\..\packages\WixToolset.BootstrapperCore.4.0.3\lib\net20\WixToolset.BootstrapperCore.dll</HintPath> | ||
60 | </Reference> | ||
56 | </ItemGroup> | 61 | </ItemGroup> |
57 | <ItemGroup> | 62 | <ItemGroup> |
58 | <Resource Include="Resources\logo-white-hollow.png" /> | 63 | <Resource Include="Resources\logo-white-hollow.png" /> |
@@ -60,5 +65,12 @@ | |||
60 | <ItemGroup> | 65 | <ItemGroup> |
61 | <Resource Include="Resources\logo-black-hollow.png" /> | 66 | <Resource Include="Resources\logo-black-hollow.png" /> |
62 | </ItemGroup> | 67 | </ItemGroup> |
63 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | 68 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
69 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | ||
70 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
71 | <PropertyGroup> | ||
72 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||
73 | </PropertyGroup> | ||
74 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> | ||
75 | </Target> | ||
64 | </Project> \ No newline at end of file | 76 | </Project> \ No newline at end of file |