Target .NET 5
This commit is contained in:
parent
dee25fcc23
commit
8a04ace5c7
@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- This enables XML generation for Swashbuckle -->
|
<!-- This enables XML generation for Swashbuckle -->
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@ -26,4 +26,8 @@
|
|||||||
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="API" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -6,7 +6,7 @@ PluralKit is a Discord bot meant for plural communities. It has features like me
|
|||||||
PluralKit has a Discord server for support, feedback, and discussion: https://discord.gg/PczBt78
|
PluralKit has a Discord server for support, feedback, and discussion: https://discord.gg/PczBt78
|
||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
Running the bot requires [.NET Core](https://dotnet.microsoft.com/download) (v3.1) and a PostgreSQL database. It should function on any system where the prerequisites are set up (including Windows).
|
Running the bot requires [.NET 5](https://dotnet.microsoft.com/download) and a PostgreSQL database. It should function on any system where the prerequisites are set up (including Windows).
|
||||||
|
|
||||||
Optionally, it can integrate with [Sentry](https://sentry.io/welcome/) for error reporting and [InfluxDB](https://www.influxdata.com/products/influxdb-overview/) for aggregate statistics.
|
Optionally, it can integrate with [Sentry](https://sentry.io/welcome/) for error reporting and [InfluxDB](https://www.influxdata.com/products/influxdb-overview/) for aggregate statistics.
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ $ docker-compose up -d
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Manually
|
## Manually
|
||||||
* Install the .NET Core 3.1 SDK (see https://dotnet.microsoft.com/download)
|
* Install the .NET 5 SDK (see https://dotnet.microsoft.com/download)
|
||||||
* Clone this repository: `git clone https://github.com/xSke/PluralKit`
|
* Clone this repository: `git clone https://github.com/xSke/PluralKit`
|
||||||
* Create and fill in a `pluralkit.conf` file in the same directory as `docker-compose.yml`
|
* Create and fill in a `pluralkit.conf` file in the same directory as `docker-compose.yml`
|
||||||
* Run the bot: `dotnet run --project PluralKit.Bot`
|
* Run the bot: `dotnet run --project PluralKit.Bot`
|
||||||
|
Loading…
Reference in New Issue
Block a user