CtrEditor/CtrEditor.csproj

34 lines
1.0 KiB
XML
Raw Permalink Normal View History

2024-05-01 14:45:20 -03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-05-03 05:13:25 -03:00
<TargetFramework>net8.0-windows8.0</TargetFramework>
2024-05-01 14:45:20 -03:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
2024-05-11 11:58:55 -03:00
<ItemGroup>
<None Remove="motor2.png" />
</ItemGroup>
2024-05-02 11:06:45 -03:00
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.77" />
2024-05-02 11:06:45 -03:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" />
<PackageReference Include="OpenCvSharp4.Windows" Version="4.9.0.20240103" />
2024-05-02 11:06:45 -03:00
</ItemGroup>
<ItemGroup>
<Reference Include="Siemens.Simatic.Simulation.Runtime.Api.x64">
<HintPath>C:\Program Files (x86)\Common Files\Siemens\PLCSIMADV\API\6.0\Siemens.Simatic.Simulation.Runtime.Api.x64.dll</HintPath>
2024-05-11 11:58:55 -03:00
<Private>True</Private>
</Reference>
</ItemGroup>
2024-05-11 11:58:55 -03:00
<ItemGroup>
<Resource Include="motor2.png" />
</ItemGroup>
2024-05-01 14:45:20 -03:00
</Project>