25 lines
763 B
XML
25 lines
763 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Extensions.Logging">
|
|
<HintPath>..\DLL\Microsoft.Extensions.Logging.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Microsoft.Extensions.Logging.Abstractions">
|
|
<HintPath>..\DLL\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>..\DLL\Newtonsoft.Json.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="SystemX.Core">
|
|
<HintPath>..\DLL\SystemX.Core.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|