generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathAWS.Deploy.ServerMode.Client.csproj
More file actions
38 lines (33 loc) · 1.8 KB
/
AWS.Deploy.ServerMode.Client.csproj
File metadata and controls
38 lines (33 loc) · 1.8 KB
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">
<PropertyGroup>
<!-- The target framework is used by the toolkit and can only use netstandard2.0 -->
<TargetFramework>netstandard2.0</TargetFramework>
<Product>AWS .NET deployment tool Server Mode Client</Product>
<Description>Package to access the APIs exposed by the deployment tool server mode. This package is not intended for direct usage.</Description>
<PackageId>AWS.Deploy.ServerMode.Client</PackageId>
<PackageTags>AWS;Amazon;Deploy;ServerMode</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/aws/aws-dotnet-deploy</PackageProjectUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\public.snk</AssemblyOriginatorKeyFile>
<Version>2.0.5</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="4.0.3.18" />
<!-- We are pining Microsoft.AspNetCore.SignalR.Client to 8.0.0 to support VS versions prior to 17.14.
Currently, versions above 8.0.0 are only supported in VS 17.14 -->
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.0" />
<!-- We are pining Newtonsoft.Json to 13.0.1 to maintain compatibility with the VS Toolkit.
https://devblogs.microsoft.com/visualstudio/using-newtonsoft-json-in-a-visual-studio-extension/-->
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="..\..\NOTICE" Pack="true" PackagePath="" />
<None Include="..\..\THIRD_PARTY_LICENSES" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>