25 lines
849 B
XML
25 lines
849 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SQLVision.Core\SQLVision.Core.csproj" />
|
|
<ProjectReference Include="..\SQLVision.Services\SQLVision.Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- WinUI 3 -->
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.8.251106002" />
|
|
|
|
<!-- Графики -->
|
|
<PackageReference Include="LiveChartsCore.SkiaSharpView.WinUI" Version="2.0.0-rc5.3" />
|
|
</ItemGroup>
|
|
|
|
</Project> |