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>CoSimulationPlugin</AssemblyName> 6 <PropertiesLocation>..\..\..\output\properties.csproj</PropertiesLocation> 7 <LangVersion>7.2</LangVersion> 8 </PropertyGroup> 9 <Import Project="$(PropertiesLocation)" /> 10 <ItemGroup> 11 <PackageReference Include="System.ServiceModel.Duplex" Version="4.8.1" /> 12 <PackageReference Include="System.ServiceModel.NetTcp" Version="4.8.1" /> 13 <PackageReference Include="System.ServiceModel.Federation" Version="4.8.1" /> 14 <PackageReference Include="Mono.Posix" Version="7.1.0-final.1.21458.1" Condition=" $(OS) != 'Windows_NT'"/> 15 </ItemGroup> 16 <ItemGroup> 17 <Compile Remove="IntegrationLibrary\**\*"/> 18 </ItemGroup> 19 <ItemGroup> 20 <ProjectReference Include="..\..\..\lib\AntShell\AntShell\AntShell_NET.csproj"/> 21 <ProjectReference Include="..\..\Infrastructure\src\Infrastructure_NET.csproj" /> 22 </ItemGroup> 23</Project> 24