Update to EF6

This commit is contained in:
2014-07-14 17:38:14 -04:00
parent 7e3eedd844
commit 2f90035494
39 changed files with 2022 additions and 1944 deletions

View File

@@ -1,4 +1,7 @@
using System;
using Common.Debug;
using FeedCenter.Data;
using FeedCenter.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Deployment.Application;
@@ -6,10 +9,6 @@ using System.Threading;
using System.Windows;
using System.Windows.Threading;
using Common.Debug;
using FeedCenter.Data;
using FeedCenter.Properties;
namespace FeedCenter
{
public partial class SplashWindow
@@ -103,7 +102,7 @@ namespace FeedCenter
progressBar.Value += e.ProgressPercentage;
// Get the message
string message = (string) e.UserState;
var message = (string) e.UserState;
// Update the status label if one was supplied
if (!string.IsNullOrEmpty(message))