-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathCefGlue.Demo.Avalonia.csproj
47 lines (40 loc) · 2 KB
/
CefGlue.Demo.Avalonia.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
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<RollForward>LatestMajor</RollForward>
<TargetFramework>$(DotnetVersion)</TargetFramework>
<AssemblyName>Xilium.CefGlue.Demo.Avalonia</AssemblyName>
<RootNamespace>Xilium.CefGlue.Demo.Avalonia</RootNamespace>
<RollForward>Major</RollForward>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug_WindowlessRender'">
<DefineConstants>$(DefineConstants);WINDOWLESS</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>Xilium.CefGlue.Demo.Avalonia</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>CefGlueDemoAvalonia</CFBundleDisplayName>
<CFBundleIdentifier>com.example</CFBundleIdentifier>
<CFBundleVersion>1.0.0</CFBundleVersion>
<CFBundlePackageType>AAPL</CFBundlePackageType>
<CFBundleSignature>4242</CFBundleSignature>
<CFBundleShortVersionString>DemoAvalonia</CFBundleShortVersionString>
<CFBundleExecutable>Xilium.CefGlue.Demo.Avalonia</CFBundleExecutable>
<CFBundleIconFile>AppName.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<Import Project="$(ProjectDir)..\CefGlue.CopyLocal.props" />
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" />
<PackageReference Include="Dotnet.Bundle" />
<PackageReference Include="Avalonia.Diagnostics" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CefGlue.Avalonia\CefGlue.Avalonia.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>