16 lines
387 B
XML
16 lines
387 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\NadekoBot.Core\NadekoBot.Core.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|