Skip to content

Commit 35dfe5b

Browse files
committed
Commit 1
Uploaded initial version.
1 parent 7b9fd20 commit 35dfe5b

File tree

10 files changed

+2576
-0
lines changed

10 files changed

+2576
-0
lines changed

De4Dot-GUI.sln

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
# SharpDevelop 4.4
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "De4Dot-GUI", "De4Dot-GUI\De4Dot-GUI.csproj", "{7C63CAA3-66B0-4D39-AA47-449463650F9F}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{7C63CAA3-66B0-4D39-AA47-449463650F9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{7C63CAA3-66B0-4D39-AA47-449463650F9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{7C63CAA3-66B0-4D39-AA47-449463650F9F}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{7C63CAA3-66B0-4D39-AA47-449463650F9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
EndGlobalSection
18+
EndGlobal

De4Dot-GUI/De4Dot-GUI.csproj

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<PropertyGroup>
4+
<ProjectGuid>{7C63CAA3-66B0-4D39-AA47-449463650F9F}</ProjectGuid>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<OutputType>WinExe</OutputType>
8+
<RootNamespace>De4DotGUI</RootNamespace>
9+
<AssemblyName>De4Dot-GUI</AssemblyName>
10+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
11+
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
12+
<AppDesignerFolder>Properties</AppDesignerFolder>
13+
<ApplicationIcon>..\..\..\..\Desktop\bit.ico</ApplicationIcon>
14+
<NoWin32Manifest>False</NoWin32Manifest>
15+
<SignAssembly>False</SignAssembly>
16+
<DelaySign>False</DelaySign>
17+
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
18+
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
19+
<NoStdLib>False</NoStdLib>
20+
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
21+
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
22+
<WarningLevel>4</WarningLevel>
23+
<RunCodeAnalysis>False</RunCodeAnalysis>
24+
<SourceAnalysisOverrideSettingsFile>C:\Documents and Settings\V0K3\Application Data\ICSharpCode/SharpDevelop4\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
27+
<PlatformTarget>x86</PlatformTarget>
28+
<BaseAddress>4194304</BaseAddress>
29+
<RegisterForComInterop>False</RegisterForComInterop>
30+
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
31+
<FileAlignment>4096</FileAlignment>
32+
</PropertyGroup>
33+
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
34+
<OutputPath>bin\Debug\</OutputPath>
35+
<DebugSymbols>True</DebugSymbols>
36+
<DebugType>Full</DebugType>
37+
<Optimize>False</Optimize>
38+
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
41+
<StartAction>Project</StartAction>
42+
</PropertyGroup>
43+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
44+
<OutputPath>bin\Release\</OutputPath>
45+
<DebugSymbols>False</DebugSymbols>
46+
<DebugType>None</DebugType>
47+
<Optimize>True</Optimize>
48+
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
49+
<DefineConstants>TRACE</DefineConstants>
50+
</PropertyGroup>
51+
<ItemGroup>
52+
<Reference Include="System" />
53+
<Reference Include="System.Core">
54+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
55+
</Reference>
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Data.DataSetExtensions">
58+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
59+
</Reference>
60+
<Reference Include="System.Drawing" />
61+
<Reference Include="System.Windows.Forms" />
62+
<Reference Include="System.Xml" />
63+
<Reference Include="System.Xml.Linq">
64+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
65+
</Reference>
66+
</ItemGroup>
67+
<ItemGroup>
68+
<Compile Include="MainForm.cs" />
69+
<Compile Include="MainForm.Designer.cs">
70+
<DependentUpon>MainForm.cs</DependentUpon>
71+
</Compile>
72+
<Compile Include="Program.cs" />
73+
<Compile Include="Properties\AssemblyInfo.cs" />
74+
</ItemGroup>
75+
<ItemGroup>
76+
<EmbeddedResource Include="MainForm.resx">
77+
<DependentUpon>MainForm.cs</DependentUpon>
78+
</EmbeddedResource>
79+
</ItemGroup>
80+
<ItemGroup>
81+
<None Include="app.manifest" />
82+
</ItemGroup>
83+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
84+
</Project>

0 commit comments

Comments
 (0)