summaryrefslogtreecommitdiff
path: root/src/test/dtf/EmbeddedUI/EmbeddedUI.csproj
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-03-31 11:56:14 -0700
committerRob Mensching <rob@firegiant.com>2022-03-31 18:01:06 -0700
commit47582b162368e8edf7a3b11c13b8e9dabc5f0a26 (patch)
tree2c4063eff325684bed39de0edacd7866a257ae02 /src/test/dtf/EmbeddedUI/EmbeddedUI.csproj
parent167296c42497c4e95f0d5d71168542d747655981 (diff)
downloadwix-47582b162368e8edf7a3b11c13b8e9dabc5f0a26.tar.gz
wix-47582b162368e8edf7a3b11c13b8e9dabc5f0a26.tar.bz2
wix-47582b162368e8edf7a3b11c13b8e9dabc5f0a26.zip
Provide managed CA and Embedded UI DTF libraries via NuGet
Lots of refactoring to bring the SFX tooling back into the 'dtf' layer since they are (in the end) tightly coupled to some DTF assemblies. Also refactored the DTF tests into their own folder and added a couple integration tests to build using the new CA/UI NuGet package. Closes wixtoolset/issues#6080
Diffstat (limited to 'src/test/dtf/EmbeddedUI/EmbeddedUI.csproj')
-rw-r--r--src/test/dtf/EmbeddedUI/EmbeddedUI.csproj49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/test/dtf/EmbeddedUI/EmbeddedUI.csproj b/src/test/dtf/EmbeddedUI/EmbeddedUI.csproj
new file mode 100644
index 00000000..9f745a19
--- /dev/null
+++ b/src/test/dtf/EmbeddedUI/EmbeddedUI.csproj
@@ -0,0 +1,49 @@
1<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <PropertyGroup>
3 <ProjectGuid>{864B8C50-7895-4485-AC89-900D86FD8C0D}</ProjectGuid>
4 <OutputType>Library</OutputType>
5 <RootNamespace>WixToolset.Samples.EmbeddedUI</RootNamespace>
6 <AssemblyName>WixToolset.Samples.EmbeddedUI</AssemblyName>
7 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
8 <FileAlignment>512</FileAlignment>
9 </PropertyGroup>
10
11 <ItemGroup>
12 <Compile Include="AssemblyInfo.cs" />
13 <Compile Include="InstallProgressCounter.cs" />
14 <Compile Include="SampleEmbeddedUI.cs" />
15 <Compile Include="SetupWizard.xaml.cs">
16 <DependentUpon>SetupWizard.xaml</DependentUpon>
17 </Compile>
18 </ItemGroup>
19
20 <ItemGroup>
21 <Page Include="SetupWizard.xaml">
22 <Generator>MSBuild:Compile</Generator>
23 <SubType>Designer</SubType>
24 </Page>
25 </ItemGroup>
26
27 <ItemGroup>
28 <Reference Include="PresentationCore">
29 <RequiredTargetFramework>3.0</RequiredTargetFramework>
30 </Reference>
31 <Reference Include="PresentationFramework">
32 <RequiredTargetFramework>3.0</RequiredTargetFramework>
33 </Reference>
34 <Reference Include="System" />
35 <Reference Include="System.Core">
36 <RequiredTargetFramework>3.5</RequiredTargetFramework>
37 </Reference>
38 <Reference Include="System.Xml" />
39 <Reference Include="WindowsBase">
40 <RequiredTargetFramework>3.0</RequiredTargetFramework>
41 </Reference>
42 </ItemGroup>
43
44 <ItemGroup>
45 <PackageReference Include="WixToolset.Dtf.CustomAction" />
46 </ItemGroup>
47
48 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
49</Project>