Added prototype code for an inversion-of-control container and a progress tracking service; moved XmlHelper class from Nuclex.UserInterface to Nuclex.Support; Nuclex.Support now uses the .NET Framework's own AssemblyLoadEventArgs class if it is compiled for the full framework; fixed a bug in the Request class that would cause exceptions to not be reported if Join() was called on a Request<x> was casted to a plain Request
git-svn-id: file:///srv/devel/repo-conversion/nusu@138 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
d0fe47239e
commit
41dcfa34d0
15 changed files with 1030 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{DFFEAB70-51B8-4714-BCA6-79B733BBC520}</ProjectGuid>
|
||||
<ProjectTypeGuids>{2DF5C3F4-5A5F-47a9-8E94-23B4456F55E2};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
|
@ -118,6 +118,15 @@
|
|||
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
|
||||
<DependentUpon>ReverseComparer.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Services\Instancing.cs" />
|
||||
<Compile Include="Source\Services\ProgressTracking\IProgressPublishingService.cs" />
|
||||
<Compile Include="Source\Services\ProgressTracking\IProgressTrackingService.cs" />
|
||||
<Compile Include="Source\Services\ProgressTracking\ITrackedProcess.cs" />
|
||||
<Compile Include="Source\Services\ProgressTracking\ProgressTrackingComponent.cs" />
|
||||
<Compile Include="Source\Services\ServiceManager.cs" />
|
||||
<Compile Include="Source\Services\ServiceManager.For.cs">
|
||||
<DependentUpon>ServiceManager.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\IO\PartialStream.cs" />
|
||||
<Compile Include="Source\IO\PartialStream.Test.cs">
|
||||
<DependentUpon>PartialStream.cs</DependentUpon>
|
||||
|
@ -286,6 +295,10 @@
|
|||
<Compile Include="Source\WeakReference.Test.cs">
|
||||
<DependentUpon>WeakReference.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\XmlHelper.cs" />
|
||||
<Compile Include="Source\XmlHelper.Test.cs">
|
||||
<DependentUpon>XmlHelper.cs</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Documents\CommandLine.txt" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue