-
Notifications
You must be signed in to change notification settings - Fork 48
/
SampleWebView.Avalonia.csproj
executable file
·53 lines (46 loc) · 2.04 KB
/
SampleWebView.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
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>$(TargetDotnetVersion)</TargetFramework>
<RollForward>LatestMajor</RollForward>
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
<RuntimeIdentifiers>osx-x64;win-x64;osx-arm64;win-arm64</RuntimeIdentifiers>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>SampleWebView.Avalonia</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>SampleWebView</CFBundleDisplayName>
<CFBundleIdentifier>com.example</CFBundleIdentifier>
<CFBundleVersion>1.0.0</CFBundleVersion>
<CFBundlePackageType>AAPL</CFBundlePackageType>
<CFBundleSignature>4242</CFBundleSignature>
<CFBundleShortVersionString>DemoAvalonia</CFBundleShortVersionString>
<CFBundleExecutable>SampleWebView.Avalonia</CFBundleExecutable>
<CFBundleIconFile>AppName.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<ItemGroup>
<None Remove="App.xaml" />
<None Remove="MainWindow.xaml" />
<None Remove="tmp\**\*.*" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
</AvaloniaResource >
<AvaloniaResource Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
</AvaloniaResource >
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" />
<PackageReference Include="Avalonia.ReactiveUI" />
<PackageReference Include="Avalonia.Themes.Fluent" />
<PackageReference Include="Dotnet.Bundle" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WebViewControl.Avalonia\WebViewControl.Avalonia.csproj" />
</ItemGroup>
</Project>