Files
Discord-Client/Discord-Client-Custom.csproj
T
2023-03-11 08:45:22 -05:00

27 lines
714 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>Discord_Client_Custom</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Websocket.Client" Version="4.6.1" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Form1.resx">
<Generator></Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Debug_Utils\" />
</ItemGroup>
</Project>