Create Transparent network fails

I am trying to create a Transparent network as per microsoft docs
so the container be directly connected to the physical network
Host network is like 10.0.24.225/27

However when i run a command like
docker network create -d "transparent" --subnet 10.0.24.225/27 --gateway 10.0.24.225 -o com.docker.network.windowsshim.vlanid=7 -o com.docker.network.windowsshim.dnsservers="10.2.10.5" -o com.docker.network.windowsshim.interface="Ethernet0" transp

It creates a new vEthernet

Ethernet adapter vEthernet (Ethernet0):
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter
   Physical Address. . . . . . . . . : ##############
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : ##############
   Autoconfiguration IPv4 Address. . : **169.254.226.20**(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.0.0
   Default Gateway . . . . . . . . . :
   DHCPv6 IAID . . . . . . . . . . . :      ##############
   DHCPv6 Client DUID. . . . . . . . : ##############
   DNS Servers . . . . . . . . . . . : ##############
                                                 ##############
                                                 ##############
   NetBIOS over Tcpip. . . . . . . . : Enabled

That however disables the main Ethernet0 of the host
IP 169.254.226.20 means (i believe) it cannot acquire IP from DHCP
However i haven’t found how i can create the network and provide a static ip for the new interface

Is also correct to create the transparent network with the same network as the host ?