-> PortScanner added

This commit is contained in:
Kevin Krüger
2022-01-18 09:14:22 +01:00
parent f7b63cb8e1
commit a07655faed
18 changed files with 1301 additions and 9 deletions

View File

@@ -40,8 +40,13 @@
<HintPath>..\packages\PTConverter.Plugin.1.0.3\lib\net472\PTConverter.Plugin.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Transactions" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
@@ -63,15 +68,23 @@
<Compile Include="IPScannerLib\IPTool.cs" />
<Compile Include="IPScannerLib\NetworkScanner.cs" />
<Compile Include="IPScannerLib\ScanStatus.cs" />
<Compile Include="Pages\PortScanner.xaml.cs">
<DependentUpon>PortScanner.xaml</DependentUpon>
</Compile>
<Compile Include="Pages\WF_PortScanner.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Pages\WF_PortScanner.Designer.cs">
<DependentUpon>WF_PortScanner.cs</DependentUpon>
</Compile>
<Compile Include="PortScanner\InputChecker.cs" />
<Compile Include="PortScanner\IScannerManagerSingleton.cs" />
<Compile Include="Pages\IPScanner.xaml.cs">
<DependentUpon>IPScanner.xaml</DependentUpon>
</Compile>
<Compile Include="Pages\IPv4.xaml.cs">
<DependentUpon>IPv4.xaml</DependentUpon>
</Compile>
<Compile Include="Pages\PortScanner.xaml.cs">
<DependentUpon>PortScanner.xaml</DependentUpon>
</Compile>
<Compile Include="Pages\WF_IPScanner.cs">
<SubType>UserControl</SubType>
</Compile>
@@ -79,7 +92,10 @@
<DependentUpon>WF_IPScanner.cs</DependentUpon>
</Compile>
<Compile Include="PluginInfo.cs" />
<Compile Include="PortScanner\PortScannerBase.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PortScanner\ScannerManagerSingleton.cs" />
<Compile Include="PortScanner\Settings.cs" />
<Compile Include="SmartThreadPool\CallerThreadContext.cs" />
<Compile Include="SmartThreadPool\CanceledWorkItemsGroup.cs" />
<Compile Include="SmartThreadPool\EventWaitHandle.cs" />
@@ -105,6 +121,11 @@
<Compile Include="SmartThreadPool\WorkItemsGroup.cs" />
<Compile Include="SmartThreadPool\WorkItemsGroupBase.cs" />
<Compile Include="SmartThreadPool\WorkItemsQueue.cs" />
<Compile Include="PortScanner\TCPPortScanner.cs" />
<Compile Include="PortScanner\TimeoutListItem.cs" />
<Compile Include="PortScanner\UDPPortScanner.cs" />
<Compile Include="Util\HelperMethods.cs" />
<Compile Include="Util\TimeSpanUtil.cs" />
</ItemGroup>
<ItemGroup>
<Page Include="Pages\IPScanner.xaml">
@@ -130,6 +151,9 @@
<EmbeddedResource Include="Pages\WF_IPScanner.resx">
<DependentUpon>WF_IPScanner.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Pages\WF_PortScanner.resx">
<DependentUpon>WF_PortScanner.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>