17 lines
370 B
XML
17 lines
370 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="System.Data.Odbc" Version="5.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\DataClients\DataClients.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|