File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22using System . Diagnostics ;
33using System . Windows . Input ;
44
5- namespace Solutionizer . ViewModels {
5+ namespace Solutionizer . Infrastructure {
66 /// <summary>
77 /// A command whose sole purpose is to relay its functionality to other
88 /// objects by invoking delegates. The default return value for the CanExecute
Original file line number Diff line number Diff line change 11using System ;
22using System . Windows . Input ;
33
4- namespace Solutionizer . ViewModels {
4+ namespace Solutionizer . Infrastructure {
55 /// <summary>
66 /// A generic command whose sole purpose is to relay its functionality to other
77 /// objects by invoking delegates. The default return value for the CanExecute
Original file line number Diff line number Diff line change 22using System . Collections . Generic ;
33using System . Collections . ObjectModel ;
44
5- namespace Solutionizer . ViewModels {
5+ namespace Solutionizer . Infrastructure {
66 public class SortedObservableCollection < T > : ObservableCollection < T > {
77 private readonly IComparer < T > _comparer ;
88
Original file line number Diff line number Diff line change 8888 <Compile Include =" Helper\GridViewSort.cs" />
8989 <Compile Include =" Helper\Icons.cs" />
9090 <Compile Include =" Helper\InsertionAdorner.cs" />
91- <Compile Include =" ViewModels \FixedRelayCommand.cs" />
92- <Compile Include =" ViewModels \FixedRelayCommandGeneric.cs" />
91+ <Compile Include =" Infrastructure \FixedRelayCommand.cs" />
92+ <Compile Include =" Infrastructure \FixedRelayCommandGeneric.cs" />
9393 <Compile Include =" ViewModels\Project.cs" />
9494 <Compile Include =" ViewModels\ProjectShelfViewModel.cs" />
9595 <Compile Include =" ViewModels\SolutionViewModel.cs" />
9696 <Compile Include =" Scanner\ProjectScanner.cs" />
9797 <Compile Include =" ViewModels\MainViewModel.cs" />
98- <Compile Include =" ViewModels \SortedObservableCollection.cs" />
98+ <Compile Include =" Infrastructure \SortedObservableCollection.cs" />
9999 <Compile Include =" Views\MainView.xaml.cs" >
100100 <DependentUpon >MainView.xaml</DependentUpon >
101101 </Compile >
Original file line number Diff line number Diff line change 55using GalaSoft . MvvmLight ;
66using Ookii . Dialogs . Wpf ;
77using Solutionizer . Commands ;
8+ using Solutionizer . Infrastructure ;
89
910namespace Solutionizer . ViewModels {
1011 public class MainViewModel : ViewModelBase {
Original file line number Diff line number Diff line change 55using System . Windows . Input ;
66using GalaSoft . MvvmLight ;
77using Solutionizer . Extensions ;
8+ using Solutionizer . Infrastructure ;
89using Solutionizer . Scanner ;
910
1011namespace Solutionizer . ViewModels {
Original file line number Diff line number Diff line change 66using System . Windows . Input ;
77using GalaSoft . MvvmLight ;
88using Solutionizer . Helper ;
9+ using Solutionizer . Infrastructure ;
910using Solutionizer . Scanner ;
1011using Solutionizer . VisualStudio ;
1112
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . ObjectModel ;
33using System . Linq ;
4+ using Solutionizer . Infrastructure ;
45using Solutionizer . ViewModels ;
56
67namespace Solutionizer . VisualStudio {
You can’t perform that action at this time.
0 commit comments