2025-12-29 14:10:09 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
2026-03-27 21:00:02 +01:00
|
|
|
<IsAotCompatible>false</IsAotCompatible>
|
|
|
|
|
<IsTrimmable>false</IsTrimmable>
|
|
|
|
|
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
|
|
|
|
|
<EnableAotAnalyzer>false</EnableAotAnalyzer>
|
|
|
|
|
<EnableSingleFileAnalyzer>false</EnableSingleFileAnalyzer>
|
2025-12-29 14:10:09 +01:00
|
|
|
<Platforms>x86;x64;arm64</Platforms>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="FluentAssertions" />
|
|
|
|
|
<PackageReference Include="Moq" />
|
|
|
|
|
<PackageReference Include="Ical.Net" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-03-21 00:58:01 +01:00
|
|
|
<ProjectReference Include="..\Wino.Calendar.ViewModels\Wino.Calendar.ViewModels.csproj" />
|
2026-02-14 12:52:17 +01:00
|
|
|
<ProjectReference Include="..\Wino.Core\Wino.Core.csproj" />
|
2025-12-29 14:10:09 +01:00
|
|
|
<ProjectReference Include="..\Wino.Services\Wino.Services.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wino.Core.Domain\Wino.Core.Domain.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|