Skip to content

Commit 4bd42fc

Browse files
Initial commit
0 parents  commit 4bd42fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+8314
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.vs/
2+
bin/
3+
obj/
4+
build/
5+
intermediate/
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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>{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>AmtPtpControlPanel</RootNamespace>
10+
<AssemblyName>AmtPtpControlPanel</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
36+
<DebugSymbols>true</DebugSymbols>
37+
<OutputPath>bin\x64\Debug\</OutputPath>
38+
<DefineConstants>DEBUG;TRACE</DefineConstants>
39+
<DebugType>full</DebugType>
40+
<PlatformTarget>x64</PlatformTarget>
41+
<LangVersion>7.3</LangVersion>
42+
<ErrorReport>prompt</ErrorReport>
43+
<Prefer32Bit>true</Prefer32Bit>
44+
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
46+
<OutputPath>bin\x64\Release\</OutputPath>
47+
<DefineConstants>TRACE</DefineConstants>
48+
<Optimize>true</Optimize>
49+
<DebugType>pdbonly</DebugType>
50+
<PlatformTarget>x64</PlatformTarget>
51+
<LangVersion>7.3</LangVersion>
52+
<ErrorReport>prompt</ErrorReport>
53+
<Prefer32Bit>true</Prefer32Bit>
54+
</PropertyGroup>
55+
<PropertyGroup>
56+
<ApplicationManifest>app.manifest</ApplicationManifest>
57+
</PropertyGroup>
58+
<PropertyGroup>
59+
<ApplicationIcon>Resources\Icon1.ico</ApplicationIcon>
60+
</PropertyGroup>
61+
<ItemGroup>
62+
<Reference Include="System" />
63+
<Reference Include="System.Core" />
64+
<Reference Include="System.Xml.Linq" />
65+
<Reference Include="System.Data.DataSetExtensions" />
66+
<Reference Include="Microsoft.CSharp" />
67+
<Reference Include="System.Data" />
68+
<Reference Include="System.Deployment" />
69+
<Reference Include="System.Drawing" />
70+
<Reference Include="System.Net.Http" />
71+
<Reference Include="System.Windows.Forms" />
72+
<Reference Include="System.Xml" />
73+
</ItemGroup>
74+
<ItemGroup>
75+
<Compile Include="Main.cs">
76+
<SubType>Form</SubType>
77+
</Compile>
78+
<Compile Include="Main.Designer.cs">
79+
<DependentUpon>Main.cs</DependentUpon>
80+
</Compile>
81+
<Compile Include="Program.cs" />
82+
<Compile Include="Properties\AssemblyInfo.cs" />
83+
<EmbeddedResource Include="Main.resx">
84+
<DependentUpon>Main.cs</DependentUpon>
85+
</EmbeddedResource>
86+
<EmbeddedResource Include="Properties\Resources.resx">
87+
<Generator>ResXFileCodeGenerator</Generator>
88+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
89+
<SubType>Designer</SubType>
90+
</EmbeddedResource>
91+
<Compile Include="Properties\Resources.Designer.cs">
92+
<AutoGen>True</AutoGen>
93+
<DependentUpon>Resources.resx</DependentUpon>
94+
<DesignTime>True</DesignTime>
95+
</Compile>
96+
<None Include="app.manifest" />
97+
<None Include="Properties\Settings.settings">
98+
<Generator>SettingsSingleFileGenerator</Generator>
99+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
100+
</None>
101+
<Compile Include="Properties\Settings.Designer.cs">
102+
<AutoGen>True</AutoGen>
103+
<DependentUpon>Settings.settings</DependentUpon>
104+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
105+
</Compile>
106+
</ItemGroup>
107+
<ItemGroup>
108+
<None Include="App.config" />
109+
</ItemGroup>
110+
<ItemGroup>
111+
<None Include="Resources\Icon1.ico" />
112+
</ItemGroup>
113+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
114+
</Project>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.33801.447
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmtPtpControlPanel", "AmtPtpControlPanel.csproj", "{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Release|Any CPU = Release|Any CPU
13+
Release|x64 = Release|x64
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Debug|x64.ActiveCfg = Debug|x64
19+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Debug|x64.Build.0 = Debug|x64
20+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Release|x64.ActiveCfg = Release|x64
23+
{EE1C7A99-9593-4D6A-889B-D75EEA2DE6AB}.Release|x64.Build.0 = Release|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {EF892ED6-EFF6-4552-89C8-4A58160848EC}
30+
EndGlobalSection
31+
EndGlobal

AmtPtpControlPanel/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

0 commit comments

Comments
 (0)