Skip to content

Commit

Permalink
Complete rename to MVVM Fabric.
Browse files Browse the repository at this point in the history
  • Loading branch information
brentedwards committed Dec 16, 2010
1 parent f05337b commit 717d697
Show file tree
Hide file tree
Showing 95 changed files with 222 additions and 226 deletions.
4 changes: 2 additions & 2 deletions Local.testsettings
Expand Up @@ -15,8 +15,8 @@
<Configuration>
<CodeCoverage xmlns="">
<Regular>
<CodeCoverageItem binaryFile="BrentEdwards.MVVM\bin\Debug\BrentEdwards.MVVM.dll" pdbFile="BrentEdwards.MVVM\bin\Debug\BrentEdwards.MVVM.pdb" instrumentInPlace="true" />
<CodeCoverageItem binaryFile="BrentEdwards.MVVM.Test\bin\Debug\BrentEdwards.MVVM.Test.dll" pdbFile="BrentEdwards.MVVM.Test\bin\Debug\BrentEdwards.MVVM.Test.pdb" instrumentInPlace="true" />
<CodeCoverageItem binaryFile="MvvmFabric\bin\Debug\MvvmFabric.dll" pdbFile="MvvmFabric\bin\Debug\MvvmFabric.pdb" instrumentInPlace="true" />
<CodeCoverageItem binaryFile="MvvmFabric.Test\bin\Debug\MvvmFabric.Test.dll" pdbFile="MvvmFabric.Test\bin\Debug\MvvmFabric.Test.pdb" instrumentInPlace="true" />
</Regular>
</CodeCoverage>
</Configuration>
Expand Down
Expand Up @@ -8,8 +8,8 @@
<ProjectGuid>{33B4A4A9-FA77-42D1-9EF3-7081F66A9F1D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BrentEdwards.MVVM.Castle.Windsor</RootNamespace>
<AssemblyName>BrentEdwards.MVVM.Castle.Windsor</AssemblyName>
<RootNamespace>MvvmFabric.Castle.Windsor</RootNamespace>
<AssemblyName>MvvmFabric.Castle.Windsor</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand Down Expand Up @@ -54,9 +54,9 @@
<Compile Include="WindsorViewConfigurationResolver.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BrentEdwards.MVVM\BrentEdwards.MVVM.csproj">
<ProjectReference Include="..\MvvmFabric\MvvmFabric.csproj">
<Project>{C590ED20-159A-48DF-9D83-1E4E9153DDFE}</Project>
<Name>BrentEdwards.MVVM</Name>
<Name>MvvmFabric</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
Expand Up @@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BrentEdwards.MVVM.Castle.Windsor")]
[assembly: AssemblyTitle("MvvmFabric.Castle.Windsor")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("BrentEdwards.MVVM.Castle.Windsor")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
[assembly: AssemblyCompany("Edwards Digital Technologies LLC")]
[assembly: AssemblyProduct("MVVM Fabric")]
[assembly: AssemblyCopyright("Copyright © 2010 Edwards Digital Technologies LLC")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Expand Up @@ -2,12 +2,12 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BrentEdwards.MVVM.Navigation;
using MvvmFabric.Navigation;
using Castle.Windsor;
using System.Windows;
using Castle.MicroKernel.Registration;

namespace BrentEdwards.MVVM.Castle.Windsor
namespace MvvmFabric.Castle.Windsor
{
public sealed class WindsorViewConfigurationResolver : IViewConfigurationResolver
{
Expand Down
Expand Up @@ -6,7 +6,7 @@
using System.Reflection;
using Castle.MicroKernel.ComponentActivator;

namespace BrentEdwards.MVVM.Movies.Core
namespace MvvmFabric.Movies.Core
{
public class ComponentContainer
{
Expand Down
Expand Up @@ -5,7 +5,7 @@
using System.Windows.Data;
using System.Windows;

namespace BrentEdwards.MVVM.Movies.Core.Conversion
namespace MvvmFabric.Movies.Core.Conversion
{
public sealed class BoolToVisibilityConverter : IValueConverter
{
Expand Down
@@ -1,8 +1,8 @@
using System.Windows;
using System.Windows.Controls;
using BrentEdwards.MVVM.Movies.Core.Models;
using MvvmFabric.Movies.Core.Models;

namespace BrentEdwards.MVVM.Movies.Core.Conversion
namespace MvvmFabric.Movies.Core.Conversion
{
public sealed class RatingTemplateSelector : DataTemplateSelector
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace BrentEdwards.MVVM.Movies.Core.Messaging
namespace MvvmFabric.Movies.Core.Messaging
{
public sealed class CloseViewMessage
{
Expand Down
@@ -1,7 +1,7 @@
using System;
using BrentEdwards.MVVM.Movies.Core.Models;
using MvvmFabric.Movies.Core.Models;

namespace BrentEdwards.MVVM.Movies.Core.Messaging
namespace MvvmFabric.Movies.Core.Messaging
{
public sealed class SearchMessage
{
Expand Down
@@ -1,7 +1,7 @@
using System;
using System.Windows;

namespace BrentEdwards.MVVM.Movies.Core.ModalDialogs
namespace MvvmFabric.Movies.Core.ModalDialogs
{
public sealed class Dialog
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Windows;

namespace BrentEdwards.MVVM.Movies.Core.ModalDialogs
namespace MvvmFabric.Movies.Core.ModalDialogs
{
public interface IMessageShower
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Windows;

namespace BrentEdwards.MVVM.Movies.Core.ModalDialogs
namespace MvvmFabric.Movies.Core.ModalDialogs
{
public sealed class MessageShower : IMessageShower
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace BrentEdwards.MVVM.Movies.Core.Models
namespace MvvmFabric.Movies.Core.Models
{
public enum Genres
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.ComponentModel;

namespace BrentEdwards.MVVM.Movies.Core.Models
namespace MvvmFabric.Movies.Core.Models
{
public abstract class ModelBase : INotifyPropertyChanged
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.ComponentModel;

namespace BrentEdwards.MVVM.Movies.Core.Models
namespace MvvmFabric.Movies.Core.Models
{
public sealed class Movie : ModelBase, IDataErrorInfo
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace BrentEdwards.MVVM.Movies.Core.Models
namespace MvvmFabric.Movies.Core.Models
{
public enum Ratings
{
Expand Down
Expand Up @@ -8,8 +8,8 @@
<ProjectGuid>{D10AC932-FFB4-4118-AE31-C628AA42BA91}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BrentEdwards.MVVM.Movies.Core</RootNamespace>
<AssemblyName>BrentEdwards.MVVM.Movies.Core</AssemblyName>
<RootNamespace>MvvmFabric.Movies.Core</RootNamespace>
<AssemblyName>MvvmFabric.Movies.Core</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand Down Expand Up @@ -76,9 +76,9 @@
<Compile Include="ViewModels\CoreViewModelBase.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BrentEdwards.MVVM\BrentEdwards.MVVM.csproj">
<ProjectReference Include="..\MvvmFabric\MvvmFabric.csproj">
<Project>{C590ED20-159A-48DF-9D83-1E4E9153DDFE}</Project>
<Name>BrentEdwards.MVVM</Name>
<Name>MvvmFabric</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
@@ -1,6 +1,6 @@
using System;

namespace BrentEdwards.MVVM.Movies.Core.Navigation
namespace MvvmFabric.Movies.Core.Navigation
{
public sealed class MoviesViewTargets : ViewTargets
{
Expand Down
Expand Up @@ -2,14 +2,14 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BrentEdwards.MVVM.Navigation;
using MvvmFabric.Navigation;
using System.Windows.Controls;
using BrentEdwards.MVVM.Movies.Core.Messaging;
using BrentEdwards.MVVM.Movies.Core.ViewModels;
using BrentEdwards.MVVM.Messaging;
using MvvmFabric.Movies.Core.Messaging;
using MvvmFabric.Movies.Core.ViewModels;
using MvvmFabric.Messaging;
using System.Windows;

namespace BrentEdwards.MVVM.Movies.Core.Navigation
namespace MvvmFabric.Movies.Core.Navigation
{
public sealed class ViewPlacer : IViewPlacer
{
Expand Down
Expand Up @@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BrentEdwards.MVVM.Movies.Core")]
[assembly: AssemblyTitle("MvvmFabric.Movies.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("BrentEdwards.MVVM.Movies.Core")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
[assembly: AssemblyCompany("Edwards Digital Technologies LLC")]
[assembly: AssemblyProduct("MVVM Fabric")]
[assembly: AssemblyCopyright("Copyright © 2010 Edwards Digital Technologies LLC")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using BrentEdwards.MVVM.Movies.Core.Models;
using MvvmFabric.Movies.Core.Models;

namespace BrentEdwards.MVVM.Movies.Core.Repositories
namespace MvvmFabric.Movies.Core.Repositories
{
public interface IMovieRepository
{
Expand Down
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using BrentEdwards.MVVM.Movies.Core.Models;
using MvvmFabric.Movies.Core.Models;

namespace BrentEdwards.MVVM.Movies.Core.Repositories
namespace MvvmFabric.Movies.Core.Repositories
{
public sealed class MovieRepository : IMovieRepository
{
Expand Down
@@ -1,10 +1,10 @@
using System;
using System.Windows.Input;
using BrentEdwards.MVVM.Messaging;
using BrentEdwards.MVVM.Movies.Core.Messaging;
using BrentEdwards.MVVM.Movies.Core.Models;
using MvvmFabric.Messaging;
using MvvmFabric.Movies.Core.Messaging;
using MvvmFabric.Movies.Core.Models;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public sealed class AdvancedSearchViewModel : CoreModalViewModelBase
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public abstract class CoreModalViewModelBase : ModalViewModelBase
{
Expand Down
Expand Up @@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BrentEdwards.MVVM;
using MvvmFabric;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public abstract class CoreViewModelBase : ViewModelBase
{
Expand Down
@@ -1,13 +1,13 @@
using System;
using System.Windows;
using System.Windows.Input;
using BrentEdwards.MVVM.Messaging;
using BrentEdwards.MVVM.Movies.Core.Messaging;
using BrentEdwards.MVVM.Movies.Core.ModalDialogs;
using BrentEdwards.MVVM.Movies.Core.Models;
using BrentEdwards.MVVM.Movies.Core.Repositories;
using MvvmFabric.Messaging;
using MvvmFabric.Movies.Core.Messaging;
using MvvmFabric.Movies.Core.ModalDialogs;
using MvvmFabric.Movies.Core.Models;
using MvvmFabric.Movies.Core.Repositories;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public sealed class DetailViewModel : CoreViewModelBase, ITitledViewModel
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Text;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public interface ITitledViewModel
{
Expand Down
@@ -1,13 +1,13 @@
using System;
using System.Collections.Generic;
using System.Windows.Input;
using BrentEdwards.MVVM.Messaging;
using BrentEdwards.MVVM.Movies.Core.Messaging;
using BrentEdwards.MVVM.Movies.Core.Models;
using BrentEdwards.MVVM.Movies.Core.Navigation;
using BrentEdwards.MVVM.Movies.Core.Repositories;
using MvvmFabric.Messaging;
using MvvmFabric.Movies.Core.Messaging;
using MvvmFabric.Movies.Core.Models;
using MvvmFabric.Movies.Core.Navigation;
using MvvmFabric.Movies.Core.Repositories;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public sealed class MasterViewModel : CoreViewModelBase
{
Expand Down
@@ -1,10 +1,10 @@
using System;
using System.Windows.Input;
using BrentEdwards.MVVM.Messaging;
using BrentEdwards.MVVM.Movies.Core.Messaging;
using BrentEdwards.MVVM.Movies.Core.Navigation;
using MvvmFabric.Messaging;
using MvvmFabric.Movies.Core.Messaging;
using MvvmFabric.Movies.Core.Navigation;

namespace BrentEdwards.MVVM.Movies.Core.ViewModels
namespace MvvmFabric.Movies.Core.ViewModels
{
public sealed class QuickSearchViewModel : CoreViewModelBase
{
Expand Down

0 comments on commit 717d697

Please sign in to comment.