FestoDebugger.csproj 835 B

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <None Remove="Config\Beckhoffcfg.xml" />
  11. <None Remove="Config\ModuleIoCfg.xml" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="Config\Beckhoffcfg.xml">
  15. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  16. </Content>
  17. <Content Include="Config\ModuleIoCfg.xml">
  18. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  19. </Content>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Autofac" Version="8.3.0" />
  23. <PackageReference Include="Beckhoff.TwinCAT.Ads" Version="4.4.40" />
  24. </ItemGroup>
  25. </Project>