-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPlcInterface.Ads.csproj
More file actions
31 lines (27 loc) · 1.38 KB
/
Copy pathPlcInterface.Ads.csproj
File metadata and controls
31 lines (27 loc) · 1.38 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A PLC communication implementation for Beckhoff ADS</Description>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(CommonDirectory)\IServiceCollectionExtension.cs" LinkBase="Common" />
<Compile Include="$(CommonDirectory)\TaskExtensions.cs" LinkBase="Common" />
<Compile Include="$(CommonDirectory)\ISymbolInfoExtension.cs" LinkBase="Common" />
<Compile Include="$(CommonDirectory)\IObservableExtensions.cs" LinkBase="Common" />
<Compile Include="$(CommonDirectory)\IndicesHelper.cs" LinkBase="Common" />
<Compile Include="$(CommonDirectory)\ThrowHelper.cs" LinkBase="Common" />
</ItemGroup>
<PropertyGroup>
<TwinCATAdsVersion></TwinCATAdsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Beckhoff.TwinCAT.Ads" Version="6.2.467" />
<PackageReference Include="Beckhoff.TwinCAT.Ads.Reactive" Version="6.2.467" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.4" />
<PackageReference Include="System.IO.Abstractions" Version="22.0.15" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PlcInterface.Abstraction\PlcInterface.Abstraction.csproj" />
</ItemGroup>
</Project>