12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Config\Beckhoffcfg.xml" />
- <None Remove="Config\ModuleIoCfg.xml" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Config\Beckhoffcfg.xml">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- <Content Include="Config\ModuleIoCfg.xml">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Autofac" Version="8.3.0" />
- <PackageReference Include="Beckhoff.TwinCAT.Ads" Version="4.4.40" />
- </ItemGroup>
- </Project>
|