You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
734 B
22 lines
734 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
|
|
<PackageReference Include="MySqlConnector" Version="0.31.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DataService\DataService.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|