refactor as vknet extension

This commit is contained in:
Rostislav 2019-01-21 05:40:17 +05:00
commit cc36c930ec
18 changed files with 1285 additions and 0 deletions

25
Example/Example.csproj Normal file
View file

@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="nlog.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />
<PackageReference Include="VkNet" Version="1.41.0" />
<PackageReference Include="VkNet.NLog.Extensions.Logging" Version="1.3.1" />
</ItemGroup>
</Project>