-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextBridge.csproj
More file actions
36 lines (31 loc) · 1.34 KB
/
TextBridge.csproj
File metadata and controls
36 lines (31 loc) · 1.34 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<NoWarn>CS8981</NoWarn>
<ApplicationIcon>textbridge.ico</ApplicationIcon>
<AssemblyName>TextBridge</AssemblyName>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>None</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.7" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.7" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.7" />
<PackageReference Include="FluentAvaloniaUI" Version="2.0.5" />
<PackageReference Include="Xabbo.Common" Version="1.0.4" />
<PackageReference Include="Xabbo.Core" Version="1.0.0-beta.364" />
<PackageReference Include="Xabbo.GEarth" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="textbridge.ico" />
</ItemGroup>
</Project>