-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathSlackNet.Bot.csproj
More file actions
25 lines (21 loc) · 945 Bytes
/
SlackNet.Bot.csproj
File metadata and controls
25 lines (21 loc) · 945 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Simon Oxtoby</Authors>
<Description>Easy-to-use API for writing Slack bots</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/soxtoby/SlackNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/soxtoby/SlackNet.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Slack API RTM Bot</PackageTags>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NoWarn>1591</NoWarn>
<LangVersion>12</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\$(TargetFramework)\SlackNet.Bot.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SlackNet\SlackNet.csproj" />
</ItemGroup>
</Project>