forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Azure.Management.BotService.csproj
58 lines (55 loc) · 2.75 KB
/
Microsoft.Azure.Management.BotService.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<!-- Please do not move/edit code below this line -->
<Import Project="$(RepoEngPath)/mgmt/AzSdk.reference.props" />
<!-- Please do not move/edit code below this line -->
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.BotService</PackageId>
<Description>Microsoft Azure Management Bot Service Library</Description>
<VersionPrefix>0.9.3-preview</VersionPrefix>
<AssemblyName>Microsoft.Azure.Management.BotService</AssemblyName>
<PackageTags>Microsoft Azure Bot Service management;Bot;Bot Service;REST HTTP client;windowsazureofficial;netcore451511</PackageTags>
<PackageReleaseNotes>
<![CDATA[
This is a public preview release of the Azure Bot Service SDK. Included with this release are adjustments to bot creation, where we don't expose ways to create an AAD application anymore, pivoting users to do that calling the graph api or using the Azure AAD SDK.
]]>
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(SdkTargetFx)</TargetFrameworks>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="[2.28.3]" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.4' ">
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="[3.14.0]" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="[5.1.2]" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.ResourceManager" Version="1.6.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.ResourceManager.Fluent" Version="1.16.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\BotServiceErrorMessages.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>BotServiceErrorMessages.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\BotServiceErrorMessages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>BotServiceErrorMessages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Templates\functionapp.template.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\webapp.template.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<!-- Please do not move/edit code below this line -->
<Import Condition=" Exists('$([MSBuild]::GetPathOfFileAbove(AzSdk.RP.props))') " Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.RP.props'))" />
<!-- Please do not move/edit code above this line -->
</Project>