forked from microsoft/botframework-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Bot.Components.Graph.csproj
42 lines (37 loc) · 1.76 KB
/
Microsoft.Bot.Components.Graph.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
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageId>Microsoft.Bot.Components.Graph</PackageId>
<VersionPrefix>1.4.2</VersionPrefix>
<Description>Custom actions for the MS Graph API for Bot Framework bots.</Description>
<Summary>A set of custom actions for working with the Microsoft Graph API from Bot Framework Composer.</Summary>
<PackageProjectUrl>https://github.com/Microsoft/botframework-components/tree/main/packages/Graph</PackageProjectUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\build\35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<DelaySign>true</DelaySign>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageTags>msbot-component;msbot-action</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Graph.Beta" Version="0.39.0-preview" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive.Runtime" Version="4.21.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Content Include="**/*.dialog" />
<Content Include="**/*.lg" />
<Content Include="**/*.lu" />
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
<Content Include="**/*.qna" />
<Content Include="README.md" />
</ItemGroup>
<PropertyGroup>
<!-- Disable warning for SA0001 "XML comment analysis is disabled due to project configuration" which is not true -->
<!-- Disable warning for SA1649 "file name should match first type name" due to use of generics -->
<NoWarn>$(NoWarn),SA0001,SA1649;CA1507</NoWarn>
</PropertyGroup>
</Project>