Skip to content

Commit

Permalink
CodeGen from PR 18131 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
[Hub Generated] Review request for Microsoft.Marketplace to add version stable/2022-03-01 (Azure#18131)

* clone 2021-12-01 to 2022-03-01

* update api-version 2022-03-01 prop

* 20220301_ver1

* fix examples

* Adds base for updating Microsoft.Marketplace from version stable/2021-12-01 to version 2022-03-01

* Updates readme

* Updates API version in new specs and examples

* Edit decriptions & change schemas

* Change responses for ApproveAllItems & disableApproveAllItems;

* UpsertOfferWithMultiContext

* Marketplace prettier fix

* Fix: spell, order, type

* Schemas changes

* MultiContextAndPlansProperties - add props

* Fix QueryUserOffersProperties

* MultiContextAndPlansProperties - add properties

* improve description and add date-time format

* improve description and add date-time format

* QueryApprovedPlans Object - support multi context

* PrivateStore_AnyActiveOffer

* spell fix

* Rename to AnyExistingOffersInTheStore

* Change desc

* rename to AnyExistingOffersInTheCollections

* Add icon prop to AdminRequestApprovalProperties 2021-12-01

* Revert latest commit

* Revert 'Add icon prop to AdminRequestApprovalProperties 2021-12-01'
  • Loading branch information
SDKAuto committed Jun 8, 2022
1 parent 258afef commit d3b44b8
Show file tree
Hide file tree
Showing 793 changed files with 152,810 additions and 0 deletions.
1 change: 1 addition & 0 deletions swaggerci/marketplace/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions swaggerci/marketplace/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin
obj
.vs
tools
test/*-TestResults.xml
44 changes: 44 additions & 0 deletions swaggerci/marketplace/Az.MarketplaceRpService.csproj
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.MarketplaceRpService.private</AssemblyName>
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.MarketplaceRpService</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>./bin</OutputPath>
<PublishDir>$(OutputPath)</PublishDir>
<NuspecFile>Az.MarketplaceRpService.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>
Loading

0 comments on commit d3b44b8

Please sign in to comment.