Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SupportContactInfo is now a required field for app submissions #56

Merged
merged 1 commit into from
Sep 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PDP/ProductDescription.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

<xs:simpleType name="SupportContactInfoString">
<xs:restriction base="xs:string">
<xs:pattern value="\s*(\S(\r|\n|.){0,2047}\s*)?"/>
<xs:pattern value="\s*(\S(\r|\n|.){1,2047}\s*)?"/>
</xs:restriction>
</xs:simpleType>

Expand Down Expand Up @@ -348,11 +348,11 @@
</xs:complexType>
</xs:element>

<xs:element name="SupportContactInfo" minOccurs="0">
<xs:element name="SupportContactInfo" minOccurs="1">
<xs:complexType>
<xs:annotation>
<xs:documentation>
Optional, may not exceed 2048 characters
Required, may not exceed 2048 characters
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
Expand Down Expand Up @@ -384,4 +384,4 @@
<xs:attribute name="Release" type="tns:ReleaseString" use="required" />
</xs:complexType>
</xs:element>
</xs:schema>
</xs:schema>
2 changes: 1 addition & 1 deletion StoreBroker/StoreBroker.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'

ModuleVersion = '1.8.3'
ModuleVersion = '1.8.4'
Description = 'Provides command-line access to the Windows Store Submission REST API.'

RootModule = 'StoreIngestionApi'
Expand Down