diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-02-15 18:49:04 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-05-11 19:11:19 -0500 |
commit | 8d92f6d48aa428b1e92a26de53fbf511e780793c (patch) | |
tree | 2cae54263f282fb1a3c611972db825a3a9c3f5ea /src/WixToolset.WixBA/WixBA.csproj | |
parent | daf23d01f667ac66aac90cbc7c8a5a4f02e17a9f (diff) | |
download | wix-8d92f6d48aa428b1e92a26de53fbf511e780793c.tar.gz wix-8d92f6d48aa428b1e92a26de53fbf511e780793c.tar.bz2 wix-8d92f6d48aa428b1e92a26de53fbf511e780793c.zip |
Import WixBA from old v4 repo
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.WixBA/WixBA.csproj | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/WixToolset.WixBA/WixBA.csproj b/src/WixToolset.WixBA/WixBA.csproj new file mode 100644 index 00000000..6858b172 --- /dev/null +++ b/src/WixToolset.WixBA/WixBA.csproj | |||
@@ -0,0 +1,64 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- 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. --> | ||
3 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> | ||
4 | <PropertyGroup> | ||
5 | <ProjectGuid>{7C27518B-84AD-4679-8EF4-29DF552CF1AC}</ProjectGuid> | ||
6 | <AssemblyName>WixBA</AssemblyName> | ||
7 | <OutputType>Library</OutputType> | ||
8 | <RootNamespace>WixToolset.UX</RootNamespace> | ||
9 | </PropertyGroup> | ||
10 | <ItemGroup> | ||
11 | <Compile Include="Hresult.cs" /> | ||
12 | <Compile Include="Model.cs" /> | ||
13 | <Compile Include="BrowserProperties.cs" /> | ||
14 | <Compile Include="NewsItem.cs" /> | ||
15 | <Compile Include="ProgressViewModel.cs" /> | ||
16 | <Compile Include="RelayCommand.cs" /> | ||
17 | <Compile Include="InstallationViewModel.cs" /> | ||
18 | <Page Include="Styles.xaml"> | ||
19 | <Generator>MSBuild:Compile</Generator> | ||
20 | <SubType>Designer</SubType> | ||
21 | </Page> | ||
22 | <Page Include="RootView.xaml"> | ||
23 | <Generator>MSBuild:Compile</Generator> | ||
24 | <SubType>Designer</SubType> | ||
25 | </Page> | ||
26 | <Compile Include="PropertyNotifyBase.cs" /> | ||
27 | <Compile Include="RootView.xaml.cs"> | ||
28 | <DependentUpon>RootView.xaml</DependentUpon> | ||
29 | </Compile> | ||
30 | <Compile Include="RootViewModel.cs" /> | ||
31 | <Compile Include="UpdateViewModel.cs" /> | ||
32 | <Compile Include="WindowProperties.cs" /> | ||
33 | <Compile Include="WixBA.cs" /> | ||
34 | <Compile Include="Properties\AssemblyInfo.cs" /> | ||
35 | <None Include="WixBA.BootstrapperCore.config"> | ||
36 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
37 | <SubType>Designer</SubType> | ||
38 | </None> | ||
39 | </ItemGroup> | ||
40 | <ItemGroup> | ||
41 | <Reference Include="PresentationCore" /> | ||
42 | <Reference Include="PresentationFramework" /> | ||
43 | <Reference Include="System" /> | ||
44 | <Reference Include="System.ComponentModel.DataAnnotations" /> | ||
45 | <Reference Include="System.Core" /> | ||
46 | <Reference Include="System.Drawing"> | ||
47 | <Private>False</Private> | ||
48 | </Reference> | ||
49 | <Reference Include="System.ServiceModel" /> | ||
50 | <Reference Include="System.Windows.Forms" /> | ||
51 | <Reference Include="System.Xml.Linq" /> | ||
52 | <Reference Include="System.Xml" /> | ||
53 | <Reference Include="System.Xaml" /> | ||
54 | <Reference Include="WindowsBase" /> | ||
55 | <ProjectReference Include="..\..\ext\BalExtension\mba\core\core.csproj" /> | ||
56 | </ItemGroup> | ||
57 | <ItemGroup> | ||
58 | <Resource Include="Resources\logo-white-hollow.png" /> | ||
59 | </ItemGroup> | ||
60 | <ItemGroup> | ||
61 | <Resource Include="Resources\logo-black-hollow.png" /> | ||
62 | </ItemGroup> | ||
63 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
64 | </Project> \ No newline at end of file | ||