mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 15:30:14 -04:00
28 lines
842 B
XML
28 lines
842 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>DynamicBible.DataPreparation</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>..\DynamicBibleUtility\dlls\Newtonsoft.Json.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0"/>
|
|
<PackageReference Include="Porter2Stemmer" Version="1.0.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Data\kjv_plus\sf_kjv_strongs_rev1b.xsd">
|
|
<SubType>Designer</SubType>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |