22 lines
852 B
XML
22 lines
852 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Platforms>x86;x64;arm64</Platforms>
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
|
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="TimePeriodLibrary.NET" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wino.Core.Domain\Wino.Core.Domain.csproj" />
|
|
<ProjectReference Include="..\Wino.Core.ViewModels\Wino.Core.ViewModels.csproj" />
|
|
<ProjectReference Include="..\Wino.Core\Wino.Core.csproj" />
|
|
<ProjectReference Include="..\Wino.Messages\Wino.Messaging.csproj" />
|
|
<ProjectReference Include="..\Wino.Services\Wino.Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|