Add new Paramcontrol with Range Validation move Values from general to Etcher-Robot step Table Add File Extension to Save/Open File Dialog
91 lines
3.2 KiB
XML
91 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<AssemblyVersion>0.1.0</AssemblyVersion>
|
|
<FileVersion>0.1</FileVersion>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Anlagenuebersicht.png" />
|
|
<None Remove="Resources\Application.png" />
|
|
<None Remove="Resources\Check.png" />
|
|
<None Remove="Resources\user.png" />
|
|
<None Remove="Resources\X.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Beckhoff.TwinCAT.Ads" Version="6.1.197" />
|
|
<PackageReference Include="Beckhoff.TwinCAT.TcEventLoggerAdsProxy.Net" Version="2.7.11" />
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
<PackageReference Include="MahApps.Metro" Version="2.4.10" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="AdsManager">
|
|
<HintPath>bin\x64\Debug\net8.0-windows8.0\AdsManager.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Anlagenuebersicht.png">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Resource>
|
|
<Resource Include="Resources\Application.png" />
|
|
<Resource Include="Resources\Check.png" />
|
|
<Resource Include="Resources\user.png" />
|
|
<Resource Include="Resources\X.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Common\MediaContainer.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Common\ParamControlIntRange.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Common\ParamControlInt.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Common\ParamControlFloat.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\AnalogMotorControl\AnalogMotorControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\AnalogValue\AnalogValue.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\AnalogValveControl\AnalogValveControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\BinaryValveControl\BinaryValveControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\InterlockControl\IntlkControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\InterlockDetailsControl\IntlkDetails.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="HMIToolkit\HMIObjects\InterlockDetailsControl\IntlkDetailsWindow.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|