Parsing .targets file with ElementTree does not find specified tag

I am trying to use ElementTree to parse information out of a .targets file from a NuGet package.
What I am trying to find is the tag <AdditionalIncludeDirectories>. I am using the following python code to try to get it:

import xml.etree.ElementTree as ET

tree =  ET.parse(targets_file_path)
config_root = tree.getroot()
namespace = config_root.tag.replace("Project", "")
to_find = f"{namespace}AdditionalIncludeDirectories"
include_dirs = config_root.findall(to_find)
include_directory_list = []
for p in include_dirs:
    include_directory_list.append(p)

This is essentially the first example from the python documentation. The list include_directory_list, however is empty after I execute this snippet.

When I print every single tag, however, I get the following output:

depth = 0
item_list = []
for it in config_root:
    item_list.append([depth, it])
    
while len(item_list) > 0:
    d, it = item_list.pop(0)
    print(f"depth {d}: {it.tag}")
    for subit in it:
        item_list.append([d+1, subit])

yields:

depth 0: {http://schemas.microsoft.com/developer/msbuild/2003}PropertyGroup
depth 0: {http://schemas.microsoft.com/developer/msbuild/2003}ItemDefinitionGroup
depth 0: {http://schemas.microsoft.com/developer/msbuild/2003}ItemDefinitionGroup
depth 1: {http://schemas.microsoft.com/developer/msbuild/2003}ClCompile
depth 1: {http://schemas.microsoft.com/developer/msbuild/2003}Link
depth 1: {http://schemas.microsoft.com/developer/msbuild/2003}Link
depth 2: {http://schemas.microsoft.com/developer/msbuild/2003}AdditionalIncludeDirectories
depth 2: {http://schemas.microsoft.com/developer/msbuild/2003}AdditionalDependencies
depth 2: {http://schemas.microsoft.com/developer/msbuild/2003}AdditionalLibraryDirectorie
depth 2: {http://schemas.microsoft.com/developer/msbuild/2003}AdditionalDependencies
depth 2: {http://schemas.microsoft.com/developer/msbuild/2003}AdditionalLibraryDirectories

Which is exactly the output I expected. The first item with depth=2 is the one I am looking for and the name is seemingly the one I am inputting to findall(). I tried iterfind() as well, but that also does not give me the correct output. There is also the option of passing a namespace dictionary, which I have also tried with the same result.
I have the feeling that I am either seeing a bug or I am missing something very very obvious.

Any help would be greatly appreciated!


PS:
The XML looks like this:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemDefinitionGroup>
        <ClCompile>
            <AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)nativeinclude;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
        </ClCompile>
    </ItemDefinitionGroup>
    <ItemDefinitionGroup>
        <Link Condition="'$(Configuration)'=='Debug'">
            <AdditionalDependencies>mylib_d.lib;%(AdditionalDependencies)</AdditionalDependencies>
            <AdditionalLibraryDirectories>$(MSBuildThisFileDirectory)nativelib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
        </Link>
        <Link Condition="'$(Configuration)'=='Release'">
            <AdditionalDependencies>mylib.lib;%(AdditionalDependencies)</AdditionalDependencies>
            <AdditionalLibraryDirectories>$(MSBuildThisFileDirectory)nativelib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
        </Link>
    </ItemDefinitionGroup>
</Project>

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật