Skip to content

Commit 057b282

Browse files
committed
Use fixed sdk version 18362
1 parent 6272301 commit 057b282

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/win-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
- name: Setup Windows 10 SDK
1818
uses: GuillaumeFalourd/setup-windows10-sdk-action@v2
1919
with:
20-
sdk-version: 17134
20+
sdk-version: 18362
2121
- run: cargo build --features generate-bindings,bundled

tss-esapi-sys/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub mod tpm2_tss {
8585
let sdk_entry = hklm.open_subkey("SOFTWARE\\WOW6432Node\\Microsoft\\Microsoft SDKs\\Windows\\v10.0").unwrap();
8686
let installation_path: String = sdk_entry.get_value("InstallationFolder").unwrap();
8787
let ip_pb = PathBuf::from(installation_path).join("Include");
88-
let windows_sdk = ip_pb.join("10.0.17134.0");
88+
let windows_sdk = ip_pb.join("10.0.18362.0");
8989
clang_args.push(format!("-I{}", windows_sdk.join("ucrt").display()));
9090
clang_args.push(format!("-I{}", windows_sdk.join("um").display()));
9191
clang_args.push(format!("-I{}", windows_sdk.join("shared").display()));

0 commit comments

Comments
 (0)