2017-09-29 22:46:33 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-10-04 22:51:12 +00:00
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2017-09-29 22:46:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-10-04 22:51:12 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputPath>..\src\NadekoBot\bin\$(Configuration)\netcoreapp2.0\modules\$(AssemblyName)\</OutputPath>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2017-09-29 22:46:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\NadekoBot.Core\NadekoBot.Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2017-10-09 00:52:46 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2017-09-29 22:46:33 +00:00
|
|
|
</Project>
|