-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove beta label
- Loading branch information
Michael Ganss
committed
Jul 25, 2023
1 parent
7e5b04a
commit 0bcf3c6
Showing
5 changed files
with
75 additions
and
1 deletion.
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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="http://microsoft.com/wsdl/types/"> | ||
<xs:simpleType name="guid"> | ||
<xs:annotation> | ||
<xs:documentation xml:lang="en"> | ||
The representation of a GUID, generally the id of an element. | ||
</xs:documentation> | ||
</xs:annotation> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:schema> |
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,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" | ||
elementFormDefault="qualified" | ||
xmlns="http://tempuri.org/XMLSchema.xsd" | ||
xmlns:mstns="http://tempuri.org/XMLSchema.xsd" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:s="http://microsoft.com/wsdl/types/" | ||
> | ||
<xs:import namespace="http://microsoft.com/wsdl/types/" schemaLocation="guid.xsd"></xs:import> | ||
<xs:element name="Test"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="ElementId" type="s:guid"></xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="Id" type="s:guid"></xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 2.0.{build}-beta | ||
version: 2.0.{build} | ||
skip_tags: true | ||
image: Visual Studio 2022 | ||
environment: | ||
|