aboutsummaryrefslogtreecommitdiff
path: root/Erable/Erable.csproj
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-08 00:00:49 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-08 00:00:49 -0500
commitf5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7 (patch)
tree6f5dbb64c68ff3bf8a2cd771366ac5ff466d183d /Erable/Erable.csproj
parentc7428fab1c38d29bcc50ee263678504e34d01318 (diff)
downloaderable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.tar.gz
erable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.tar.bz2
erable-godot-f5a7e3ef7e25aa2545f541e171f2d5f6fe43ecc7.zip
Erable playing audio in bg thread; Sirop backend initalized; Msgbox added
Diffstat (limited to 'Erable/Erable.csproj')
-rw-r--r--Erable/Erable.csproj27
1 files changed, 27 insertions, 0 deletions
diff --git a/Erable/Erable.csproj b/Erable/Erable.csproj
index b10f530..cee2a9c 100644
--- a/Erable/Erable.csproj
+++ b/Erable/Erable.csproj
@@ -3,7 +3,30 @@
<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\" />
@@ -14,6 +37,10 @@
<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>