forked from OutSystems/CefGlue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CefGlue.Demo.WPF.csproj
44 lines (35 loc) · 1.56 KB
/
CefGlue.Demo.WPF.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>$(DotnetVersion)-windows</TargetFramework>
<AssemblyName>Xilium.CefGlue.Demo.WPF</AssemblyName>
<RootNamespace>Xilium.CefGlue.Demo.WPF</RootNamespace>
<UseWPF>true</UseWPF>
<StartupObject>Xilium.CefGlue.Demo.WPF.Program</StartupObject>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug_WindowlessRender'">
<DebugType />
<DefineConstants>$(DefineConstants);WINDOWLESS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="App.xaml" />
<None Remove="BrowserView.xaml" />
<None Remove="MainWindow.xaml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="App.xaml" />
<EmbeddedResource Include="BrowserView.xaml">
<Generator>MSBuild:Compile</Generator>
</EmbeddedResource>
<EmbeddedResource Include="MainWindow.xaml" />
</ItemGroup>
<Import Project="$(ProjectDir)..\CefGlue.CopyLocal.props" />
<ItemGroup>
<ProjectReference Include="..\CefGlue.WPF\CefGlue.WPF.csproj" />
<ProjectReference Include="..\CefGlue\CefGlue.csproj" />
<ProjectReference Include="..\CefGlue.Common\CefGlue.Common.csproj" />
<ProjectReference Include="..\CefGlue.Common.Shared\CefGlue.Common.Shared.csproj" />
</ItemGroup>
<Import Project="$(ProjectDir)..\CefGlue.Common\build\CefGlue.Common.targets" />
</Project>