Files

22 lines
925 B
XML
Raw Permalink Normal View History

2024-11-10 23:28:25 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<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>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
2025-11-14 13:59:38 +01:00
<IsTrimmable>true</IsTrimmable>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2024-11-10 23:28:25 +01:00
</PropertyGroup>
<ItemGroup>
2025-02-14 01:43:52 +01:00
<PackageReference Include="Microsoft.Identity.Client" />
<PackageReference Include="Sentry.Serilog" />
2025-02-14 01:43:52 +01:00
<PackageReference Include="System.Reactive" />
2024-11-10 23:28:25 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wino.Core.Domain\Wino.Core.Domain.csproj" />
<ProjectReference Include="..\Wino.Core\Wino.Core.csproj" />
<ProjectReference Include="..\Wino.Messages\Wino.Messaging.csproj" />
</ItemGroup>
2025-02-14 01:43:52 +01:00
</Project>