-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-graphrbac
- Loading branch information
Showing
202 changed files
with
31,765 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="$(ProjectDir)..\Dependencies.Client.targets" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Microsoft.Azure.PowerShell.Clients.Monitor</AssemblyName> | ||
<RootNamespace>Microsoft.Azure.Commands.Common.Monitor</RootNamespace> | ||
<OutputPath>$(ProjectDir)..\..\artifacts\$(Configuration)</OutputPath> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<WarningsAsErrors /> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Title>Microsoft Azure PowerShell Clients Monitor</Title> | ||
<Description>Microsoft Azure PowerShell Clients Monitor library. Only for use with the Azure PowerShell runtime. Not intended for general development use.</Description> | ||
<PackageTags>azure;powershell;clients;monitor</PackageTags> | ||
<Authors>Microsoft Corporation</Authors> | ||
<Copyright>Copyright © Microsoft Corporation</Copyright> | ||
<PackageLicenseUrl>https://aka.ms/azps-common-license</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/Azure/azure-powershell-common</PackageProjectUrl> | ||
<PackageOutputPath>$(ProjectDir)..\..\artifacts\Package\$(Configuration)</PackageOutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<SignAssembly>true</SignAssembly> | ||
<DelaySign>true</DelaySign> | ||
<AssemblyOriginatorKeyFile>..\MSSharedLibKey.snk</AssemblyOriginatorKeyFile> | ||
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants> | ||
<DelaySign>false</DelaySign> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Collections.Specialized" Version="4.3.0" /> | ||
<PackageReference Include="System.Reflection" Version="4.3.0" /> | ||
<PackageReference Include="System.Security.SecureString" Version="4.3.0" /> | ||
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" /> | ||
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.