blob: cee2a9ccbb6647d7928e0c121f71c16e5208b1cb (
plain) (
blame)
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
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<RootNamespace>Erable</RootNamespace>
<Company>Alee Productions</Company>
<AssemblyVersion>0.0.1</AssemblyVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup>
<RuntimeIdentifiers>osx-x64</RuntimeIdentifiers>
<CFBundleName>Erable</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>Erable</CFBundleDisplayName>
<CFBundleIdentifier>xyz.aleeproductions</CFBundleIdentifier>
<CFBundleVersion>0.0.1</CFBundleVersion>
<CFBundleShortVersionString>0.0.1</CFBundleShortVersionString>
<CFBundlePackageType>AAPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>Erable</CFBundleExecutable>
<!-- <CFBundleIconFile>AppName.icns</CFBundleIconFile> Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.0" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.0" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.0" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.0" />
<PackageReference Include="Dotnet.Bundle" Version="0.9.13" />
<PackageReference Include="gstreamer-sharp-netcore" Version="0.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sirop.Backend\Sirop.Backend.csproj" />
</ItemGroup>
</Project>
|