aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Remote/packages.config
blob: bee3cc62773086db62ab75598308a7b39bfdff27 (plain)
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="EntityFramework" version="6.0.0" targetFramework="net46" />
  <package id="System.Data.SQLite" version="1.0.106.0" targetFramework="net46" />
  <package id="System.Data.SQLite.Core" version="1.0.106.0" targetFramework="net46" />
  <package id="System.Data.SQLite.EF6" version="1.0.106.0" targetFramework="net46" />
  <package id="System.Data.SQLite.Linq" version="1.0.106.0" targetFramework="net46" />
</packages>
n class="nn">System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Data; namespace Tango.SharedUI.Converters { public class StringToWordsConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return value.ToString().ToWords(); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }