├── .gitignore ├── LICENSE ├── README ├── StockTicker.DotSettings ├── scripts ├── StockTicker.build ├── integrate-without-fxcop.cmd ├── integrate.cmd └── nuget.symbols.txt ├── source ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ ├── NuGet.targets │ └── packages.config ├── CodeAnalysisDictionary.xml ├── GlobalAssemblyInfo.cs ├── License.txt ├── Settings.StyleCop ├── StockTicker.Public.snk ├── StockTicker.Specification │ ├── Popup.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── SpecificationBootstrapper.cs │ ├── StockTicker.Specification.csproj │ ├── StockTickerSpecification.cs │ ├── Window.cs │ ├── WindowManager.cs │ └── packages.config ├── StockTicker.Test │ ├── Actions │ │ ├── ActionBuilderExtensionsForTesting.cs │ │ ├── ActionBuilderTest.cs │ │ ├── AsyncResultDecoratorTest.cs │ │ ├── BusyIndicationViewModelTest.cs │ │ ├── HideBusyIndicationTest.cs │ │ ├── ITestResult.cs │ │ ├── MissingTest.cs │ │ ├── NotifyTest.cs │ │ ├── RescueResultDecoratorTest.cs │ │ ├── ResultDecoraterBaseTest.cs │ │ ├── ScopeDecoratorApplicatorTest.cs │ │ ├── ShowBusyIndicationTest.cs │ │ └── UseActionsActivationStrategyTest.cs │ ├── Authentication │ │ ├── AuthenticateTest.cs │ │ ├── AuthenticationViewModelTest.cs │ │ ├── ChoosePasswordViewModelTest.cs │ │ ├── ChooseUserNameViewModelTest.cs │ │ └── SuggestUsernamesTest.cs │ ├── ContentViewModelFactoryTest.cs │ ├── Extensions │ │ ├── BindingExtensionsTest.cs │ │ └── ResolutionRootExtensionsTest.cs │ ├── Externals │ │ ├── AnyStockDetailModel.cs │ │ └── AnyStockSearchModel.cs │ ├── FindStocks │ │ ├── SearchStocksTest.cs │ │ └── SearchViewModelTest.cs │ ├── Localization │ │ ├── LocalizationCultureProviderTest.cs │ │ └── LocalizerTest.cs │ ├── ManageStocks │ │ ├── ConductStockTickerContentTest.cs │ │ ├── DollarConverterTest.cs │ │ ├── GetStockDetailsTest.cs │ │ ├── RangeToTextConverterTest.cs │ │ └── StockDetailModelToTitleConverterTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StockTicker.Test.csproj │ ├── TestHelpers │ │ ├── ActionBuilderMock.cs │ │ ├── ActionBuilderMockExtensions.cs │ │ ├── ActionInfo.cs │ │ ├── CaliburnIoCFake.cs │ │ ├── FakePresentationSource.cs │ │ ├── FutureExtensions.cs │ │ ├── FutureMock.cs │ │ └── ResultExtensionsForTesting.cs │ └── packages.config ├── StockTicker.msbuild ├── StockTicker.ruleset ├── StockTicker.sln ├── StockTicker.sln.DotSettings ├── StockTicker.snk ├── StockTicker │ ├── Actions │ │ ├── ActionBuilder.cs │ │ ├── ActionExtensions.cs │ │ ├── Actions.Designer.cs │ │ ├── Actions.resx │ │ ├── ActionsModule.cs │ │ ├── AsyncAttribute.cs │ │ ├── AsyncDecoratorApplicator.cs │ │ ├── AsyncResultDecorator.cs │ │ ├── BusyIndicationViewModel.cs │ │ ├── DecoratorApplicatorPipeline.cs │ │ ├── HideBusyIndication.cs │ │ ├── IActionBuilder.cs │ │ ├── IBusyIndicationViewModel.cs │ │ ├── IDecoratorApplicator.cs │ │ ├── IDecoratorApplicatorPipeline.cs │ │ ├── IFinishBusyIndication.cs │ │ ├── IHideBusyIndication.cs │ │ ├── IMissing.cs │ │ ├── INotify.cs │ │ ├── IResultFactory.cs │ │ ├── IScopeDecoratorApplicator.cs │ │ ├── IShowBusyIndication.cs │ │ ├── IStartBusyIndication.cs │ │ ├── IStartBusyIndication.cs.orig │ │ ├── IUseActions.cs │ │ ├── Missing.cs │ │ ├── NinjectResultFactory.cs │ │ ├── Notify.cs │ │ ├── RequestModel.cs │ │ ├── RescueResultDecorator.cs │ │ ├── ResultDecoratorBase.cs │ │ ├── ScopeDecoratorApplicator.cs │ │ ├── ShowBusyIndication.cs │ │ └── UseActionsActivationStrategy.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootstrapper.cs │ ├── Authentication │ │ ├── Authenticate.cs │ │ ├── Authentication.Designer.cs │ │ ├── Authentication.resx │ │ ├── AuthenticationExtensions.cs │ │ ├── AuthenticationModule.cs │ │ ├── AuthenticationStepFactory.cs │ │ ├── AuthenticationView.xaml │ │ ├── AuthenticationView.xaml.cs │ │ ├── AuthenticationViewModel.cs │ │ ├── ChoosePasswordView.cs │ │ ├── ChoosePasswordView.xaml │ │ ├── ChoosePasswordView.xaml.cs │ │ ├── ChoosePasswordViewModel.cs │ │ ├── ChoosePasswordViewModelValidator.cs │ │ ├── ChooseUserNameView.cs │ │ ├── ChooseUserNameView.xaml │ │ ├── ChooseUserNameView.xaml.cs │ │ ├── ChooseUserNameViewModel.cs │ │ ├── IAuthenticate.cs │ │ ├── IAuthenticationStep.cs │ │ ├── IAuthenticationStepFactory.cs │ │ ├── IAuthenticationViewModel.cs │ │ ├── IChoosePasswordViewModel.cs │ │ ├── IChooseUsernameViewModel.cs │ │ ├── ISuggestUsernames.cs │ │ ├── Secure.cs │ │ ├── SuggestUsernames.cs │ │ └── UserNameChosen.cs │ ├── CaliburnModule.cs │ ├── ContentViewModelFactory.cs │ ├── Extensions │ │ ├── BindingExtensions.cs │ │ └── ResolutionRootExtensions.cs │ ├── Externals │ │ ├── AuthenticationService.cs │ │ ├── ExternalExtensions.cs │ │ ├── ExternalsModule.cs │ │ ├── IAuthenticationService.cs │ │ ├── IStockSearchService.cs │ │ ├── IStockService.cs │ │ ├── NewUserModel.cs │ │ ├── PotentialNewUserModel.cs │ │ ├── Range.cs │ │ ├── StockCompanies.cs │ │ ├── StockDetailModel.cs │ │ ├── StockMarkets.cs │ │ ├── StockSearchModel.cs │ │ ├── StockSearchService.cs │ │ ├── StockService.cs │ │ ├── StockSymbols.cs │ │ └── UserModel.cs │ ├── FindStocks │ │ ├── FindStocks.Designer.cs │ │ ├── FindStocks.resx │ │ ├── FindStocksExtensions.cs │ │ ├── FindStocksModule.cs │ │ ├── ISearchStocks.cs │ │ ├── ISearchViewModel.cs │ │ ├── SearchStocks.cs │ │ ├── SearchView.cs │ │ ├── SearchView.xaml │ │ ├── SearchView.xaml.cs │ │ └── SearchViewModel.cs │ ├── Future.cs │ ├── General.Designer.cs │ ├── General.resx │ ├── GlobalSuppressions.cs │ ├── IContentViewModelFactory.cs │ ├── IFutureValue.cs │ ├── IFutureValueSetter.cs │ ├── IStockTickerContentViewModel.cs │ ├── IStockTickerViewModel.cs │ ├── Localization │ │ ├── ICultureSetter.cs │ │ ├── ILocalizationCultureProvider.cs │ │ ├── ILocalizer.cs │ │ ├── LocalizationCultureProvider.cs │ │ ├── LocalizationModule.cs │ │ ├── LocalizeDictionaryDecorator.cs │ │ └── Localizer.cs │ ├── ManageStocks │ │ ├── ConductStockTickerContent.cs │ │ ├── DollarConverter.cs │ │ ├── GetStockDetails.cs │ │ ├── IConductStockTickerContent.cs │ │ ├── IGetStockDetails.cs │ │ ├── IStockDetailViewModel.cs │ │ ├── ManageStocks.Designer.cs │ │ ├── ManageStocks.resx │ │ ├── ManageStocksExtensions.cs │ │ ├── ManageStocksModule.cs │ │ ├── RangeToTextConverter.cs │ │ ├── StockDetailModelToTitleConverter.cs │ │ ├── StockDetailView.cs │ │ ├── StockDetailView.xaml │ │ ├── StockDetailView.xaml.cs │ │ └── StockDetailViewModel.cs │ ├── News │ │ ├── HeadLinesView.xaml │ │ ├── HeadLinesView.xaml.cs │ │ ├── HeadLinesViewModel.cs │ │ ├── INewsContentViewModel.cs │ │ ├── INewsViewModel.cs │ │ ├── Images │ │ │ ├── Economy.jpg │ │ │ ├── NewsPaper.jpg │ │ │ ├── PersonalFinance.jpg │ │ │ ├── Retirement.jpg │ │ │ ├── SpecialReports.jpg │ │ │ ├── Spotlight.jpg │ │ │ └── Taxes.jpg │ │ ├── NewsModule.cs │ │ ├── NewsView.cs │ │ ├── NewsView.xaml │ │ ├── NewsView.xaml.cs │ │ ├── NewsViewModel.cs │ │ ├── PromotionView.xaml │ │ ├── PromotionView.xaml.cs │ │ └── PromotionViewModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── ISettings.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── StockTicker.csproj │ ├── StockTickerModule.cs │ ├── StockTickerView.xaml │ ├── StockTickerView.xaml.cs │ ├── StockTickerViewModel.cs │ ├── Styles │ │ ├── AllResources.xaml │ │ ├── DefaultBrushes.xaml │ │ └── DefaultStyles.xaml │ ├── Validation │ │ ├── ValidationModule.cs │ │ └── ValidatorFactory.cs │ ├── app.config │ └── packages.config └── packages │ ├── .gitignore │ └── repositories.config └── tools ├── FxCop ├── Architecture-msil.dll ├── CodeAnalysis.dll ├── CustomDictionary.xml ├── Engines │ ├── IntrospectionAnalysisEngine.dll │ └── PhoenixAnalysisEngine.dll ├── FxCopCmd.exe ├── FxCopCmd.exe.config ├── FxCopCommon.dll ├── FxCopSdk.dll ├── MSSp3en.lex ├── MSSp3ena.lex ├── MSSpell3.dll ├── Microsoft.Cci.dll ├── Microsoft.VisualStudio.CodeAnalysis.Common.dll ├── Microsoft.VisualStudio.CodeAnalysis.DataflowModels.dll ├── Microsoft.VisualStudio.CodeAnalysis.Interop.dll ├── Microsoft.VisualStudio.CodeAnalysis.Phoenix.dll ├── Microsoft.VisualStudio.CodeAnalysis.Phoenix.xml ├── Microsoft.VisualStudio.CodeAnalysis.dll ├── Msbuild │ ├── Microsoft.CodeAnalysis.Targets │ ├── Microsoft.VisualStudio.CodeAnalysis.Sdk.dll │ └── fxcoptask.dll ├── Repository │ ├── Compatibility │ │ ├── Desktop2.0.xml │ │ ├── Desktop2.0SP1.xml │ │ ├── Desktop2.0SP2.xml │ │ ├── Desktop3.0.xml │ │ ├── Desktop3.0SP1.xml │ │ ├── Desktop3.0SP2.xml │ │ ├── Desktop3.5.xml │ │ └── Desktop3.5SP1.xml │ └── system32.bin ├── Rules │ ├── DataflowRules.dll │ ├── DesignRules.dll │ ├── GlobalizationRules.dll │ ├── InteroperabilityRules.dll │ ├── MaintainabilityRules.dll │ ├── MobilityRules.dll │ ├── NamingRules.dll │ ├── PerformanceRules.dll │ ├── PortabilityRules.dll │ ├── ReliabilityRules.dll │ ├── SecurityRules.dll │ ├── SecurityTransparencyRules.dll │ └── UsageRules.dll ├── Runtime-vccrt-win-msil.dll ├── Xml │ ├── CodeAnalysisReport.xsl │ ├── FxCopReport.xsl │ └── VSConsoleOutput.xsl ├── amd64 │ └── msdia100.dll ├── ia64 │ └── msdia100.dll ├── msdia100.dll └── phx.dll ├── Nuget ├── LICENSE.txt └── NuGet.exe ├── StyleCopMsBuildTask ├── StyleCop.CSharp.Rules.dll ├── StyleCop.CSharp.dll ├── StyleCop.Targets └── StyleCop.dll └── nant ├── CollectionGen.dll ├── Interop.MsmMergeTypeLib.dll ├── Interop.StarTeam.dll ├── Interop.WindowsInstaller.dll ├── MSITaskErrors.mst ├── MSITaskTemplate.msi ├── MSMTaskErrors.mst ├── MSMTaskTemplate.msm ├── NAnt.CompressionTasks.dll ├── NAnt.CompressionTasks.xml ├── NAnt.Contrib.Tasks.dll ├── NAnt.Contrib.Tasks.xml ├── NAnt.Core.dll ├── NAnt.Core.xml ├── NAnt.DotNetTasks.dll ├── NAnt.DotNetTasks.xml ├── NAnt.MSNetTasks.dll ├── NAnt.MSNetTasks.xml ├── NAnt.NUnit.dll ├── NAnt.NUnit.xml ├── NAnt.NUnit1Tasks.dll ├── NAnt.NUnit1Tasks.xml ├── NAnt.NUnit2Tasks.dll ├── NAnt.NUnit2Tasks.xml ├── NAnt.SourceControlTasks.dll ├── NAnt.SourceControlTasks.xml ├── NAnt.VSNetTasks.dll ├── NAnt.VSNetTasks.xml ├── NAnt.VisualCppTasks.dll ├── NAnt.VisualCppTasks.xml ├── NAnt.Win32Tasks.dll ├── NAnt.Win32Tasks.xml ├── NAnt.exe ├── NAnt.exe.config ├── NAnt.xml ├── NDoc.Documenter.NAnt.dll ├── SLiNgshoT.Core.dll ├── SLiNgshoT.exe ├── SourceSafe.Interop.dll ├── bbv.NAntTasks.dll ├── extensions └── common │ └── 2.0 │ ├── NAnt.MSBuild.dll │ └── NAnt.MSBuild.xml ├── lib ├── common │ ├── 1.1 │ │ ├── nunit-console-runner.dll │ │ ├── nunit-console.exe │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ ├── 2.0 │ │ ├── nunit-console-runner.dll │ │ ├── nunit-console.exe │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ └── neutral │ │ ├── ICSharpCode.SharpCvsLib.Console.dll │ │ ├── ICSharpCode.SharpCvsLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ └── NUnitCore.dll ├── mono │ ├── 1.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ └── 2.0 │ │ ├── NDoc.Core.dll │ │ ├── NDoc.Documenter.Msdn.dll │ │ ├── NDoc.ExtendedUI.dll │ │ ├── nunit.core.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll └── net │ ├── 1.0 │ ├── NDoc.Core.dll │ ├── NDoc.Documenter.Msdn.dll │ ├── NDoc.ExtendedUI.dll │ ├── nunit-console-runner.dll │ ├── nunit-console.exe │ ├── nunit.core.dll │ ├── nunit.framework.dll │ └── nunit.util.dll │ ├── 1.1 │ ├── NDoc.Core.dll │ ├── NDoc.Documenter.Msdn.dll │ ├── NDoc.ExtendedUI.dll │ ├── nunit.core.dll │ ├── nunit.framework.dll │ └── nunit.util.dll │ └── 2.0 │ ├── NDoc.Core.dll │ ├── NDoc.Documenter.Msdn.dll │ ├── NDoc.ExtendedUI.dll │ ├── nunit.core.dll │ ├── nunit.framework.dll │ └── nunit.util.dll ├── log4net.dll └── scvs.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StockTicker.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/StockTicker.DotSettings -------------------------------------------------------------------------------- /scripts/StockTicker.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/scripts/StockTicker.build -------------------------------------------------------------------------------- /scripts/integrate-without-fxcop.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/scripts/integrate-without-fxcop.cmd -------------------------------------------------------------------------------- /scripts/integrate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/scripts/integrate.cmd -------------------------------------------------------------------------------- /scripts/nuget.symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/scripts/nuget.symbols.txt -------------------------------------------------------------------------------- /source/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/.nuget/NuGet.Config -------------------------------------------------------------------------------- /source/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/.nuget/NuGet.exe -------------------------------------------------------------------------------- /source/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/.nuget/NuGet.targets -------------------------------------------------------------------------------- /source/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/.nuget/packages.config -------------------------------------------------------------------------------- /source/CodeAnalysisDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/CodeAnalysisDictionary.xml -------------------------------------------------------------------------------- /source/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /source/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/License.txt -------------------------------------------------------------------------------- /source/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/Settings.StyleCop -------------------------------------------------------------------------------- /source/StockTicker.Public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Public.snk -------------------------------------------------------------------------------- /source/StockTicker.Specification/Popup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/Popup.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/Settings.StyleCop -------------------------------------------------------------------------------- /source/StockTicker.Specification/SpecificationBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/SpecificationBootstrapper.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/StockTicker.Specification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/StockTicker.Specification.csproj -------------------------------------------------------------------------------- /source/StockTicker.Specification/StockTickerSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/StockTickerSpecification.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/Window.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/WindowManager.cs -------------------------------------------------------------------------------- /source/StockTicker.Specification/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Specification/packages.config -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ActionBuilderExtensionsForTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ActionBuilderExtensionsForTesting.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ActionBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ActionBuilderTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/AsyncResultDecoratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/AsyncResultDecoratorTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/BusyIndicationViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/BusyIndicationViewModelTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/HideBusyIndicationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/HideBusyIndicationTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ITestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ITestResult.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/MissingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/MissingTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/NotifyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/NotifyTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/RescueResultDecoratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/RescueResultDecoratorTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ResultDecoraterBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ResultDecoraterBaseTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ScopeDecoratorApplicatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ScopeDecoratorApplicatorTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/ShowBusyIndicationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/ShowBusyIndicationTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Actions/UseActionsActivationStrategyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Actions/UseActionsActivationStrategyTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Authentication/AuthenticateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Authentication/AuthenticateTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Authentication/AuthenticationViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Authentication/AuthenticationViewModelTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Authentication/ChoosePasswordViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Authentication/ChoosePasswordViewModelTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Authentication/ChooseUserNameViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Authentication/ChooseUserNameViewModelTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Authentication/SuggestUsernamesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Authentication/SuggestUsernamesTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ContentViewModelFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ContentViewModelFactoryTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Extensions/BindingExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Extensions/BindingExtensionsTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Extensions/ResolutionRootExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Extensions/ResolutionRootExtensionsTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Externals/AnyStockDetailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Externals/AnyStockDetailModel.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Externals/AnyStockSearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Externals/AnyStockSearchModel.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/FindStocks/SearchStocksTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/FindStocks/SearchStocksTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/FindStocks/SearchViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/FindStocks/SearchViewModelTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Localization/LocalizationCultureProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Localization/LocalizationCultureProviderTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Localization/LocalizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Localization/LocalizerTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ManageStocks/ConductStockTickerContentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ManageStocks/ConductStockTickerContentTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ManageStocks/DollarConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ManageStocks/DollarConverterTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ManageStocks/GetStockDetailsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ManageStocks/GetStockDetailsTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ManageStocks/RangeToTextConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ManageStocks/RangeToTextConverterTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/ManageStocks/StockDetailModelToTitleConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/ManageStocks/StockDetailModelToTitleConverterTest.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/StockTicker.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/StockTicker.Test.csproj -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/ActionBuilderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/ActionBuilderMock.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/ActionBuilderMockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/ActionBuilderMockExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/ActionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/ActionInfo.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/CaliburnIoCFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/CaliburnIoCFake.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/FakePresentationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/FakePresentationSource.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/FutureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/FutureExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/FutureMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/FutureMock.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/TestHelpers/ResultExtensionsForTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/TestHelpers/ResultExtensionsForTesting.cs -------------------------------------------------------------------------------- /source/StockTicker.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.Test/packages.config -------------------------------------------------------------------------------- /source/StockTicker.msbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.msbuild -------------------------------------------------------------------------------- /source/StockTicker.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.ruleset -------------------------------------------------------------------------------- /source/StockTicker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.sln -------------------------------------------------------------------------------- /source/StockTicker.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.sln.DotSettings -------------------------------------------------------------------------------- /source/StockTicker.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker.snk -------------------------------------------------------------------------------- /source/StockTicker/Actions/ActionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ActionBuilder.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/ActionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ActionExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/Actions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/Actions.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/Actions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/Actions.resx -------------------------------------------------------------------------------- /source/StockTicker/Actions/ActionsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ActionsModule.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/AsyncAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/AsyncAttribute.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/AsyncDecoratorApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/AsyncDecoratorApplicator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/AsyncResultDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/AsyncResultDecorator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/BusyIndicationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/BusyIndicationViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/DecoratorApplicatorPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/DecoratorApplicatorPipeline.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/HideBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/HideBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IActionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IActionBuilder.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IBusyIndicationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IBusyIndicationViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IDecoratorApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IDecoratorApplicator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IDecoratorApplicatorPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IDecoratorApplicatorPipeline.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IFinishBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IFinishBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IHideBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IHideBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IMissing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IMissing.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/INotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/INotify.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IResultFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IScopeDecoratorApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IScopeDecoratorApplicator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IShowBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IShowBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IStartBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IStartBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/IStartBusyIndication.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IStartBusyIndication.cs.orig -------------------------------------------------------------------------------- /source/StockTicker/Actions/IUseActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/IUseActions.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/Missing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/Missing.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/NinjectResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/NinjectResultFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/Notify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/Notify.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/RequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/RequestModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/RescueResultDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/RescueResultDecorator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/ResultDecoratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ResultDecoratorBase.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/ScopeDecoratorApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ScopeDecoratorApplicator.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/ShowBusyIndication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/ShowBusyIndication.cs -------------------------------------------------------------------------------- /source/StockTicker/Actions/UseActionsActivationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Actions/UseActionsActivationStrategy.cs -------------------------------------------------------------------------------- /source/StockTicker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/App.xaml -------------------------------------------------------------------------------- /source/StockTicker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/App.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/AppBootstrapper.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/Authenticate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/Authenticate.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/Authentication.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/Authentication.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/Authentication.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/Authentication.resx -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationModule.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationStepFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationStepFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationView.xaml -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/AuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/AuthenticationViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChoosePasswordView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChoosePasswordView.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChoosePasswordView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChoosePasswordView.xaml -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChoosePasswordView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChoosePasswordView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChoosePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChoosePasswordViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChoosePasswordViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChoosePasswordViewModelValidator.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChooseUserNameView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChooseUserNameView.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChooseUserNameView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChooseUserNameView.xaml -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChooseUserNameView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChooseUserNameView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ChooseUserNameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ChooseUserNameViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IAuthenticate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IAuthenticate.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IAuthenticationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IAuthenticationStep.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IAuthenticationStepFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IAuthenticationStepFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IAuthenticationViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IChoosePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IChoosePasswordViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/IChooseUsernameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/IChooseUsernameViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/ISuggestUsernames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/ISuggestUsernames.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/Secure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/Secure.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/SuggestUsernames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/SuggestUsernames.cs -------------------------------------------------------------------------------- /source/StockTicker/Authentication/UserNameChosen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Authentication/UserNameChosen.cs -------------------------------------------------------------------------------- /source/StockTicker/CaliburnModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/CaliburnModule.cs -------------------------------------------------------------------------------- /source/StockTicker/ContentViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ContentViewModelFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/Extensions/BindingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Extensions/BindingExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/Extensions/ResolutionRootExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Extensions/ResolutionRootExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/AuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/AuthenticationService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/ExternalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/ExternalExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/ExternalsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/ExternalsModule.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/IAuthenticationService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/IStockSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/IStockSearchService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/IStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/IStockService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/NewUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/NewUserModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/PotentialNewUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/PotentialNewUserModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/Range.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockCompanies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockCompanies.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockDetailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockDetailModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockMarkets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockMarkets.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockSearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockSearchModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockSearchService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockService.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/StockSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/StockSymbols.cs -------------------------------------------------------------------------------- /source/StockTicker/Externals/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Externals/UserModel.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/FindStocks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/FindStocks.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/FindStocks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/FindStocks.resx -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/FindStocksExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/FindStocksExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/FindStocksModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/FindStocksModule.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/ISearchStocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/ISearchStocks.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/ISearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/ISearchViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/SearchStocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/SearchStocks.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/SearchView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/SearchView.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/SearchView.xaml -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/SearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/SearchView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/FindStocks/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/FindStocks/SearchViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Future.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Future.cs -------------------------------------------------------------------------------- /source/StockTicker/General.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/General.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/General.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/General.resx -------------------------------------------------------------------------------- /source/StockTicker/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/GlobalSuppressions.cs -------------------------------------------------------------------------------- /source/StockTicker/IContentViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/IContentViewModelFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/IFutureValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/IFutureValue.cs -------------------------------------------------------------------------------- /source/StockTicker/IFutureValueSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/IFutureValueSetter.cs -------------------------------------------------------------------------------- /source/StockTicker/IStockTickerContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/IStockTickerContentViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/IStockTickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/IStockTickerViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/ICultureSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/ICultureSetter.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/ILocalizationCultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/ILocalizationCultureProvider.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/ILocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/ILocalizer.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/LocalizationCultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/LocalizationCultureProvider.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/LocalizationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/LocalizationModule.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/LocalizeDictionaryDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/LocalizeDictionaryDecorator.cs -------------------------------------------------------------------------------- /source/StockTicker/Localization/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Localization/Localizer.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/ConductStockTickerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/ConductStockTickerContent.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/DollarConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/DollarConverter.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/GetStockDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/GetStockDetails.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/IConductStockTickerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/IConductStockTickerContent.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/IGetStockDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/IGetStockDetails.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/IStockDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/IStockDetailViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/ManageStocks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/ManageStocks.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/ManageStocks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/ManageStocks.resx -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/ManageStocksExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/ManageStocksExtensions.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/ManageStocksModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/ManageStocksModule.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/RangeToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/RangeToTextConverter.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/StockDetailModelToTitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/StockDetailModelToTitleConverter.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/StockDetailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/StockDetailView.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/StockDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/StockDetailView.xaml -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/StockDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/StockDetailView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/ManageStocks/StockDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/ManageStocks/StockDetailViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/News/HeadLinesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/HeadLinesView.xaml -------------------------------------------------------------------------------- /source/StockTicker/News/HeadLinesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/HeadLinesView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/News/HeadLinesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/HeadLinesViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/News/INewsContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/INewsContentViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/News/INewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/INewsViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/News/Images/Economy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/Economy.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/NewsPaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/NewsPaper.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/PersonalFinance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/PersonalFinance.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/Retirement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/Retirement.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/SpecialReports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/SpecialReports.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/Spotlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/Spotlight.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/Images/Taxes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/Images/Taxes.jpg -------------------------------------------------------------------------------- /source/StockTicker/News/NewsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/NewsModule.cs -------------------------------------------------------------------------------- /source/StockTicker/News/NewsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/NewsView.cs -------------------------------------------------------------------------------- /source/StockTicker/News/NewsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/NewsView.xaml -------------------------------------------------------------------------------- /source/StockTicker/News/NewsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/NewsView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/News/NewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/NewsViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/News/PromotionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/PromotionView.xaml -------------------------------------------------------------------------------- /source/StockTicker/News/PromotionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/PromotionView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/News/PromotionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/News/PromotionViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/ISettings.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/Resources.resx -------------------------------------------------------------------------------- /source/StockTicker/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/Settings.cs -------------------------------------------------------------------------------- /source/StockTicker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Properties/Settings.settings -------------------------------------------------------------------------------- /source/StockTicker/StockTicker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/StockTicker.csproj -------------------------------------------------------------------------------- /source/StockTicker/StockTickerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/StockTickerModule.cs -------------------------------------------------------------------------------- /source/StockTicker/StockTickerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/StockTickerView.xaml -------------------------------------------------------------------------------- /source/StockTicker/StockTickerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/StockTickerView.xaml.cs -------------------------------------------------------------------------------- /source/StockTicker/StockTickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/StockTickerViewModel.cs -------------------------------------------------------------------------------- /source/StockTicker/Styles/AllResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Styles/AllResources.xaml -------------------------------------------------------------------------------- /source/StockTicker/Styles/DefaultBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Styles/DefaultBrushes.xaml -------------------------------------------------------------------------------- /source/StockTicker/Styles/DefaultStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Styles/DefaultStyles.xaml -------------------------------------------------------------------------------- /source/StockTicker/Validation/ValidationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Validation/ValidationModule.cs -------------------------------------------------------------------------------- /source/StockTicker/Validation/ValidatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/Validation/ValidatorFactory.cs -------------------------------------------------------------------------------- /source/StockTicker/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/app.config -------------------------------------------------------------------------------- /source/StockTicker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/StockTicker/packages.config -------------------------------------------------------------------------------- /source/packages/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* -------------------------------------------------------------------------------- /source/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/source/packages/repositories.config -------------------------------------------------------------------------------- /tools/FxCop/Architecture-msil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Architecture-msil.dll -------------------------------------------------------------------------------- /tools/FxCop/CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/CodeAnalysis.dll -------------------------------------------------------------------------------- /tools/FxCop/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/CustomDictionary.xml -------------------------------------------------------------------------------- /tools/FxCop/Engines/IntrospectionAnalysisEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Engines/IntrospectionAnalysisEngine.dll -------------------------------------------------------------------------------- /tools/FxCop/Engines/PhoenixAnalysisEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Engines/PhoenixAnalysisEngine.dll -------------------------------------------------------------------------------- /tools/FxCop/FxCopCmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/FxCopCmd.exe -------------------------------------------------------------------------------- /tools/FxCop/FxCopCmd.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/FxCopCmd.exe.config -------------------------------------------------------------------------------- /tools/FxCop/FxCopCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/FxCopCommon.dll -------------------------------------------------------------------------------- /tools/FxCop/FxCopSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/FxCopSdk.dll -------------------------------------------------------------------------------- /tools/FxCop/MSSp3en.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/MSSp3en.lex -------------------------------------------------------------------------------- /tools/FxCop/MSSp3ena.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/MSSp3ena.lex -------------------------------------------------------------------------------- /tools/FxCop/MSSpell3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/MSSpell3.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.Cci.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.Cci.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Common.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.DataflowModels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.DataflowModels.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Interop.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Phoenix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Phoenix.dll -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Phoenix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Phoenix.xml -------------------------------------------------------------------------------- /tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll -------------------------------------------------------------------------------- /tools/FxCop/Msbuild/Microsoft.CodeAnalysis.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Msbuild/Microsoft.CodeAnalysis.Targets -------------------------------------------------------------------------------- /tools/FxCop/Msbuild/Microsoft.VisualStudio.CodeAnalysis.Sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Msbuild/Microsoft.VisualStudio.CodeAnalysis.Sdk.dll -------------------------------------------------------------------------------- /tools/FxCop/Msbuild/fxcoptask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Msbuild/fxcoptask.dll -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop2.0.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop2.0SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop2.0SP1.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop2.0SP2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop2.0SP2.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop3.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop3.0.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop3.0SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop3.0SP1.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop3.0SP2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop3.0SP2.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop3.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop3.5.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/Compatibility/Desktop3.5SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/Compatibility/Desktop3.5SP1.xml -------------------------------------------------------------------------------- /tools/FxCop/Repository/system32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Repository/system32.bin -------------------------------------------------------------------------------- /tools/FxCop/Rules/DataflowRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/DataflowRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/DesignRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/DesignRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/GlobalizationRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/GlobalizationRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/InteroperabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/InteroperabilityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/MaintainabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/MaintainabilityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/MobilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/MobilityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/NamingRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/NamingRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/PerformanceRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/PerformanceRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/PortabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/PortabilityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/ReliabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/ReliabilityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/SecurityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/SecurityRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/SecurityTransparencyRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/SecurityTransparencyRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Rules/UsageRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Rules/UsageRules.dll -------------------------------------------------------------------------------- /tools/FxCop/Runtime-vccrt-win-msil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Runtime-vccrt-win-msil.dll -------------------------------------------------------------------------------- /tools/FxCop/Xml/CodeAnalysisReport.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Xml/CodeAnalysisReport.xsl -------------------------------------------------------------------------------- /tools/FxCop/Xml/FxCopReport.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Xml/FxCopReport.xsl -------------------------------------------------------------------------------- /tools/FxCop/Xml/VSConsoleOutput.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/Xml/VSConsoleOutput.xsl -------------------------------------------------------------------------------- /tools/FxCop/amd64/msdia100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/amd64/msdia100.dll -------------------------------------------------------------------------------- /tools/FxCop/ia64/msdia100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/ia64/msdia100.dll -------------------------------------------------------------------------------- /tools/FxCop/msdia100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/msdia100.dll -------------------------------------------------------------------------------- /tools/FxCop/phx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/FxCop/phx.dll -------------------------------------------------------------------------------- /tools/Nuget/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/Nuget/LICENSE.txt -------------------------------------------------------------------------------- /tools/Nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/Nuget/NuGet.exe -------------------------------------------------------------------------------- /tools/StyleCopMsBuildTask/StyleCop.CSharp.Rules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/StyleCopMsBuildTask/StyleCop.CSharp.Rules.dll -------------------------------------------------------------------------------- /tools/StyleCopMsBuildTask/StyleCop.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/StyleCopMsBuildTask/StyleCop.CSharp.dll -------------------------------------------------------------------------------- /tools/StyleCopMsBuildTask/StyleCop.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/StyleCopMsBuildTask/StyleCop.Targets -------------------------------------------------------------------------------- /tools/StyleCopMsBuildTask/StyleCop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/StyleCopMsBuildTask/StyleCop.dll -------------------------------------------------------------------------------- /tools/nant/CollectionGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/CollectionGen.dll -------------------------------------------------------------------------------- /tools/nant/Interop.MsmMergeTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/Interop.MsmMergeTypeLib.dll -------------------------------------------------------------------------------- /tools/nant/Interop.StarTeam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/Interop.StarTeam.dll -------------------------------------------------------------------------------- /tools/nant/Interop.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/Interop.WindowsInstaller.dll -------------------------------------------------------------------------------- /tools/nant/MSITaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/MSITaskErrors.mst -------------------------------------------------------------------------------- /tools/nant/MSITaskTemplate.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/MSITaskTemplate.msi -------------------------------------------------------------------------------- /tools/nant/MSMTaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/MSMTaskErrors.mst -------------------------------------------------------------------------------- /tools/nant/MSMTaskTemplate.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/MSMTaskTemplate.msm -------------------------------------------------------------------------------- /tools/nant/NAnt.CompressionTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.CompressionTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.CompressionTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.CompressionTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Contrib.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Contrib.Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Contrib.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Contrib.Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Core.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Core.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.DotNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.DotNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.MSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.MSNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit1Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit1Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.NUnit2Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.NUnit2Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.SourceControlTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.SourceControlTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.SourceControlTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.SourceControlTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.VSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.VSNetTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.VisualCppTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.VisualCppTasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.VisualCppTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.VisualCppTasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /tools/nant/NAnt.Win32Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.Win32Tasks.xml -------------------------------------------------------------------------------- /tools/nant/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.exe -------------------------------------------------------------------------------- /tools/nant/NAnt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.exe.config -------------------------------------------------------------------------------- /tools/nant/NAnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NAnt.xml -------------------------------------------------------------------------------- /tools/nant/NDoc.Documenter.NAnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/NDoc.Documenter.NAnt.dll -------------------------------------------------------------------------------- /tools/nant/SLiNgshoT.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/SLiNgshoT.Core.dll -------------------------------------------------------------------------------- /tools/nant/SLiNgshoT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/SLiNgshoT.exe -------------------------------------------------------------------------------- /tools/nant/SourceSafe.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/SourceSafe.Interop.dll -------------------------------------------------------------------------------- /tools/nant/bbv.NAntTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/bbv.NAntTasks.dll -------------------------------------------------------------------------------- /tools/nant/extensions/common/2.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/extensions/common/2.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /tools/nant/extensions/common/2.0/NAnt.MSBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/extensions/common/2.0/NAnt.MSBuild.xml -------------------------------------------------------------------------------- /tools/nant/lib/common/1.1/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/1.1/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/1.1/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/1.1/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/lib/common/1.1/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/1.1/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/1.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/1.1/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/1.1/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/1.1/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/2.0/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/2.0/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/2.0/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/2.0/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/lib/common/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/ICSharpCode.SharpCvsLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/ICSharpCode.SharpCvsLib.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/common/neutral/NUnitCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/common/neutral/NUnitCore.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/1.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/mono/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/mono/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/nunit-console-runner.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/nunit-console.exe -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/1.1/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/1.1/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/NDoc.Core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/nunit.core.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /tools/nant/lib/net/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/lib/net/2.0/nunit.util.dll -------------------------------------------------------------------------------- /tools/nant/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/log4net.dll -------------------------------------------------------------------------------- /tools/nant/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmarbach/StockTicker/HEAD/tools/nant/scvs.exe --------------------------------------------------------------------------------