Dissolved dependency on Nuclex.Support.Transactions by dropping two progress reporting helpers
This commit is contained in:
parent
e1a6a8cde7
commit
734d06f7bb
37
.gitignore
vendored
Normal file
37
.gitignore
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
NuclexSupportConfig.cmake
|
||||
|
||||
# Visual Studio Codium
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Visual Studio
|
||||
.vs/
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
*.userprefs
|
||||
|
||||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# Coverlet is a free, cross platform Code Coverage Tool
|
||||
coverage*.json
|
||||
coverage*.xml
|
||||
coverage*.info
|
||||
|
||||
# Artifacts
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
|
@ -42,9 +42,8 @@
|
|||
<AssemblyOriginatorKeyFile>..\Foundation.snk</AssemblyOriginatorKeyFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="nunit.framework, Version=2.5.5.10112, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\References\nunit\net-4.0\framework\nunit.framework.dll</HintPath>
|
||||
<Reference Include="nunit.framework">
|
||||
<HintPath>..\third-party\nunit\net-4.0\framework\nunit.framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
|
@ -147,12 +146,8 @@
|
|||
<Compile Include="Source\ProgressReporter\ProgressReporterForm.Designer.cs">
|
||||
<DependentUpon>ProgressReporterForm.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\TrackingBar\ToolStripTrackingBar.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Source\TrackingBar\TrackingBar.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Source\TrackingBar\ToolStripTrackingBar.cs" />
|
||||
<Compile Include="Source\TrackingBar\TrackingBar.cs" />
|
||||
<Compile Include="Source\TrackingBar\TrackingBar.Designer.cs">
|
||||
<DependentUpon>TrackingBar.cs</DependentUpon>
|
||||
</Compile>
|
||||
|
@ -166,10 +161,6 @@
|
|||
<Folder Include="Resources\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Nuclex.Support.Transactions\Nuclex.Support.Transactions %28net-4.6%29.csproj">
|
||||
<Project>{2f487c4d-8e06-496f-bcd5-7119b18c78d8}</Project>
|
||||
<Name>Nuclex.Support.Transactions %28net-4.6%29</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Nuclex.Support\Nuclex.Support %28net-4.6%29.csproj">
|
||||
<Project>{00567408-4f44-4c00-866e-b04a99e482f2}</Project>
|
||||
<Name>Nuclex.Support %28net-4.6%29</Name>
|
||||
|
|
|
@ -17,21 +17,22 @@ limitations under the License.
|
|||
*/
|
||||
#endregion // Apache License 2.0
|
||||
|
||||
#if WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
||||
namespace Nuclex.Windows.Forms {
|
||||
|
||||
partial class ProgressReporterForm {
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
|
||||
/// <summary>Required designer variable.</summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <summary>Clean up any resources being used.</summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing) {
|
||||
if(disposing && (components != null)) {
|
||||
components.Dispose();
|
||||
}
|
||||
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
|
@ -115,5 +116,9 @@ namespace Nuclex.Windows.Forms {
|
|||
private Nuclex.Windows.Forms.AsyncProgressBar progressBar;
|
||||
private System.Windows.Forms.Label statusLabel;
|
||||
private System.Windows.Forms.Timer controlCreationTimer;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
||||
|
||||
#endif // WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
|
|
@ -22,6 +22,8 @@ using System.ComponentModel;
|
|||
using System.Threading;
|
||||
using System.Windows.Forms;
|
||||
|
||||
#if WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
||||
using Nuclex.Support.Scheduling;
|
||||
using Nuclex.Support.Tracking;
|
||||
|
||||
|
@ -270,3 +272,5 @@ namespace Nuclex.Windows.Forms {
|
|||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
||||
|
||||
#endif // WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
|
|
@ -22,6 +22,8 @@ using System.ComponentModel;
|
|||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
|
||||
#if WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
||||
using Nuclex.Support.Tracking;
|
||||
|
||||
namespace Nuclex.Windows.Forms {
|
||||
|
@ -111,3 +113,5 @@ namespace Nuclex.Windows.Forms {
|
|||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
||||
|
||||
#endif // WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
|
4
Source/TrackingBar/TrackingBar.Designer.cs
generated
4
Source/TrackingBar/TrackingBar.Designer.cs
generated
|
@ -17,6 +17,8 @@ limitations under the License.
|
|||
*/
|
||||
#endregion // Apache License 2.0
|
||||
|
||||
#if WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
||||
namespace Nuclex.Windows.Forms {
|
||||
|
||||
partial class TrackingBar {
|
||||
|
@ -48,3 +50,5 @@ namespace Nuclex.Windows.Forms {
|
|||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
||||
|
||||
#endif // WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
|
|
@ -26,6 +26,8 @@ using System.Text;
|
|||
using System.Windows.Forms;
|
||||
using System.Threading;
|
||||
|
||||
#if WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
||||
using Nuclex.Support.Tracking;
|
||||
|
||||
namespace Nuclex.Windows.Forms {
|
||||
|
@ -131,3 +133,5 @@ namespace Nuclex.Windows.Forms {
|
|||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
||||
|
||||
#endif // WITH_NUCLEX_SUPPORT_TRANSACTIONS
|
||||
|
|
Loading…
Reference in New Issue
Block a user