mirror of
https://github.com/NoiTheCat/BirthdayBot.git
synced 2024-11-21 21:54:36 +00:00
Edit project properties, add global usings
Remaining files will be cleaned up over time
This commit is contained in:
parent
800bba2193
commit
9509f38d28
3 changed files with 10 additions and 17 deletions
|
@ -3,13 +3,10 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<Version>3.2.1</Version>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<PackageId>BirthdayBot</PackageId>
|
<Nullable>enable</Nullable>
|
||||||
|
<Version>3.2.2</Version>
|
||||||
<Authors>NoiTheCat</Authors>
|
<Authors>NoiTheCat</Authors>
|
||||||
<Description>Discord bot for birthday recognition and reminders.</Description>
|
|
||||||
<AssemblyName>BirthdayBot</AssemblyName>
|
|
||||||
<RootNamespace>BirthdayBot</RootNamespace>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
|
@ -28,7 +25,7 @@
|
||||||
<PackageReference Include="Discord.Net" Version="3.0.0-dev-20210822.1" />
|
<PackageReference Include="Discord.Net" Version="3.0.0-dev-20210822.1" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||||
<PackageReference Include="NodaTime" Version="3.0.9" />
|
<PackageReference Include="NodaTime" Version="3.0.9" />
|
||||||
<PackageReference Include="Npgsql" Version="6.0.0-rc.2" />
|
<PackageReference Include="Npgsql" Version="6.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -7,7 +7,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
<PublishProtocol>FileSystem</PublishProtocol>
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Any CPU</Platform>
|
<Platform>Any CPU</Platform>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
|
<PublishDir>bin\Release\net6.0\publish\</PublishDir>
|
||||||
|
<SelfContained>false</SelfContained>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,13 +1,8 @@
|
||||||
using BirthdayBot.BackgroundServices;
|
global using Discord;
|
||||||
|
global using Discord.WebSocket;
|
||||||
|
using BirthdayBot.BackgroundServices;
|
||||||
using BirthdayBot.UserInterface;
|
using BirthdayBot.UserInterface;
|
||||||
using Discord;
|
|
||||||
using Discord.WebSocket;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using static BirthdayBot.UserInterface.CommandsCommon;
|
using static BirthdayBot.UserInterface.CommandsCommon;
|
||||||
|
|
||||||
namespace BirthdayBot;
|
namespace BirthdayBot;
|
||||||
|
|
Loading…
Reference in a new issue