57 lines
2.6 KiB
XML
57 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<LangVersion>9.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<RootNamespace>ZB.MOM.WW.OtOpcUa.Tests</RootNamespace>
|
|
<!-- Keep the assembly name unchanged so v1 OtOpcUa.Host's InternalsVisibleTo still matches. -->
|
|
<AssemblyName>ZB.MOM.WW.OtOpcUa.Tests</AssemblyName>
|
|
<!--
|
|
Phase 2 Stream D — archived. These 494 v1 IntegrationTests instantiate v1
|
|
OtOpcUa.Host classes directly. They are kept as the historical parity reference
|
|
but excluded from full-solution `dotnet test ZB.MOM.WW.OtOpcUa.slnx` so the v2
|
|
E2E suite (OtOpcUa.Driver.Galaxy.E2E) is the live parity bar going forward.
|
|
To run them explicitly:
|
|
dotnet test tests/ZB.MOM.WW.OtOpcUa.Tests.v1Archive
|
|
-->
|
|
<IsTestProject>false</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
|
|
<PackageReference Include="xunit" Version="2.9.3"/>
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Shouldly" Version="4.2.1"/>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1"/>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0"/>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0"/>
|
|
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server" Version="1.5.374.126"/>
|
|
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.374.126"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\ZB.MOM.WW.OtOpcUa.Host\ZB.MOM.WW.OtOpcUa.Host.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="ArchestrA.MxAccess">
|
|
<HintPath>..\..\lib\ArchestrA.MxAccess.dll</HintPath>
|
|
<EmbedInteropTypes>false</EmbedInteropTypes>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\src\ZB.MOM.WW.OtOpcUa.Host\appsettings.json" Link="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|