forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 20855 in Azure/azure-rest-api-specs
Merge 06c612f2e0767e0b74a09361686e430c63865b6f into 98891f186eba7baaf7e14c3d5b2930172c1e1386
- Loading branch information
SDKAuto
committed
Oct 10, 2022
1 parent
b0ca589
commit 88aa4b7
Showing
789 changed files
with
165,524 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
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,5 @@ | ||
bin | ||
obj | ||
.vs | ||
tools | ||
test/*-TestResults.xml |
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,44 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Version>0.1.0</Version> | ||
<LangVersion>7.1</LangVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AssemblyName>Az.Consumption.private</AssemblyName> | ||
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.Consumption</RootNamespace> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<OutputPath>./bin</OutputPath> | ||
<PublishDir>$(OutputPath)</PublishDir> | ||
<NuspecFile>Az.Consumption.nuspec</NuspecFile> | ||
<NoPackageAnalysis>true</NoPackageAnalysis> | ||
<!-- Some methods are marked async and don't have an await in them --> | ||
<!-- warning CS1591: Missing XML comment for publicly visible type or member --> | ||
<NoWarn>1998, 1591</NoWarn> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<WarningsAsErrors /> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DelaySign>false</DelaySign> | ||
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<SignAssembly>true</SignAssembly> | ||
<DelaySign>true</DelaySign> | ||
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile> | ||
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" /> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes> | ||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.