This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTitan.csproj
51 lines (47 loc) · 2.65 KB
/
Titan.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<PublishAot Condition="'$(Configuration)' == 'Release'">true</PublishAot>
<PublishTrimmed Condition="'$(Configuration)' == 'Release'">true</PublishTrimmed>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SourceRevisionId>build$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</SourceRevisionId>
<JsonSerializerIsReflectionEnabledByDefault>false</JsonSerializerIsReflectionEnabledByDefault>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.6" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.6" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.6" />
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.2.2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Material.Avalonia" Version="3.1.2" />
<PackageReference Include="Material.Avalonia.Dialogs" Version="3.1.2" />
<PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
<None Remove="Assets\Fonts\LICENSE.txt" />
<None Remove="Assets\Fonts\Roboto-Black.ttf" />
<None Remove="Assets\Fonts\Roboto-BlackItalic.ttf" />
<None Remove="Assets\Fonts\Roboto-Bold.ttf" />
<None Remove="Assets\Fonts\Roboto-BoldItalic.ttf" />
<None Remove="Assets\Fonts\Roboto-Italic.ttf" />
<None Remove="Assets\Fonts\Roboto-Light.ttf" />
<None Remove="Assets\Fonts\Roboto-LightItalic.ttf" />
<None Remove="Assets\Fonts\Roboto-Medium.ttf" />
<None Remove="Assets\Fonts\Roboto-MediumItalic.ttf" />
<None Remove="Assets\Fonts\Roboto-Regular.ttf" />
<None Remove="Assets\Fonts\Roboto-Thin.ttf" />
<None Remove="Assets\Fonts\Roboto-ThinItalic.ttf" />
</ItemGroup>
</Project>