1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <Import Project =" $(ProjectDir)..\Dependencies.Client.targets" />
4
+
5
+ <PropertyGroup >
6
+ <TargetFramework >netstandard2.0</TargetFramework >
7
+ <AssemblyName >Microsoft.Azure.PowerShell.Clients.Monitor</AssemblyName >
8
+ <RootNamespace >Microsoft.Azure.Commands.Common.Monitor</RootNamespace >
9
+ <OutputPath >$(ProjectDir)..\..\artifacts\$(Configuration)</OutputPath >
10
+ <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
11
+ <WarningsAsErrors />
12
+ </PropertyGroup >
13
+
14
+ <PropertyGroup >
15
+ <Title >Microsoft Azure PowerShell Clients Monitor</Title >
16
+ <Description >Microsoft Azure PowerShell Clients Monitor library. Only for use with the Azure PowerShell runtime. Not intended for general development use.</Description >
17
+ <PackageTags >azure;powershell;clients;monitor</PackageTags >
18
+ <Authors >Microsoft Corporation</Authors >
19
+ <Copyright >Copyright © Microsoft Corporation</Copyright >
20
+ <PackageLicenseUrl >https://aka.ms/azps-common-license</PackageLicenseUrl >
21
+ <PackageProjectUrl >https://github.com/Azure/azure-powershell-common</PackageProjectUrl >
22
+ <PackageOutputPath >$(ProjectDir)..\..\artifacts\Package\$(Configuration)</PackageOutputPath >
23
+ </PropertyGroup >
24
+
25
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
26
+ <SignAssembly >true</SignAssembly >
27
+ <DelaySign >true</DelaySign >
28
+ <AssemblyOriginatorKeyFile >..\MSSharedLibKey.snk</AssemblyOriginatorKeyFile >
29
+ <DefineConstants >TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants >
30
+ </PropertyGroup >
31
+
32
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
33
+ <DefineConstants >TRACE;DEBUG;NETSTANDARD</DefineConstants >
34
+ <DelaySign >false</DelaySign >
35
+ </PropertyGroup >
36
+
37
+ <ItemGroup >
38
+ <PackageReference Include =" System.Collections.Specialized" Version =" 4.3.0" />
39
+ <PackageReference Include =" System.Reflection" Version =" 4.3.0" />
40
+ <PackageReference Include =" System.Security.SecureString" Version =" 4.3.0" />
41
+ <PackageReference Include =" System.Xml.XmlDocument" Version =" 4.3.0" />
42
+ <PackageReference Include =" System.Xml.XmlSerializer" Version =" 4.3.0" />
43
+ </ItemGroup >
44
+
45
+ </Project >
0 commit comments