mirror of
https://github.com/yawaflua/Discord.Net.git
synced 2025-12-09 03:49:36 +02:00
21 lines
736 B
XML
21 lines
736 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Title>DiscordOAuth2</Title>
|
|
<Authors>x3rt</Authors>
|
|
<Description>Discord OAuth2 implementation for C# </Description>
|
|
<AssemblyName>x3rt.DiscordOAuth2</AssemblyName>
|
|
<RootNamespace>x3rt.DiscordOAuth2</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|