aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/packages.config
blob: 83ee077e49436cad9705d61a8c64e6902a8066c6 (plain)
1
2
3
4
5
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="FluentFTP" version="19.1.2" targetFramework="net46" />
  <package id="Ionic.Zip" version="1.9.1.8" targetFramework="net46" />
</packages>
n>; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Data; namespace Tango.SharedUI.Converters { public class IsNullToVisibilityConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return value != null ? Visibility.Visible : Visibility.Collapsed; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }