TestViewer.csproj 509 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWPF>true</UseWPF>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Include="..\StationProbe\Database.cs" Link="Database.cs" />
  10. <Compile Include="..\StationProbe\Entities.cs" Link="Entities.cs" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
  14. </ItemGroup>
  15. </Project>