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

[community triplet] adds triplets for building for the Xbox platform #29210

Merged
merged 52 commits into from
Mar 8, 2023

Conversation

walbourn
Copy link
Member

@walbourn walbourn commented Jan 27, 2023

This PR adds four community triplets for building code that can run on the Xbox One and Xbox Series X|S platforms. These libraries are built using the WINAPI_FAMILY_GAMES partition and link to the stock 'onecore_apiset.lib' umbrella library, as well as using the DLL version of the CRT.

x64-xbox-scarlett
x64-xbox-scarlett-static

x64-xbox-xboxone
x64-xbox-xboxone-static

This is intended for generic 'open source' libraries to build in a way that is conformant to the Game OS requirements for API usage. This works for software that uses the subset of Win32 APIs supported by the "WINAPI_FAMILY_GAMES" partition defined in the Windows SDK (19041 or later).

Building code using platform-specific APIs and libraries requires that the Microsoft GDK with Xbox Extensions be installed, and that command prompt used to build with the additional proprietary libraries. The directxtex, directxtk12, directxmesh, and uvatlas ports have explicit support for this, and upstream changes for handling it. There's a new stub port ms-gdkx which expresses this dependency.

This PR also includes some supports expression updates for a dozen or so existing ports. By default, all ports that report support for windows are considered a candidate for the xbox triplets. If they cannot be built for xbox, they should use (windows & !xbox) or similar expression. For now, only a few key ports that can never support Xbox due to use of unsupported Graphics APIs have been explicitly blocked in this manner.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout cdbcc0321216fe46e4b20941f76ad21429d2a90c -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 995f8aa..c282a8e 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..17666a6 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "4f405908c09cfbce8eae36047f27e0f7098e7626",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..6cbb655 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "52eaa5880e1cfa6e9e0dbf4dcab83538296b07bb",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..fc25406 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "2978be68eb78cf7267cc31cd583f41089223a597",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..576e2c4 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "d93573cc9c0c98affb4c6da9e3a989c3b31e2cb0",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

@walbourn
Copy link
Member Author

walbourn commented Jan 27, 2023

Initial tests:

vcpkg install zlib:x64-xbox-scarlett
vcpkg install zlib:x64-xbox-scarlett-static
vcpkg install zlib:x64-xbox-xboxone
vcpkg install zlib:x64-xbox-xboxone-static

@walbourn
Copy link
Member Author

walbourn commented Jan 27, 2023

This PR also modifies the directxtk12 upstream and port to be "xbox triplet aware" since it makes use of Xbox-specific shaders.

The directxtex was updated to automatically turn off DX11 and tools for the xbox triplets. It needs the GDK with Xbox extensions to build for the platform graphics headers.

The directxmesh and uvatlas ports were updated to turn of tools building for the xbox triplets. Again, they need the needs the GDK with Xbox extensions to build for the platform graphics headers.

vcpkg install directxtk12:x64-xbox-scarlett
vcpkg install directxtk12:x64-xbox-scarlett-static

vcpkg install directxtex:x64-xbox-scarlett
vcpkg install directxtex:x64-xbox-scarlett-static
vcpkg install directxtex[dx12]:x64-xbox-scarlett --recurse

vcpkg install directxmesh:x64-xbox-scarlett
vcpkg install directxmesh:x64-xbox-scarlett-static
vcpkg install directxmesh[dx12]:x64-xbox-scarlett --recurse

vcpkg install uvatlas:x64-xbox-scarlett
vcpkg install uvatlas:x64-xbox-scarlett-static
vcpkg install directxtk12:x64-xbox-xboxone
vcpkg install directxtk12:x64-xbox-xboxone-static

vcpkg install directxtex:x64-xbox-xboxone
vcpkg install directxtex:x64-xbox-xboxone-static
vcpkg install directxtex[dx12]:x64-xbox-xboxone --recurse

vcpkg install directxmesh:x64-xbox-xboxone
vcpkg install directxmesh:x64-xbox-xboxone-static
vcpkg install directxmesh[dx12]:x64-xbox-xboxone --recurse

vcpkg install uvatlas:x64-xbox-xboxone
vcpkg install uvatlas:x64-xbox-xboxone-static

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout cdbcc0321216fe46e4b20941f76ad21429d2a90c -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 64cf32d..49e1120 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..17666a6 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "4f405908c09cfbce8eae36047f27e0f7098e7626",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..e92dca8 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "ceed6b1a335df54a2a169162c9cbacda9d943ef2",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..fc25406 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "2978be68eb78cf7267cc31cd583f41089223a597",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..b42e1b3 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "4d165e8b8b7d6e9382320a18a33d85d29d392d26",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

@walbourn
Copy link
Member Author

walbourn commented Jan 27, 2023

Note that not all libraries will be able to build in the constraints of WINAPI_FAMILY_GAMES without upstream changes. For example, 7zip fails due to the lack of support for SysAllocString, SysFreeString, and SysStringLen.

For now I am not blocking these with !xbox in the supports expression with the hope that we can get the port updated to support the platform over the next coming months.

@Cheney-W Cheney-W added category:community-triplet A PR or issue related to community triplets not officially validated by the vcpkg team. category:tool-update The issue is with build tool or build script, which requires update or should be executed correctly labels Jan 28, 2023
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout cdbcc0321216fe46e4b20941f76ad21429d2a90c -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 0cc643b..3d549cd 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..17666a6 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "4f405908c09cfbce8eae36047f27e0f7098e7626",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..e92dca8 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "ceed6b1a335df54a2a169162c9cbacda9d943ef2",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..fc25406 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "2978be68eb78cf7267cc31cd583f41089223a597",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..b42e1b3 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "4d165e8b8b7d6e9382320a18a33d85d29d392d26",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 0cc643b..3d549cd 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

