fixed a few bugs

Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
Matt Bruce 2018-12-05 14:17:29 -06:00
parent 65947544c0
commit d079e5c67d
5 changed files with 11 additions and 3 deletions

View File

@ -23,7 +23,7 @@ namespace BillboardPlaylistUpdater
static void Main(string[] args)
{
args = new string[] { "mbrucedogs" };
//args = new string[] { "bsully5150" };
if (args.Length != 1)
{
Console.WriteLine("usage: songcrawler partyid songspath");

View File

@ -78,7 +78,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>

View File

@ -1,5 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="Firebase.Secret" value="9BQHUEJhScgK2FP10hvlToxTlGQpXT94Cvx01piO" />
<add key="Firebase.Path" value="https://herse.firebaseio.com/" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>

View File

@ -8,7 +8,7 @@
<appSettings>
<add key="Firebase.Secret" value="9BQHUEJhScgK2FP10hvlToxTlGQpXT94Cvx01piO" />
<add key="Firebase.Path" value="https://herse.firebaseio.com/" />
<add key="KaraokePlayer.ControllerId" value="mbrucedogs" />
<add key="KaraokePlayer.ControllerId" value="" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />

View File

@ -40,6 +40,7 @@ namespace SingsALot
controllerName.Text = this.settings.controllerName;
}
loading = false;
SaveUserSettings();
}
public UserSettings settings { get; private set; }