-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwitchIrcClient.csproj
29 lines (26 loc) · 1.1 KB
/
TwitchIrcClient.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<Platforms>AnyCPU;x64</Platforms>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>MIT</Copyright>
<Authors>HardstuckGuild (Plenyx)</Authors>
<Description>A simple client which lets you connect to Twitch chat using Twitch IRC.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.2.2</Version>
<PackageProjectUrl>https://github.com/HardstuckGuild/TwitchIrcClient</PackageProjectUrl>
<RepositoryUrl>https://github.com/HardstuckGuild/TwitchIrcClient.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Title>TwitchIrcClient</Title>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<PackageTags>hardstuck;twitchirc;twitchircclient</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>