-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathBot.Builder.Community.Components.Dialogs.GetWeather.csproj
38 lines (33 loc) · 1.6 KB
/
Bot.Builder.Community.Components.Dialogs.GetWeather.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)../', 'Bot.Builder.Community.sln'))\CommonTargets\library.shared.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Dialogs to provide getWeather utterance handling.</Description>
<Authors>Bot Builder Community</Authors>
<Company>Bot Builder Community</Company>
<PackageLicenseUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/tree/master/libraries/Bot.Builder.Community.Components.Dialogs.GetWeather</PackageProjectUrl>
<Version>1.0.0</Version>
<FileVersion>1.0.0</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageIcon>package-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ContentTargetFolders>content</ContentTargetFolders>
<releaseNotes>First version of GetWeather package</releaseNotes>
<PackageTags>msbot-component;msbot-content;botbuildercommunity</PackageTags>
<NoWarn>$(NoWarn);NU5104</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="exported/**/*.*" Pack="true" PackagePath="exported" />
</ItemGroup>
<ItemGroup>
<None Remove="package.json" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\package-icon.png" Link="package-icon.png">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
</ItemGroup>
</Project>