12345678910111213141516171819 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\StationProbe\Database.cs" Link="Database.cs" />
- <Compile Include="..\StationProbe\Entities.cs" Link="Entities.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
- </ItemGroup>
- </Project>
|