Skip to content

Commit 3a4c5ff

Browse files
Add files via upload
1 parent d9e29e2 commit 3a4c5ff

File tree

5 files changed

+236
-0
lines changed

5 files changed

+236
-0
lines changed

GetModuleHandle.sln

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 17
4+
VisualStudioVersion = 17.6.33815.320
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetModuleHandle", "GetModuleHandle\GetModuleHandle.csproj", "{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}"
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+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Debug|x64.ActiveCfg = Debug|x64
19+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Debug|x64.Build.0 = Debug|x64
20+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Release|x64.ActiveCfg = Release|x64
23+
{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}.Release|x64.Build.0 = Release|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {6C389070-8BA2-4EBB-A769-487802270BB4}
30+
EndGlobalSection
31+
EndGlobal

GetModuleHandle/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.8" />
5+
</startup>
6+
</configuration>
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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>{2E546C2D-92D1-4393-B5AD-F8D55AABF19A}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>GetModuleHandle</RootNamespace>
10+
<AssemblyName>GetModuleHandle</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</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+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
38+
<DebugSymbols>true</DebugSymbols>
39+
<OutputPath>bin\x64\Debug\</OutputPath>
40+
<DefineConstants>DEBUG;TRACE</DefineConstants>
41+
<DebugType>full</DebugType>
42+
<PlatformTarget>x64</PlatformTarget>
43+
<LangVersion>7.3</LangVersion>
44+
<ErrorReport>prompt</ErrorReport>
45+
<Prefer32Bit>true</Prefer32Bit>
46+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
49+
<OutputPath>bin\x64\Release\</OutputPath>
50+
<DefineConstants>TRACE</DefineConstants>
51+
<Optimize>true</Optimize>
52+
<DebugType>pdbonly</DebugType>
53+
<PlatformTarget>x64</PlatformTarget>
54+
<LangVersion>7.3</LangVersion>
55+
<ErrorReport>prompt</ErrorReport>
56+
<Prefer32Bit>true</Prefer32Bit>
57+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
58+
</PropertyGroup>
59+
<ItemGroup>
60+
<Reference Include="System" />
61+
<Reference Include="System.Core" />
62+
<Reference Include="System.Xml.Linq" />
63+
<Reference Include="System.Data.DataSetExtensions" />
64+
<Reference Include="Microsoft.CSharp" />
65+
<Reference Include="System.Data" />
66+
<Reference Include="System.Net.Http" />
67+
<Reference Include="System.Xml" />
68+
</ItemGroup>
69+
<ItemGroup>
70+
<Compile Include="Program.cs" />
71+
<Compile Include="Properties\AssemblyInfo.cs" />
72+
</ItemGroup>
73+
<ItemGroup>
74+
<None Include="App.config" />
75+
</ItemGroup>
76+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
77+
</Project>

0 commit comments

Comments
 (0)