18 lines
448 B
XML
18 lines
448 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Models\BWPMModels.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|