Skip to content

Commit d9f7a11

Browse files
committed
Initial
0 parents  commit d9f7a11

File tree

7 files changed

+469
-0
lines changed

7 files changed

+469
-0
lines changed

.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
#################
2+
## Visual Studio
3+
#################
4+
5+
# User-specific files
6+
*.suo
7+
*.user
8+
*.sln.docstates
9+
*.[Cc]ache
10+
11+
# Build results
12+
13+
[Dd]ebug/
14+
[Dd]ebugPublic/
15+
[Rr]elease/
16+
[Rr]eleases/
17+
x64/
18+
x86/
19+
build/
20+
bld/
21+
[Bb]in/
22+
[Oo]bj/
23+
TestResults/
24+
*.vshost.exe
25+
26+
# MSTest test Results
27+
[Tt]est[Rr]esult*/
28+
[Bb]uild[Ll]og.*
29+
30+
*_i.c
31+
*_p.c
32+
*.ilk
33+
*.meta
34+
*.obj
35+
*.pch
36+
*.pdb
37+
*.pgc
38+
*.pgd
39+
*.rsp
40+
*.sbr
41+
*.tlb
42+
*.tli
43+
*.tlh
44+
*.tmp
45+
*.tmp_proj
46+
*.log
47+
*.vspscc
48+
*.vssscc
49+
.builds
50+
*.pidb
51+
*.log
52+
*.scc
53+
54+
# Visual C++ cache files
55+
ipch/
56+
*.aps
57+
*.ncb
58+
*.opensdf
59+
*.sdf
60+
*.cachefile
61+
62+
# Visual Studio profiler
63+
*.psess
64+
*.vsp
65+
*.vspx
66+
67+
# Guidance Automation Toolkit
68+
*.gpState
69+
70+
# ReSharper is a .NET coding add-in
71+
_ReSharper*/
72+
*.[Rr]e[Ss]harper
73+
74+
# TeamCity is a build add-in
75+
_TeamCity*
76+
77+
# DotCover is a Code Coverage Tool
78+
*.dotCover
79+
80+
# NCrunch
81+
*.ncrunch*
82+
.*crunch*.local.xml
83+
84+
85+
#############
86+
## Windows detritus
87+
#############
88+
89+
# Windows image file caches
90+
Thumbs.db
91+
ehthumbs.db
92+
93+
# Folder config file
94+
Desktop.ini
95+
96+
# Recycle Bin used on file shares
97+
$RECYCLE.BIN/
98+
99+
# Mac crap
100+
.DS_Store
101+
102+
# NuGet Packages
103+
*.nupkg
104+
# The packages folder can be ignored because of Package Restore
105+
**/packages/*
106+
# except build/, which is used as an MSBuild target.
107+
!**/packages/build/
108+
# If using the old MSBuild-Integrated Package Restore, uncomment this:
109+
#!**/packages/repositories.config

DLLRewriter.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.24720.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DLLRewriter", "DLLRewriter\DLLRewriter.csproj", "{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

DLLRewriter/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.5.2" />
5+
</startup>
6+
</configuration>

DLLRewriter/DLLRewriter.csproj

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{A7BFEC2F-A96D-4030-9173-11F7DEDA4786}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DLLRewriter</RootNamespace>
11+
<AssemblyName>DLLRewriter</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
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+
<Prefer32Bit>false</Prefer32Bit>
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+
</PropertyGroup>
36+
<PropertyGroup>
37+
<ApplicationManifest>DLLRewriter.exe.manifest</ApplicationManifest>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="System" />
41+
<Reference Include="System.Core" />
42+
<Reference Include="System.Windows.Forms" />
43+
<Reference Include="System.Xml.Linq" />
44+
<Reference Include="System.Data.DataSetExtensions" />
45+
<Reference Include="Microsoft.CSharp" />
46+
<Reference Include="System.Data" />
47+
<Reference Include="System.Net.Http" />
48+
<Reference Include="System.Xml" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<Compile Include="Program.cs" />
52+
<Compile Include="Properties\AssemblyInfo.cs" />
53+
</ItemGroup>
54+
<ItemGroup>
55+
<None Include="App.config" />
56+
<None Include="DLLRewriter.exe.manifest" />
57+
</ItemGroup>
58+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
59+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
60+
Other similar extension points exist, see Microsoft.Common.targets.
61+
<Target Name="BeforeBuild">
62+
</Target>
63+
<Target Name="AfterBuild">
64+
</Target>
65+
-->
66+
</Project>

DLLRewriter/DLLRewriter.exe.manifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
4+
<application>
5+
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
6+
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
7+
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
8+
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
9+
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
10+
</application>
11+
</compatibility>
12+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
13+
<security>
14+
<requestedPrivileges>
15+
<requestedExecutionLevel level="highestAvailable"/>
16+
</requestedPrivileges>
17+
</security>
18+
</trustInfo>
19+
</assembly>

0 commit comments

Comments
 (0)