diff --git a/App.config b/App.config
new file mode 100644
index 0000000..8e15646
--- /dev/null
+++ b/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..a187b7c
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..a820287
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace osu_akuboplayer
+{
+ ///
+ /// Логика взаимодействия для App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/MainWindow.xaml b/MainWindow.xaml
new file mode 100644
index 0000000..1e9c289
--- /dev/null
+++ b/MainWindow.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
new file mode 100644
index 0000000..75317c3
--- /dev/null
+++ b/MainWindow.xaml.cs
@@ -0,0 +1,143 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Forms;
+using osu_akuboplayer.Properties;
+using static System.Windows.Controls.DockPanel;
+using System.Windows.Threading;
+using System.Timers;
+
+namespace osu_akuboplayer
+{
+ ///
+ /// Логика взаимодействия для MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public static FolderBrowserDialog fbd = new FolderBrowserDialog();
+ public MainWindow()
+ {
+
+ InitializeComponent();
+ DispatcherTimer timer = new DispatcherTimer();
+ }
+
+ public static string path = fbd.SelectedPath + @"\Songs";
+ private void Import_Click(object sender, RoutedEventArgs e)
+ {
+
+
+
+ System.Windows.Forms.MessageBox.Show("Choose the path");
+
+
+
+ if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
+ {
+ Playlist.Items.Clear();
+ System.Windows.Forms.MessageBox.Show(fbd.SelectedPath);
+
+ DirectoryInfo dirInfo = new DirectoryInfo(fbd.SelectedPath);
+
+ var Song = new Song(dirInfo);
+
+
+
+
+
+
+ //Playlist.Items.Add(Song.Artist + " - " + Song.Title);
+ for (int i = 0; i < Song.Files.Count; i++)
+ {
+ Playlist.Items.Add(Song.Files[i]); //(Song.Artist + " - " + Song.Title);
+
+ }
+
+ }
+
+
+ }
+
+ private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+
+ }
+
+ private void Search_TextChanged(object sender, TextChangedEventArgs e)
+ {
+ {
+ string txtOrig = Search.Text;
+
+ Playlist.FindName(txtOrig);
+
+ }
+ }
+
+ DispatcherTimer timer = new DispatcherTimer();
+
+
+ private void PlaySong_Click(object sender, RoutedEventArgs e)
+ {
+ if((Playlist.Items.Count != 0) && (Playlist.SelectedIndex != -1))
+ {
+ string current = Song.mp3[Playlist.SelectedIndex];
+ Player.Play(current, Player.Volume);
+ DispatcherTimer timer = new DispatcherTimer();
+ timer.Start();
+
+
+ NowLengh.Text = TimeSpan.FromSeconds(Player.GetOfPosTrack(Player.Stream)).ToString();
+ MaxLengh.Text = TimeSpan.FromSeconds(Player.GetTimeStream(Player.Stream)).ToString();
+ sliderlengh.Value = Player.GetOfPosTrack(Player.Stream);
+ sliderlengh.Maximum = Player.GetTimeStream(Player.Stream);
+ timer.Tick += new EventHandler(timer_Tick);
+
+
+
+
+
+
+ }
+ }
+
+ private void StopSong_Click(object sender, RoutedEventArgs e)
+ {
+ timer.Stop();
+ Player.Stop();
+ MaxLengh.Text = "Stopped";
+ sliderlengh.Value = 0;
+
+ }
+
+ private void Sliderlengh_ValueChanged(object sender, RoutedPropertyChangedEventArgs e)
+ {
+ //Player.PosScroll(Player.Stream, Player.GetOfPosTrack(Player.Stream));
+ }
+ public static double mili;
+ private void timer_Tick(object sender, EventArgs e)
+ {
+
+ mili = 1;
+ timer.Interval = TimeSpan.FromMilliseconds(mili);
+ NowLengh.Text = TimeSpan.FromSeconds(Player.GetOfPosTrack(Player.Stream)).ToString();
+ sliderlengh.Value = Player.GetOfPosTrack(Player.Stream);
+ }
+
+ private void Slider_ValueChanged(object sender, RoutedPropertyChangedEventArgs e)
+ {
+ Player.SetVolumeToStream(Player.Stream, (int)SliderVol.Value);
+ }
+ }
+}
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..9f45a11
--- /dev/null
+++ b/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набор атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
+// связанные со сборкой.
+[assembly: AssemblyTitle("osu_akuboplayer")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("osu_akuboplayer")]
+[assembly: AssemblyCopyright("Copyright © 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// из модели COM, установите атрибут ComVisible для этого типа в значение true.
+[assembly: ComVisible(false)]
+
+//Чтобы начать создание локализуемых приложений, задайте
+//CultureYouAreCodingWith в файле .csproj
+//в . Например, при использовании английского (США)
+//в своих исходных файлах установите в en-US. Затем отмените преобразование в комментарий
+//атрибута NeutralResourceLanguage ниже. Обновите "en-US" в
+//строка внизу для обеспечения соответствия настройки UICulture в файле проекта.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //где расположены словари ресурсов по конкретным тематикам
+ //(используется, если ресурс не найден на странице,
+ // или в словарях ресурсов приложения)
+ ResourceDictionaryLocation.SourceAssembly //где расположен словарь универсальных ресурсов
+ //(используется, если ресурс не найден на странице,
+ // в приложении или в каких-либо словарях ресурсов для конкретной темы)
+)]
+
+
+// Сведения о версии для сборки включают четыре следующих значения:
+//
+// Основной номер версии
+// Дополнительный номер версии
+// Номер сборки
+// Номер редакции
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..921e18d
--- /dev/null
+++ b/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Этот код был создан программным средством.
+// Версия среды выполнения: 4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+// код создан повторно.
+//
+//------------------------------------------------------------------------------
+
+namespace osu_akuboplayer.Properties
+{
+
+
+ ///
+ /// Класс ресурсов со строгим типом для поиска локализованных строк и пр.
+ ///
+ // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
+ // класс с помощью таких средств, как ResGen или Visual Studio.
+ // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
+ // с параметром /str или заново постройте свой VS-проект.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("osu_akuboplayer.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Переопределяет свойство CurrentUICulture текущего потока для всех
+ /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..b4a03d2
--- /dev/null
+++ b/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace osu_akuboplayer.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Properties/Settings.settings b/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Resources/unknown.png b/Resources/unknown.png
new file mode 100644
index 0000000..752d39b
Binary files /dev/null and b/Resources/unknown.png differ
diff --git a/bass.dll b/bass.dll
new file mode 100644
index 0000000..87cd831
Binary files /dev/null and b/bass.dll differ
diff --git a/cs/Img/unknown.png b/cs/Img/unknown.png
new file mode 100644
index 0000000..752d39b
Binary files /dev/null and b/cs/Img/unknown.png differ
diff --git a/cs/Player.cs b/cs/Player.cs
new file mode 100644
index 0000000..d5d2e8b
--- /dev/null
+++ b/cs/Player.cs
@@ -0,0 +1,84 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Un4seen.Bass;
+
+namespace osu_akuboplayer
+{
+ class Player
+ {
+
+ private static int Ghz = 44100; //Frequency
+
+ public static bool InitDefaultDevice;// Status: Initialization
+
+ public static int Stream; //Channel
+
+ public static int Volume = 100; //Ofc, It's volume
+
+ private static bool InitPlayer(int ghz)
+ {
+ if (!InitDefaultDevice)
+ InitDefaultDevice = Bass.BASS_Init(-1, ghz, BASSInit.BASS_DEVICE_DEFAULT, IntPtr.Zero);
+ return InitDefaultDevice;
+ }
+
+ public static void Play(string filename, int vol)
+ {
+ Stop();
+ if (InitPlayer(Ghz))
+ {
+ Stream = Bass.BASS_StreamCreateFile(filename, 0, 0, BASSFlag.BASS_DEFAULT);
+ if(Stream != 0)
+ {
+ Volume = vol;
+ Bass.BASS_ChannelSetAttribute(Stream, BASSAttribute.BASS_ATTRIB_VOL, Volume / 100F);
+ Bass.BASS_ChannelPlay(Stream, false);
+
+
+ }
+ }
+
+ }
+
+
+
+ //Stop button
+ public static void Stop()
+ {
+
+ Bass.BASS_ChannelStop(Stream);
+ Bass.BASS_StreamFree(Stream);
+ }
+
+ public static int GetTimeStream(int stream)
+ {
+ long TimeBytes = Bass.BASS_ChannelGetLength(stream);
+ double Time = Bass.BASS_ChannelBytes2Seconds(stream, TimeBytes);
+ return (int)Time;
+
+ }
+
+ public static int GetOfPosTrack(int stream)
+ {
+ long pos = Bass.BASS_ChannelGetPosition(Stream);
+ double posSec = Bass.BASS_ChannelBytes2Seconds(stream, pos);
+ return (int)posSec;
+ }
+
+ public static void PosScroll(int stream, int pos)
+ {
+ Bass.BASS_ChannelSetPosition(stream, (double)pos);
+ }
+
+
+ //Volume
+ public static void SetVolumeToStream(int stream, int vol)
+ {
+ Volume = vol;
+ Bass.BASS_ChannelSetAttribute(stream, BASSAttribute.BASS_ATTRIB_VOL, Volume / 100F);
+ }
+ }
+}
diff --git a/cs/Song.cs b/cs/Song.cs
new file mode 100644
index 0000000..687a427
--- /dev/null
+++ b/cs/Song.cs
@@ -0,0 +1,119 @@
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text.RegularExpressions;
+
+namespace osu_akuboplayer
+{
+ public class Song
+ {
+
+ public string Title { get; set; }
+ public string Artist { get; set; }
+ public string ThumbnailPath { get; set; }
+ public string Audiofile { get; set; }
+ public string Tag { get; set; }
+
+ public static List Files = new List();
+
+ public static List mp3 = new List();
+
+ public static List Images = new List();
+ public static string[] files;
+
+
+ public readonly bool IsBeatmap = true;
+
+ public Song(DirectoryInfo folder)
+ {
+
+
+
+ var osuFile = folder.GetFiles("*.osu", SearchOption.AllDirectories);
+
+
+
+
+ for (int i = 0; i < osuFile.Length; i++)
+ {
+ string lastFolderName = osuFile[i].DirectoryName;
+
+ if (osuFile.Length < 1)
+ {
+ IsBeatmap = true;
+ return;
+ }
+
+
+
+ var stream = new StreamReader(osuFile[i].FullName);
+ while (!stream.EndOfStream)
+ {
+
+ var line = stream.ReadLine();
+
+ if (line != null && Regex.IsMatch(line, @"^Title:.+$"))
+ {
+ Title = new Regex(@"^Title:(.+)$").Match(line).Groups[1].ToString();
+ }
+
+ if (line != null && Regex.IsMatch(line, @"^TitleUnicode:.+$"))
+ {
+ Title = new Regex(@"^TitleUnicode:(.+)$").Match(line).Groups[1].ToString();
+ }
+
+ if (line != null && Regex.IsMatch(line, @"^Artist:.+$"))
+ {
+ Artist = new Regex(@"^Artist:(.+)$").Match(line).Groups[1].ToString();
+ }
+
+ if (line != null && Regex.IsMatch(line, @"^ArtistUnicode:.+$"))
+ {
+ Artist = new Regex(@"^ArtistUnicode:(.+)$").Match(line).Groups[1].ToString();
+ }
+
+ if (line != null && Regex.IsMatch(line, @"^AudioFilename:\s?.+$"))
+ {
+ Audiofile = "" + new Regex(@"AudioFilename[^:]*:[\s]* ([^\r\n]*)").Match(line).Groups[1];
+ }
+
+
+ if (ThumbnailPath == null && line != null &&
+ Regex.IsMatch(line, @"^\d,\d,(\d,)?""(.+\.(jpg|png))""(,\d,\d)?$", RegexOptions.IgnoreCase))
+ {
+ ThumbnailPath =
+ folder.FullName + @"\" + new Regex(@"^\d,\d,(\d,)?""(.+)""(,\d,\d)?$").Match(line).Groups[2];
+ }
+
+
+ Tag = Title + "\t" + Artist + "\t" + Audiofile;
+
+ }
+ ;
+
+ stream.Dispose();
+
+
+
+ if (!Files.Contains(Artist + " — " + Title) && (!mp3.Contains(Audiofile)))
+ {
+ Files.Add(Artist + " — " + Title );
+ mp3.Add(lastFolderName + @"\" + Audiofile);
+ }
+
+
+
+
+ if (ThumbnailPath == null || !File.Exists(ThumbnailPath))
+ {
+
+ ThumbnailPath = "Resources/unknown.png";
+ }
+
+ }
+
+
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/osu_akuboplayer.csproj b/osu_akuboplayer.csproj
new file mode 100644
index 0000000..3e5b607
--- /dev/null
+++ b/osu_akuboplayer.csproj
@@ -0,0 +1,134 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}
+ WinExe
+ osu_akuboplayer
+ osu_akuboplayer
+ v4.5
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+ true
+ bin\x86\Debug\
+ DEBUG;TRACE
+ full
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+ bin\x86\Release\
+ TRACE
+ true
+ pdbonly
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+ true
+
+
+
+ packages\Bass.Net.1.0.0\lib\Bass.Net.dll
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+
+
+
+
\ No newline at end of file
diff --git a/osu_akuboplayer.sln b/osu_akuboplayer.sln
new file mode 100644
index 0000000..ed8fc91
--- /dev/null
+++ b/osu_akuboplayer.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29009.5
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "osu_akuboplayer", "osu_akuboplayer.csproj", "{DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Debug|x86 = Debug|x86
+ Release|Any CPU = Release|Any CPU
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Debug|x86.ActiveCfg = Debug|x86
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Debug|x86.Build.0 = Debug|x86
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Release|x86.ActiveCfg = Release|x86
+ {DF8C5DD6-5004-43BC-9B15-5BD0E718F3A1}.Release|x86.Build.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {CB953F72-F0FE-4B54-826D-92E616A3E022}
+ EndGlobalSection
+EndGlobal
diff --git a/packages.config b/packages.config
new file mode 100644
index 0000000..7825b89
--- /dev/null
+++ b/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file