From d3e055a37c0bdfaba6b9658b429f1831ba2779d7 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Sun, 14 Aug 2011 11:09:40 +0000 Subject: [PATCH] Removed scheduling and tracking directories from the projects (these have been moved into a separate assembly) git-svn-id: file:///srv/devel/repo-conversion/nusu@219 d2e56fa2-650e-0410-a79f-9358c0239efd --- Nuclex.Support (net-4.0).csproj | 112 ------------------ Nuclex.Support (xna-4.0-phone7).csproj | 80 ------------- Nuclex.Support (xna-4.0-xbox360).csproj | 80 ------------- .../IProgressCollectingService.cs | 4 +- .../IProgressPublishingService.cs | 4 +- .../ProgressTracking/ITrackedProcess.cs | 4 +- .../ProgressTrackingComponent.cs | 4 +- 7 files changed, 8 insertions(+), 280 deletions(-) diff --git a/Nuclex.Support (net-4.0).csproj b/Nuclex.Support (net-4.0).csproj index b365295..c4b4e6d 100644 --- a/Nuclex.Support (net-4.0).csproj +++ b/Nuclex.Support (net-4.0).csproj @@ -150,55 +150,10 @@ PrototypeFactory.cs - - GenericTimeSource.cs - - - - - - - Scheduler.cs - - - Scheduler.cs - - - - WindowsTimeSource.cs - Semaphore.cs - - - AppDomainTypeLister.cs - - - - ExplicitTypeLister.cs - - - - - MultiAssemblyTypeLister.cs - - - - - - - - RepositoryTypeLister.cs - - - ServiceManager.cs - - - - ServiceManager.cs - PartialStream.cs @@ -284,31 +239,6 @@ PluginRepository.cs - - - AbortedException.cs - - - - - Operation.cs - - - - OperationQueue.cs - - - - ThreadCallbackOperation.cs - - - - ThreadOperation.cs - - - ServiceManager.cs - - Shared.cs @@ -329,48 +259,6 @@ StringSegment.cs - - - IdleStateEventArgs.cs - - - - ObservedWeightedTransaction.cs - - - - WeightedTransactionWrapperCollection.cs - - - - - - ProgressReportEventArgs.cs - - - - ProgressTracker.cs - - - - Request.cs - - - StatusReportEventArgs.cs - - - Transaction.cs - - - - TransactionGroup.cs - - - - - - WeightedTransaction.cs - WeakReference.cs diff --git a/Nuclex.Support (xna-4.0-phone7).csproj b/Nuclex.Support (xna-4.0-phone7).csproj index 01bb5f8..ebcd888 100644 --- a/Nuclex.Support (xna-4.0-phone7).csproj +++ b/Nuclex.Support (xna-4.0-phone7).csproj @@ -181,23 +181,6 @@ PrototypeFactory.cs - - GenericTimeSource.cs - - - - - - - Scheduler.cs - - - Scheduler.cs - - - - WindowsTimeSource.cs - Semaphore.cs @@ -315,27 +298,6 @@ PluginRepository.cs - - - AbortedException.cs - - - - - Operation.cs - - - - OperationQueue.cs - - - - ThreadCallbackOperation.cs - - - - ThreadOperation.cs - ServiceManager.cs @@ -360,48 +322,6 @@ StringSegment.cs - - - IdleStateEventArgs.cs - - - - ObservedWeightedTransaction.cs - - - - WeightedTransactionWrapperCollection.cs - - - - - - ProgressReportEventArgs.cs - - - - ProgressTracker.cs - - - - Request.cs - - - StatusReportEventArgs.cs - - - Transaction.cs - - - - TransactionGroup.cs - - - - - - WeightedTransaction.cs - WeakReference.cs diff --git a/Nuclex.Support (xna-4.0-xbox360).csproj b/Nuclex.Support (xna-4.0-xbox360).csproj index 10c8617..39e934d 100644 --- a/Nuclex.Support (xna-4.0-xbox360).csproj +++ b/Nuclex.Support (xna-4.0-xbox360).csproj @@ -192,23 +192,6 @@ PrototypeFactory.cs - - GenericTimeSource.cs - - - - - - - Scheduler.cs - - - Scheduler.cs - - - - WindowsTimeSource.cs - Semaphore.cs @@ -326,27 +309,6 @@ PluginRepository.cs - - - AbortedException.cs - - - - - Operation.cs - - - - OperationQueue.cs - - - - ThreadCallbackOperation.cs - - - - ThreadOperation.cs - ServiceManager.cs @@ -371,48 +333,6 @@ StringSegment.cs - - - IdleStateEventArgs.cs - - - - ObservedWeightedTransaction.cs - - - - WeightedTransactionWrapperCollection.cs - - - - - - ProgressReportEventArgs.cs - - - - ProgressTracker.cs - - - - Request.cs - - - StatusReportEventArgs.cs - - - Transaction.cs - - - - TransactionGroup.cs - - - - - - WeightedTransaction.cs - WeakReference.cs diff --git a/Source/Services/ProgressTracking/IProgressCollectingService.cs b/Source/Services/ProgressTracking/IProgressCollectingService.cs index 4556d7f..33a5339 100644 --- a/Source/Services/ProgressTracking/IProgressCollectingService.cs +++ b/Source/Services/ProgressTracking/IProgressCollectingService.cs @@ -18,13 +18,13 @@ License along with this library */ #endregion +#if ENABLE_SERVICEMANAGER + using System; using System.Collections.Generic; using Nuclex.Support.Tracking; -#if ENABLE_SERVICEMANAGER - namespace Nuclex.Support.Services.ProgressTracking { /// Allows application-wide tracking of progress diff --git a/Source/Services/ProgressTracking/IProgressPublishingService.cs b/Source/Services/ProgressTracking/IProgressPublishingService.cs index 72ad5ee..26cc70a 100644 --- a/Source/Services/ProgressTracking/IProgressPublishingService.cs +++ b/Source/Services/ProgressTracking/IProgressPublishingService.cs @@ -18,13 +18,13 @@ License along with this library */ #endregion +#if ENABLE_SERVICEMANAGER + using System; using System.Collections.Generic; using Nuclex.Support.Tracking; -#if ENABLE_SERVICEMANAGER - namespace Nuclex.Support.Services.ProgressTracking { /// Reports the progress of tracked background processes diff --git a/Source/Services/ProgressTracking/ITrackedProcess.cs b/Source/Services/ProgressTracking/ITrackedProcess.cs index cb55f8f..d4d5526 100644 --- a/Source/Services/ProgressTracking/ITrackedProcess.cs +++ b/Source/Services/ProgressTracking/ITrackedProcess.cs @@ -18,13 +18,13 @@ License along with this library */ #endregion +#if ENABLE_SERVICEMANAGER + using System; using System.Collections.Generic; using Nuclex.Support.Tracking; -#if ENABLE_SERVICEMANAGER - namespace Nuclex.Support.Services.ProgressTracking { /// Process whose progress is being tracked diff --git a/Source/Services/ProgressTracking/ProgressTrackingComponent.cs b/Source/Services/ProgressTracking/ProgressTrackingComponent.cs index 078520a..6e1506e 100644 --- a/Source/Services/ProgressTracking/ProgressTrackingComponent.cs +++ b/Source/Services/ProgressTracking/ProgressTrackingComponent.cs @@ -18,13 +18,13 @@ License along with this library */ #endregion +#if ENABLE_SERVICEMANAGER + using System; using System.Collections.Generic; using Nuclex.Support.Tracking; -#if ENABLE_SERVICEMANAGER - namespace Nuclex.Support.Services.ProgressTracking { /// Tracks the progress of running background processes