@walbourn walbourn changed the title [communit triplet] adds triplets for building for the Xbox platform [community triplet] adds triplets for building for the Xbox platform Jan 31, 2023
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index bfb8381..fbf00b3 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 506c6bc..2258685 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 506c6bc..2258685 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1966,7 +1966,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1974,7 +1974,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1982,7 +1982,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7902,7 +7902,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index ab32105..48cd33c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1970,7 +1970,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1978,7 +1978,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1986,7 +1986,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7914,7 +7914,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index ab32105..48cd33c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1970,7 +1970,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1978,7 +1978,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1986,7 +1986,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7914,7 +7914,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout b4f29c54450ddfc7efd2989cb9d32158ae291b40 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index ab32105..48cd33c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1970,7 +1970,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1978,7 +1978,7 @@
     },
     "directxtex": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1986,7 +1986,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7914,7 +7914,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index e1d875f..26c9924 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "a813700cf897f47e5652aaef17d52b41d1715b4d",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "79c75c423a2d930e31e207bfb8c2d4bfe5ea85d6",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 45daa84436c6b57c36761de78c63987549968f4e -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 4b79fda..e33b065 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1978,7 +1978,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1986,7 +1986,7 @@
     },
     "directxtex": {
       "baseline": "2023-01-31",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -1994,7 +1994,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7926,7 +7926,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index 43996e3..a0034e6 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6351c8b7b9700283d7dd27eee1b19950fb5bf2e2",
+      "version-date": "2023-01-31",
+      "port-version": 1
+    },
     {
       "git-tree": "a9d1163d38bfe182db6e9011b0b52e682ae02501",
       "version-date": "2023-01-31",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!

After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 45daa84436c6b57c36761de78c63987549968f4e -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 99b3538..433c05a 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -1990,7 +1990,7 @@
     },
     "directxmesh": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "directxsdk": {
       "baseline": "jun10",
@@ -1998,7 +1998,7 @@
     },
     "directxtex": {
       "baseline": "2023-01-31",
-      "port-version": 0
+      "port-version": 1
     },
     "directxtk": {
       "baseline": "2022-12-15",
@@ -2006,7 +2006,7 @@
     },
     "directxtk12": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "dirent": {
       "baseline": "1.23.2",
@@ -7950,7 +7950,7 @@
     },
     "uvatlas": {
       "baseline": "2022-12-15",
-      "port-version": 0
+      "port-version": 1
     },
     "uvw": {
       "baseline": "2.12.1",
diff --git a/versions/d-/directxmesh.json b/versions/d-/directxmesh.json
index 689d97c..63d443f 100644
--- a/versions/d-/directxmesh.json
+++ b/versions/d-/directxmesh.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "28ff2e03239486dbfcbe2e395afe318e8f5c14ac",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "bd91052caa19a0a0a99a2918109b247efe659285",
       "version-date": "2022-12-15",
diff --git a/versions/d-/directxtex.json b/versions/d-/directxtex.json
index 43996e3..a0034e6 100644
--- a/versions/d-/directxtex.json
+++ b/versions/d-/directxtex.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6351c8b7b9700283d7dd27eee1b19950fb5bf2e2",
+      "version-date": "2023-01-31",
+      "port-version": 1
+    },
     {
       "git-tree": "a9d1163d38bfe182db6e9011b0b52e682ae02501",
       "version-date": "2023-01-31",
diff --git a/versions/d-/directxtk12.json b/versions/d-/directxtk12.json
index 1cfa759..ecb961e 100644
--- a/versions/d-/directxtk12.json
+++ b/versions/d-/directxtk12.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "6eb0fbf8364deaf2775fbfa6bc450a042b362ab7",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "7a61cc956783e1bf296de6516a6fc15e939ad657",
       "version-date": "2022-12-15",
diff --git a/versions/u-/uvatlas.json b/versions/u-/uvatlas.json
index 2390220..0733c7e 100644
--- a/versions/u-/uvatlas.json
+++ b/versions/u-/uvatlas.json
@@ -1,5 +1,10 @@
 {
   "versions": [
+    {
+      "git-tree": "08d2ee5d22ac46d82d632a48bdb048e5c009bc29",
+      "version-date": "2022-12-15",
+      "port-version": 1
+    },
     {
       "git-tree": "9335adc59658d7c81ea85d849249b1bdd4047ef5",
       "version-date": "2022-12-15",

Copy link
Member

@BillyONeal BillyONeal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like it's still blowing away user settings in the msbuild integration.

If you want to cherry pick BillyONeal@cd31345 that resolves my MSBuild concerns.

It looks like all other nitpick comments are either resolved or separated into the separate issue.

Thanks again for your contribution to vcpkg! I'm looking at improving the experience for these triplets this week but I think this is OK to merge as is for now once the msbuild things are fixed.

@walbourn walbourn requested review from BillyONeal and removed request for dg0yt March 7, 2023 20:42
@BillyONeal BillyONeal added info:reviewed Pull Request changes follow basic guidelines and removed requires:author-response labels Mar 7, 2023
@dan-shaw dan-shaw merged commit c1d764a into microsoft:master Mar 8, 2023
@walbourn walbourn deleted the xboxtriplets branch March 22, 2023 17:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category:community-triplet A PR or issue related to community triplets not officially validated by the vcpkg team. category:new-port The issue is requesting a new library to be added; consider making a PR! category:tool-update The issue is with build tool or build script, which requires update or should be executed correctly info:reviewed Pull Request changes follow basic guidelines
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants