12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>$(DefineConstants)</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>$(DefineConstants)</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.10" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\NativeLibraryLoader\NativeLibraryLoader.csproj" />
- </ItemGroup>
- </Project>
|