From 6b322bf19af020f7eeb115bb4f2f92f7849b34c4 Mon Sep 17 00:00:00 2001 From: Alan Jowett Date: Mon, 27 Nov 2023 11:34:28 -0800 Subject: [PATCH 1/3] Remove version for local nuget packageS Signed-off-by: Alan Jowett --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 84acdc9..26348c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (PLATFORM_WINDOWS) else() # if BPF_PERF_LOCAL_NUGET_PATH is set, use that as the source for the eBPF-for-Windows package if(BPF_PERF_LOCAL_NUGET_PATH) - exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.12.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) + exec_program(${NUGET} ARGS install "eBPF-for-Windows" -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) else() exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.12.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages) endif() From f5832cb2979606139bf52c4924d0b18854e2bece Mon Sep 17 00:00:00 2001 From: Alan Jowett Date: Mon, 27 Nov 2023 11:45:29 -0800 Subject: [PATCH 2/3] Switch to 0.13.0 for now Signed-off-by: Alan Jowett --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 26348c2..16a052e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (PLATFORM_WINDOWS) else() # if BPF_PERF_LOCAL_NUGET_PATH is set, use that as the source for the eBPF-for-Windows package if(BPF_PERF_LOCAL_NUGET_PATH) - exec_program(${NUGET} ARGS install "eBPF-for-Windows" -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) + exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.13.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) else() exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.12.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages) endif() From 5e6bb5704167989cfdf93fa2739f45ac694fe4c7 Mon Sep 17 00:00:00 2001 From: Alan Jowett Date: Mon, 27 Nov 2023 12:58:58 -0800 Subject: [PATCH 3/3] Remove version Signed-off-by: Alan Jowett --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16a052e..26348c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (PLATFORM_WINDOWS) else() # if BPF_PERF_LOCAL_NUGET_PATH is set, use that as the source for the eBPF-for-Windows package if(BPF_PERF_LOCAL_NUGET_PATH) - exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.13.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) + exec_program(${NUGET} ARGS install "eBPF-for-Windows" -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache) else() exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.12.0 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages) endif()