Skip to content

Commit 9d2910f

Browse files
author
Maddie Clayton
authored
Merge pull request #138 from Azure/add-monitor
Add generated Monitor package
2 parents 76d1f24 + 8552dff commit 9d2910f

File tree

201 files changed

+31750
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+31750
-0
lines changed

Azure.PowerShell.Common.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Strategies.Test", "src\Stra
3737
EndProject
3838
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ResourceManager.Test", "src\ResourceManager.Test\ResourceManager.Test.csproj", "{B571E523-6A04-4EFF-8E89-730078D7FBD1}"
3939
EndProject
40+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monitor", "src\Monitor\Monitor.csproj", "{F27EF17C-CE35-4F25-8B6E-013FDE8B9761}"
41+
EndProject
4042
Global
4143
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4244
Debug|Any CPU = Debug|Any CPU
@@ -107,6 +109,10 @@ Global
107109
{B571E523-6A04-4EFF-8E89-730078D7FBD1}.Debug|Any CPU.Build.0 = Debug|Any CPU
108110
{B571E523-6A04-4EFF-8E89-730078D7FBD1}.Release|Any CPU.ActiveCfg = Release|Any CPU
109111
{B571E523-6A04-4EFF-8E89-730078D7FBD1}.Release|Any CPU.Build.0 = Release|Any CPU
112+
{F27EF17C-CE35-4F25-8B6E-013FDE8B9761}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
113+
{F27EF17C-CE35-4F25-8B6E-013FDE8B9761}.Debug|Any CPU.Build.0 = Debug|Any CPU
114+
{F27EF17C-CE35-4F25-8B6E-013FDE8B9761}.Release|Any CPU.ActiveCfg = Release|Any CPU
115+
{F27EF17C-CE35-4F25-8B6E-013FDE8B9761}.Release|Any CPU.Build.0 = Release|Any CPU
110116
EndGlobalSection
111117
GlobalSection(SolutionProperties) = preSolution
112118
HideSolutionNode = FALSE

src/Monitor/Monitor.csproj

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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

Comments
 (0)