개정판 43bbd277
DnsCheck test application 추가
Change-Id: I7dcad1e249815a16d82b316c580e75caf089b4cc
CommonLib/CommonLib.csproj | ||
---|---|---|
9 | 9 |
<AppDesignerFolder>Properties</AppDesignerFolder> |
10 | 10 |
<RootNamespace>CommonLib</RootNamespace> |
11 | 11 |
<AssemblyName>CommonLib</AssemblyName> |
12 |
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
|
12 |
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
13 | 13 |
<FileAlignment>512</FileAlignment> |
14 | 14 |
<Deterministic>true</Deterministic> |
15 | 15 |
<TargetFrameworkProfile /> |
DnsCheckTest/App.config | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8" ?> |
|
2 |
<configuration> |
|
3 |
<startup> |
|
4 |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
|
5 |
</startup> |
|
6 |
</configuration> |
DnsCheckTest/App.xaml | ||
---|---|---|
1 |
<Application x:Class="DnsCheckTest.App" |
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
4 |
xmlns:local="clr-namespace:DnsCheckTest" |
|
5 |
StartupUri="MainWindow.xaml"> |
|
6 |
<Application.Resources> |
|
7 |
|
|
8 |
</Application.Resources> |
|
9 |
</Application> |
DnsCheckTest/App.xaml.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Configuration; |
|
4 |
using System.Data; |
|
5 |
using System.Linq; |
|
6 |
using System.Threading.Tasks; |
|
7 |
using System.Windows; |
|
8 |
|
|
9 |
namespace DnsCheckTest |
|
10 |
{ |
|
11 |
/// <summary> |
|
12 |
/// App.xaml에 대한 상호 작용 논리 |
|
13 |
/// </summary> |
|
14 |
public partial class App : Application |
|
15 |
{ |
|
16 |
} |
|
17 |
} |
DnsCheckTest/DnsCheckTest.csproj | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
3 |
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
|
4 |
<PropertyGroup> |
|
5 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
6 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
7 |
<ProjectGuid>{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}</ProjectGuid> |
|
8 |
<OutputType>WinExe</OutputType> |
|
9 |
<RootNamespace>DnsCheckTest</RootNamespace> |
|
10 |
<AssemblyName>DnsCheckTest</AssemblyName> |
|
11 |
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
|
12 |
<FileAlignment>512</FileAlignment> |
|
13 |
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
|
14 |
<WarningLevel>4</WarningLevel> |
|
15 |
<Deterministic>true</Deterministic> |
|
16 |
</PropertyGroup> |
|
17 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
18 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
19 |
<DebugSymbols>true</DebugSymbols> |
|
20 |
<DebugType>full</DebugType> |
|
21 |
<Optimize>false</Optimize> |
|
22 |
<OutputPath>bin\Debug\</OutputPath> |
|
23 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
24 |
<ErrorReport>prompt</ErrorReport> |
|
25 |
<WarningLevel>4</WarningLevel> |
|
26 |
<Prefer32Bit>false</Prefer32Bit> |
|
27 |
</PropertyGroup> |
|
28 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
29 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
30 |
<DebugType>pdbonly</DebugType> |
|
31 |
<Optimize>true</Optimize> |
|
32 |
<OutputPath>bin\Release\</OutputPath> |
|
33 |
<DefineConstants>TRACE</DefineConstants> |
|
34 |
<ErrorReport>prompt</ErrorReport> |
|
35 |
<WarningLevel>4</WarningLevel> |
|
36 |
</PropertyGroup> |
|
37 |
<ItemGroup> |
|
38 |
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> |
|
39 |
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> |
|
40 |
</Reference> |
|
41 |
<Reference Include="System" /> |
|
42 |
<Reference Include="System.Data" /> |
|
43 |
<Reference Include="System.Xml" /> |
|
44 |
<Reference Include="Microsoft.CSharp" /> |
|
45 |
<Reference Include="System.Core" /> |
|
46 |
<Reference Include="System.Xml.Linq" /> |
|
47 |
<Reference Include="System.Data.DataSetExtensions" /> |
|
48 |
<Reference Include="System.Net.Http" /> |
|
49 |
<Reference Include="System.Xaml"> |
|
50 |
<RequiredTargetFramework>4.0</RequiredTargetFramework> |
|
51 |
</Reference> |
|
52 |
<Reference Include="WindowsBase" /> |
|
53 |
<Reference Include="PresentationCore" /> |
|
54 |
<Reference Include="PresentationFramework" /> |
|
55 |
</ItemGroup> |
|
56 |
<ItemGroup> |
|
57 |
<ApplicationDefinition Include="App.xaml"> |
|
58 |
<Generator>MSBuild:Compile</Generator> |
|
59 |
<SubType>Designer</SubType> |
|
60 |
</ApplicationDefinition> |
|
61 |
<Page Include="MainWindow.xaml"> |
|
62 |
<Generator>MSBuild:Compile</Generator> |
|
63 |
<SubType>Designer</SubType> |
|
64 |
</Page> |
|
65 |
<Compile Include="App.xaml.cs"> |
|
66 |
<DependentUpon>App.xaml</DependentUpon> |
|
67 |
<SubType>Code</SubType> |
|
68 |
</Compile> |
|
69 |
<Compile Include="MainWindow.xaml.cs"> |
|
70 |
<DependentUpon>MainWindow.xaml</DependentUpon> |
|
71 |
<SubType>Code</SubType> |
|
72 |
</Compile> |
|
73 |
</ItemGroup> |
|
74 |
<ItemGroup> |
|
75 |
<Compile Include="Properties\AssemblyInfo.cs"> |
|
76 |
<SubType>Code</SubType> |
|
77 |
</Compile> |
|
78 |
<Compile Include="Properties\Resources.Designer.cs"> |
|
79 |
<AutoGen>True</AutoGen> |
|
80 |
<DesignTime>True</DesignTime> |
|
81 |
<DependentUpon>Resources.resx</DependentUpon> |
|
82 |
</Compile> |
|
83 |
<Compile Include="Properties\Settings.Designer.cs"> |
|
84 |
<AutoGen>True</AutoGen> |
|
85 |
<DependentUpon>Settings.settings</DependentUpon> |
|
86 |
<DesignTimeSharedInput>True</DesignTimeSharedInput> |
|
87 |
</Compile> |
|
88 |
<EmbeddedResource Include="Properties\Resources.resx"> |
|
89 |
<Generator>ResXFileCodeGenerator</Generator> |
|
90 |
<LastGenOutput>Resources.Designer.cs</LastGenOutput> |
|
91 |
</EmbeddedResource> |
|
92 |
<None Include="packages.config" /> |
|
93 |
<None Include="Properties\Settings.settings"> |
|
94 |
<Generator>SettingsSingleFileGenerator</Generator> |
|
95 |
<LastGenOutput>Settings.Designer.cs</LastGenOutput> |
|
96 |
</None> |
|
97 |
</ItemGroup> |
|
98 |
<ItemGroup> |
|
99 |
<None Include="App.config" /> |
|
100 |
</ItemGroup> |
|
101 |
<ItemGroup> |
|
102 |
<ProjectReference Include="..\CommonLib\CommonLib.csproj"> |
|
103 |
<Project>{def47fc2-b898-4c92-ad8d-d7b9e994495e}</Project> |
|
104 |
<Name>CommonLib</Name> |
|
105 |
</ProjectReference> |
|
106 |
</ItemGroup> |
|
107 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
|
108 |
</Project> |
DnsCheckTest/MainWindow.xaml | ||
---|---|---|
1 |
<Window x:Class="DnsCheckTest.MainWindow" |
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
6 |
xmlns:local="clr-namespace:DnsCheckTest" |
|
7 |
mc:Ignorable="d" |
|
8 |
Title="MainWindow" Height="450" Width="800"> |
|
9 |
<Grid> |
|
10 |
<Grid.RowDefinitions> |
|
11 |
<RowDefinition Height="Auto"/> |
|
12 |
<RowDefinition/> |
|
13 |
</Grid.RowDefinitions> |
|
14 |
<Button Content="새로고침" HorizontalAlignment="Right" Margin="3" Click="Button_Click"/> |
|
15 |
<TextBox Grid.Row="1" x:Name="txtHostInfo"/> |
|
16 |
</Grid> |
|
17 |
</Window> |
DnsCheckTest/MainWindow.xaml.cs | ||
---|---|---|
1 |
using Newtonsoft.Json; |
|
2 |
using System; |
|
3 |
using System.Collections.Generic; |
|
4 |
using System.Linq; |
|
5 |
using System.Text; |
|
6 |
using System.Threading.Tasks; |
|
7 |
using System.Windows; |
|
8 |
using System.Windows.Controls; |
|
9 |
using System.Windows.Data; |
|
10 |
using System.Windows.Documents; |
|
11 |
using System.Windows.Input; |
|
12 |
using System.Windows.Media; |
|
13 |
using System.Windows.Media.Imaging; |
|
14 |
using System.Windows.Navigation; |
|
15 |
using System.Windows.Shapes; |
|
16 |
|
|
17 |
namespace DnsCheckTest |
|
18 |
{ |
|
19 |
/// <summary> |
|
20 |
/// MainWindow.xaml에 대한 상호 작용 논리 |
|
21 |
/// </summary> |
|
22 |
public partial class MainWindow : Window |
|
23 |
{ |
|
24 |
public MainWindow() |
|
25 |
{ |
|
26 |
InitializeComponent(); |
|
27 |
|
|
28 |
DnsCheck(); |
|
29 |
} |
|
30 |
|
|
31 |
private void Button_Click(object sender, RoutedEventArgs e) |
|
32 |
{ |
|
33 |
DnsCheck(); |
|
34 |
} |
|
35 |
|
|
36 |
private void DnsCheck() |
|
37 |
{ |
|
38 |
var host = CommonLib.DNSHelper.GetHostEntryTask(); |
|
39 |
|
|
40 |
StringBuilder builder = new StringBuilder(); |
|
41 |
|
|
42 |
builder.AppendLine($"hostName : {host.HostName}"); |
|
43 |
|
|
44 |
builder.AppendLine(""); |
|
45 |
builder.AppendLine(" - Aliases"); |
|
46 |
|
|
47 |
foreach (var item in host.Aliases) |
|
48 |
{ |
|
49 |
builder.AppendLine($" {item}"); |
|
50 |
} |
|
51 |
|
|
52 |
builder.AppendLine(""); |
|
53 |
builder.AppendLine(" - Address List"); |
|
54 |
|
|
55 |
foreach (var item in host.AddressList) |
|
56 |
{ |
|
57 |
builder.AppendLine($" {item.AddressFamily.ToString()} : {item.ToString()}"); |
|
58 |
} |
|
59 |
|
|
60 |
txtHostInfo.Text = builder.ToString(); |
|
61 |
} |
|
62 |
} |
|
63 |
} |
DnsCheckTest/Properties/AssemblyInfo.cs | ||
---|---|---|
1 |
using System.Reflection; |
|
2 |
using System.Resources; |
|
3 |
using System.Runtime.CompilerServices; |
|
4 |
using System.Runtime.InteropServices; |
|
5 |
using System.Windows; |
|
6 |
|
|
7 |
// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 |
|
8 |
// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 |
|
9 |
// 이러한 특성 값을 변경하세요. |
|
10 |
[assembly: AssemblyTitle("DnsCheckTest")] |
|
11 |
[assembly: AssemblyDescription("")] |
|
12 |
[assembly: AssemblyConfiguration("")] |
|
13 |
[assembly: AssemblyCompany("")] |
|
14 |
[assembly: AssemblyProduct("DnsCheckTest")] |
|
15 |
[assembly: AssemblyCopyright("Copyright © 2020")] |
|
16 |
[assembly: AssemblyTrademark("")] |
|
17 |
[assembly: AssemblyCulture("")] |
|
18 |
|
|
19 |
// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 |
|
20 |
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 |
|
21 |
// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. |
|
22 |
[assembly: ComVisible(false)] |
|
23 |
|
|
24 |
//지역화 가능 응용 프로그램 빌드를 시작하려면 다음을 설정하세요. |
|
25 |
//.csproj 파일에서 <PropertyGroup> 내에 <UICulture>CultureYouAreCodingWith</UICulture>를 |
|
26 |
//설정하십시오. 예를 들어 소스 파일에서 영어(미국)를 |
|
27 |
//사용하는 경우 <UICulture>를 en-US로 설정합니다. 그런 다음 아래 |
|
28 |
//NeutralResourceLanguage 특성의 주석 처리를 제거합니다. 아래 줄의 "en-US"를 업데이트하여 |
|
29 |
//프로젝트 파일의 UICulture 설정과 일치시킵니다. |
|
30 |
|
|
31 |
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] |
|
32 |
|
|
33 |
|
|
34 |
[assembly: ThemeInfo( |
|
35 |
ResourceDictionaryLocation.None, //테마별 리소스 사전의 위치 |
|
36 |
//(페이지 또는 응용 프로그램 리소스 사진에 |
|
37 |
// 리소스가 없는 경우에 사용됨) |
|
38 |
ResourceDictionaryLocation.SourceAssembly //제네릭 리소스 사전의 위치 |
|
39 |
//(페이지 또는 응용 프로그램 리소스 사진에 |
|
40 |
// 리소스가 없는 경우에 사용됨) |
|
41 |
)] |
|
42 |
|
|
43 |
|
|
44 |
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. |
|
45 |
// |
|
46 |
// 주 버전 |
|
47 |
// 부 버전 |
|
48 |
// 빌드 번호 |
|
49 |
// 수정 버전 |
|
50 |
// |
|
51 |
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로 |
|
52 |
// 지정되도록 할 수 있습니다. |
|
53 |
// [assembly: AssemblyVersion("1.0.*")] |
|
54 |
[assembly: AssemblyVersion("1.0.0.0")] |
|
55 |
[assembly: AssemblyFileVersion("1.0.0.0")] |
DnsCheckTest/Properties/Resources.Designer.cs | ||
---|---|---|
1 |
//------------------------------------------------------------------------------ |
|
2 |
// <auto-generated> |
|
3 |
// 이 코드는 도구를 사용하여 생성되었습니다. |
|
4 |
// 런타임 버전:4.0.30319.42000 |
|
5 |
// |
|
6 |
// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 |
|
7 |
// 이러한 변경 내용이 손실됩니다. |
|
8 |
// </auto-generated> |
|
9 |
//------------------------------------------------------------------------------ |
|
10 |
|
|
11 |
namespace DnsCheckTest.Properties |
|
12 |
{ |
|
13 |
|
|
14 |
|
|
15 |
/// <summary> |
|
16 |
/// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. |
|
17 |
/// </summary> |
|
18 |
// 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder |
|
19 |
// 클래스에서 자동으로 생성되었습니다. |
|
20 |
// 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 |
|
21 |
// ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. |
|
22 |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] |
|
23 |
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
24 |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
|
25 |
internal class Resources |
|
26 |
{ |
|
27 |
|
|
28 |
private static global::System.Resources.ResourceManager resourceMan; |
|
29 |
|
|
30 |
private static global::System.Globalization.CultureInfo resourceCulture; |
|
31 |
|
|
32 |
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
|
33 |
internal Resources() |
|
34 |
{ |
|
35 |
} |
|
36 |
|
|
37 |
/// <summary> |
|
38 |
/// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. |
|
39 |
/// </summary> |
|
40 |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
|
41 |
internal static global::System.Resources.ResourceManager ResourceManager |
|
42 |
{ |
|
43 |
get |
|
44 |
{ |
|
45 |
if ((resourceMan == null)) |
|
46 |
{ |
|
47 |
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DnsCheckTest.Properties.Resources", typeof(Resources).Assembly); |
|
48 |
resourceMan = temp; |
|
49 |
} |
|
50 |
return resourceMan; |
|
51 |
} |
|
52 |
} |
|
53 |
|
|
54 |
/// <summary> |
|
55 |
/// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 |
|
56 |
/// 재정의합니다. |
|
57 |
/// </summary> |
|
58 |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
|
59 |
internal static global::System.Globalization.CultureInfo Culture |
|
60 |
{ |
|
61 |
get |
|
62 |
{ |
|
63 |
return resourceCulture; |
|
64 |
} |
|
65 |
set |
|
66 |
{ |
|
67 |
resourceCulture = value; |
|
68 |
} |
|
69 |
} |
|
70 |
} |
|
71 |
} |
DnsCheckTest/Properties/Resources.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 2.0 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">2.0</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|
27 |
<comment>This is a comment</comment> |
|
28 |
</data> |
|
29 |
|
|
30 |
There are any number of "resheader" rows that contain simple |
|
31 |
name/value pairs. |
|
32 |
|
|
33 |
Each data row contains a name, and value. The row also contains a |
|
34 |
type or mimetype. Type corresponds to a .NET class that support |
|
35 |
text/value conversion through the TypeConverter architecture. |
|
36 |
Classes that don't support this are serialized and stored with the |
|
37 |
mimetype set. |
|
38 |
|
|
39 |
The mimetype is used for serialized objects, and tells the |
|
40 |
ResXResourceReader how to depersist the object. This is currently not |
|
41 |
extensible. For a given mimetype the value must be set accordingly: |
|
42 |
|
|
43 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
44 |
that the ResXResourceWriter will generate, however the reader can |
|
45 |
read any of the formats listed below. |
|
46 |
|
|
47 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
48 |
value : The object must be serialized with |
|
49 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
50 |
: and then encoded with base64 encoding. |
|
51 |
|
|
52 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
53 |
value : The object must be serialized with |
|
54 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
55 |
: and then encoded with base64 encoding. |
|
56 |
|
|
57 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
58 |
value : The object must be serialized into a byte array |
|
59 |
: using a System.ComponentModel.TypeConverter |
|
60 |
: and then encoded with base64 encoding. |
|
61 |
--> |
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="metadata"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|
70 |
</xsd:sequence> |
|
71 |
<xsd:attribute name="name" type="xsd:string" /> |
|
72 |
<xsd:attribute name="type" type="xsd:string" /> |
|
73 |
<xsd:attribute name="mimetype" type="xsd:string" /> |
|
74 |
</xsd:complexType> |
|
75 |
</xsd:element> |
|
76 |
<xsd:element name="assembly"> |
|
77 |
<xsd:complexType> |
|
78 |
<xsd:attribute name="alias" type="xsd:string" /> |
|
79 |
<xsd:attribute name="name" type="xsd:string" /> |
|
80 |
</xsd:complexType> |
|
81 |
</xsd:element> |
|
82 |
<xsd:element name="data"> |
|
83 |
<xsd:complexType> |
|
84 |
<xsd:sequence> |
|
85 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
86 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
87 |
</xsd:sequence> |
|
88 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
89 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
90 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
91 |
</xsd:complexType> |
|
92 |
</xsd:element> |
|
93 |
<xsd:element name="resheader"> |
|
94 |
<xsd:complexType> |
|
95 |
<xsd:sequence> |
|
96 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
97 |
</xsd:sequence> |
|
98 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
99 |
</xsd:complexType> |
|
100 |
</xsd:element> |
|
101 |
</xsd:choice> |
|
102 |
</xsd:complexType> |
|
103 |
</xsd:element> |
|
104 |
</xsd:schema> |
|
105 |
<resheader name="resmimetype"> |
|
106 |
<value>text/microsoft-resx</value> |
|
107 |
</resheader> |
|
108 |
<resheader name="version"> |
|
109 |
<value>2.0</value> |
|
110 |
</resheader> |
|
111 |
<resheader name="reader"> |
|
112 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
113 |
</resheader> |
|
114 |
<resheader name="writer"> |
|
115 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
116 |
</resheader> |
|
117 |
</root> |
DnsCheckTest/Properties/Settings.Designer.cs | ||
---|---|---|
1 |
//------------------------------------------------------------------------------ |
|
2 |
// <auto-generated> |
|
3 |
// This code was generated by a tool. |
|
4 |
// Runtime Version:4.0.30319.42000 |
|
5 |
// |
|
6 |
// Changes to this file may cause incorrect behavior and will be lost if |
|
7 |
// the code is regenerated. |
|
8 |
// </auto-generated> |
|
9 |
//------------------------------------------------------------------------------ |
|
10 |
|
|
11 |
namespace DnsCheckTest.Properties |
|
12 |
{ |
|
13 |
|
|
14 |
|
|
15 |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
|
16 |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] |
|
17 |
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase |
|
18 |
{ |
|
19 |
|
|
20 |
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); |
|
21 |
|
|
22 |
public static Settings Default |
|
23 |
{ |
|
24 |
get |
|
25 |
{ |
|
26 |
return defaultInstance; |
|
27 |
} |
|
28 |
} |
|
29 |
} |
|
30 |
} |
DnsCheckTest/Properties/Settings.settings | ||
---|---|---|
1 |
<?xml version='1.0' encoding='utf-8'?> |
|
2 |
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)"> |
|
3 |
<Profiles> |
|
4 |
<Profile Name="(Default)" /> |
|
5 |
</Profiles> |
|
6 |
<Settings /> |
|
7 |
</SettingsFile> |
DnsCheckTest/packages.config | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<packages> |
|
3 |
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net45" /> |
|
4 |
</packages> |
KCOM.sln | ||
---|---|---|
50 | 50 |
Site\SNI\MARKUS_SNI.ini = Site\SNI\MARKUS_SNI.ini |
51 | 51 |
EndProjectSection |
52 | 52 |
EndProject |
53 |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DnsCheckTest", "DnsCheckTest\DnsCheckTest.csproj", "{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}" |
|
54 |
EndProject |
|
53 | 55 |
Global |
54 | 56 |
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
55 | 57 |
Debug_CadExport|Any CPU = Debug_CadExport|Any CPU |
... | ... | |
621 | 623 |
{B6A34853-E5D4-460D-9451-EA64E537FDA9}.Release|x64.Build.0 = Debug|Any CPU |
622 | 624 |
{B6A34853-E5D4-460D-9451-EA64E537FDA9}.Release|x86.ActiveCfg = Debug|Any CPU |
623 | 625 |
{B6A34853-E5D4-460D-9451-EA64E537FDA9}.Release|x86.Build.0 = Debug|Any CPU |
626 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|Any CPU.ActiveCfg = Debug|Any CPU |
|
627 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|Any CPU.Build.0 = Debug|Any CPU |
|
628 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|x64.ActiveCfg = Debug|Any CPU |
|
629 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|x64.Build.0 = Debug|Any CPU |
|
630 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|x86.ActiveCfg = Debug|Any CPU |
|
631 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_CadExport|x86.Build.0 = Debug|Any CPU |
|
632 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|Any CPU.ActiveCfg = Debug|Any CPU |
|
633 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|Any CPU.Build.0 = Debug|Any CPU |
|
634 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|x64.ActiveCfg = Debug|Any CPU |
|
635 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|x64.Build.0 = Debug|Any CPU |
|
636 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|x86.ActiveCfg = Debug|Any CPU |
|
637 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_DevDoftech|x86.Build.0 = Debug|Any CPU |
|
638 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|Any CPU.ActiveCfg = Debug|Any CPU |
|
639 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|Any CPU.Build.0 = Debug|Any CPU |
|
640 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|x64.ActiveCfg = Debug|Any CPU |
|
641 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|x64.Build.0 = Debug|Any CPU |
|
642 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|x86.ActiveCfg = Debug|Any CPU |
|
643 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_HyoSung|x86.Build.0 = Debug|Any CPU |
|
644 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|Any CPU.ActiveCfg = Debug|Any CPU |
|
645 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|Any CPU.Build.0 = Debug|Any CPU |
|
646 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|x64.ActiveCfg = Debug|Any CPU |
|
647 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|x64.Build.0 = Debug|Any CPU |
|
648 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|x86.ActiveCfg = Debug|Any CPU |
|
649 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug_SNI|x86.Build.0 = Debug|Any CPU |
|
650 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|
651 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|
652 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|x64.ActiveCfg = Debug|Any CPU |
|
653 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|x64.Build.0 = Debug|Any CPU |
|
654 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|x86.ActiveCfg = Debug|Any CPU |
|
655 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Debug|x86.Build.0 = Debug|Any CPU |
|
656 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|Any CPU.ActiveCfg = Release|Any CPU |
|
657 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|Any CPU.Build.0 = Release|Any CPU |
|
658 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|x64.ActiveCfg = Release|Any CPU |
|
659 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|x64.Build.0 = Release|Any CPU |
|
660 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|x86.ActiveCfg = Release|Any CPU |
|
661 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release_Hyosung|x86.Build.0 = Release|Any CPU |
|
662 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|
663 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|Any CPU.Build.0 = Release|Any CPU |
|
664 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|x64.ActiveCfg = Release|Any CPU |
|
665 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|x64.Build.0 = Release|Any CPU |
|
666 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|x86.ActiveCfg = Release|Any CPU |
|
667 |
{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}.Release|x86.Build.0 = Release|Any CPU |
|
624 | 668 |
EndGlobalSection |
625 | 669 |
GlobalSection(SolutionProperties) = preSolution |
626 | 670 |
HideSolutionNode = FALSE |
내보내기 Unified diff