-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPlcInterface.Sandbox.csproj
More file actions
32 lines (28 loc) · 1.14 KB
/
Copy pathPlcInterface.Sandbox.csproj
File metadata and controls
32 lines (28 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(CommonDirectory)\IndicesHelper.cs" LinkBase="Common" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Vectron.Extensions.Logging.Theming.Console" Version="1.0.24" />
<PackageReference Include="Vectron.InteractiveConsole" Version="1.0.68" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageReference Include="Beckhoff.TwinCAT.Ads.TcpRouter" Version="6.2.387" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PlcInterface.Ads\PlcInterface.Ads.csproj" />
<ProjectReference Include="..\PlcInterface.OpcUa\PlcInterface.OpcUa.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>