Files
Wino-Mail/Wino.Services/Wino.Services.csproj
T

31 lines
1.2 KiB
XML
Raw Normal View History

<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" />
<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" />
2025-02-14 01:43:52 +01:00
<PackageReference Include="SqlKata" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wino.Core.Domain\Wino.Core.Domain.csproj" />
<ProjectReference Include="..\Wino.Messages\Wino.Messaging.csproj" />
</ItemGroup>
</Project>