forked from soxtoby/SlackNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SlackNet.Bot.csproj
31 lines (26 loc) · 1.15 KB
/
SlackNet.Bot.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
30
31
<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>
<NoWarn>1591</NoWarn>
<LangVersion>10</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\$(TargetFramework)\SlackNet.Bot.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SlackNet\SlackNet.csproj" />
</ItemGroup>
</Project>