2022-06-29 12:59:53 -04:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<OutputType > WinExe</OutputType>
<TargetFramework > net6.0</TargetFramework>
<Nullable > enable</Nullable>
<!-- Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 -->
<TrimMode > copyused</TrimMode>
<BuiltInComInteropSupport > true</BuiltInComInteropSupport>
</PropertyGroup>
<ItemGroup >
<None Remove= ".gitignore" />
</ItemGroup>
<ItemGroup >
<!-- This helps with theme dll - s trimming.
If you will publish your application in self-contained mode with p:PublishTrimmed=true and it will use Fluent theme Default theme will be trimmed from the output and vice versa.
https://github.com/AvaloniaUI/Avalonia/issues/5593 -->
<TrimmableAssembly Include= "Avalonia.Themes.Fluent" />
<TrimmableAssembly Include= "Avalonia.Themes.Default" />
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Avalonia" Version= "0.10.15" />
<PackageReference Include= "Avalonia.Desktop" Version= "0.10.15" />
<!-- Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration. -->
<PackageReference Condition= "'$(Configuration)' == 'Debug'" Include= "Avalonia.Diagnostics" Version= "0.10.15" />
<PackageReference Include= "HyperText.Avalonia" Version= "1.0.0" />
<PackageReference Include= "MailKit" Version= "3.3.0" />
<PackageReference Include= "MimeKit" Version= "3.3.0" />
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.1" />
<PackageReference Include= "RestSharp" Version= "108.0.1" />
<PackageReference Include= "XamlNameReferenceGenerator" Version= "1.3.4" />
</ItemGroup>
2022-07-01 22:59:09 -04:00
<ItemGroup >
<ProjectReference Include= "..\ModelsLib\ModelsLib.fsproj" />
</ItemGroup>
2022-06-29 12:59:53 -04:00
</Project>