2024-11-30 23:05:07 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-02-14 01:43:52 +01:00
|
|
|
<PropertyGroup>
|
2025-09-29 11:16:14 +02:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-02-14 01:43:52 +01:00
|
|
|
<Platforms>x86;x64;arm64</Platforms>
|
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
|
|
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
2025-11-14 13:59:38 +01:00
|
|
|
<IsTrimmable>true</IsTrimmable>
|
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2025-02-14 01:43:52 +01:00
|
|
|
</PropertyGroup>
|
2025-10-12 16:23:33 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Misc\**" />
|
|
|
|
|
<EmbeddedResource Remove="Misc\**" />
|
|
|
|
|
<None Remove="Misc\**" />
|
|
|
|
|
</ItemGroup>
|
2025-02-14 01:43:52 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="HtmlAgilityPack" />
|
2025-02-16 01:44:41 +01:00
|
|
|
<PackageReference Include="Ical.Net" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
2025-07-30 23:36:10 +02:00
|
|
|
<PackageReference Include="Sentry.Serilog" />
|
2025-02-16 01:44:41 +01:00
|
|
|
<PackageReference Include="Serilog" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Debug" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
|
|
|
<PackageReference Include="Serilog.Exceptions" />
|
2026-03-16 12:12:13 +01:00
|
|
|
<PackageReference Include="Wino.Mail.Contracts" />
|
2025-02-14 01:43:52 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Wino.Core.Domain\Wino.Core.Domain.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wino.Messages\Wino.Messaging.csproj" />
|
|
|
|
|
</ItemGroup>
|
2026-03-16 01:33:27 +01:00
|
|
|
</Project>
|