1<Project DefaultTargets="Build" Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <TargetFrameworks Condition="$(OS) != 'Windows_NT'">net6.0</TargetFrameworks> 4 <TargetFrameworks Condition="$(OS) == 'Windows_NT'">net6.0-windows10.0.17763.0</TargetFrameworks> 5 <AssemblyName>WiresharkPlugin</AssemblyName> 6 <PropertiesLocation>..\..\..\output\properties.csproj</PropertiesLocation> 7 <LangVersion>7.2</LangVersion> 8 </PropertyGroup> 9 <Import Project="$(PropertiesLocation)" /> 10 <ItemGroup> 11 <ProjectReference Include="..\..\..\lib\AntShell\AntShell\AntShell_NET.csproj"/> 12 <ProjectReference Include="..\..\Infrastructure\src\Infrastructure_NET.csproj"/> 13 </ItemGroup> 14</Project> 15