Skip to content

Commit 7cf5c3d

Browse files
author
meazaar
committed
GadgetToJScript v2.0
1 parent 5ac70f6 commit 7cf5c3d

32 files changed

+800
-277
lines changed

.DS_Store

0 Bytes
Binary file not shown.

GadgetToJScript.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.28010.2003
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GadgetToJScript", "GadgetToJScript\GadgetToJScript.csproj", "{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestAssembly", "TestAssembly\TestAssembly.csproj", "{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -21,6 +23,14 @@ Global
2123
{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}.Release|Any CPU.Build.0 = Release|Any CPU
2224
{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}.Release|x86.ActiveCfg = Release|x86
2325
{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}.Release|x86.Build.0 = Release|x86
26+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Debug|x86.ActiveCfg = Debug|Any CPU
29+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Debug|x86.Build.0 = Debug|Any CPU
30+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Release|x86.ActiveCfg = Release|Any CPU
33+
{B2B3ADB0-1669-4B94-86CB-6DD682DDBEA3}.Release|x86.Build.0 = Release|Any CPU
2434
EndGlobalSection
2535
GlobalSection(SolutionProperties) = preSolution
2636
HideSolutionNode = FALSE

GadgetToJScript/.DS_Store

-6 KB
Binary file not shown.

GadgetToJScript/App.Config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5-
</startup>
6-
</configuration>
4+
5+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup>
6+
</configuration>
Lines changed: 104 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,104 @@
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>{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}</ProjectGuid>
8-
<OutputType>Exe</OutputType>
9-
<RootNamespace>GadgetToJScript</RootNamespace>
10-
<AssemblyName>GadgetToJScript</AssemblyName>
11-
<TargetFrameworkVersion>v4.6.1</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|x86'">
36-
<DebugSymbols>true</DebugSymbols>
37-
<OutputPath>bin\x86\Debug\</OutputPath>
38-
<DefineConstants>DEBUG;TRACE</DefineConstants>
39-
<DebugType>full</DebugType>
40-
<PlatformTarget>x86</PlatformTarget>
41-
<ErrorReport>prompt</ErrorReport>
42-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
43-
<Prefer32Bit>true</Prefer32Bit>
44-
</PropertyGroup>
45-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
46-
<OutputPath>bin\x86\Release\</OutputPath>
47-
<DefineConstants>TRACE</DefineConstants>
48-
<Optimize>true</Optimize>
49-
<DebugType>pdbonly</DebugType>
50-
<PlatformTarget>x86</PlatformTarget>
51-
<ErrorReport>prompt</ErrorReport>
52-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
53-
<Prefer32Bit>true</Prefer32Bit>
54-
</PropertyGroup>
55-
<ItemGroup>
56-
<Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
57-
<HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
58-
</Reference>
59-
<Reference Include="System" />
60-
<Reference Include="System.Configuration" />
61-
<Reference Include="System.Core" />
62-
<Reference Include="System.Runtime.Remoting" />
63-
<Reference Include="System.Web" />
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.Net.Http" />
69-
<Reference Include="System.Xml" />
70-
</ItemGroup>
71-
<ItemGroup>
72-
<Compile Include="Program.cs" />
73-
<Compile Include="Properties\AssemblyInfo.cs" />
74-
<Compile Include="TestAssemblyLoader.cs" />
75-
<Compile Include="_ASurrogateGadgetGenerator.cs" />
76-
<Compile Include="_DisableTypeCheckGadgetGenerator.cs" />
77-
<Compile Include="_SurrogateSelector.cs" />
78-
</ItemGroup>
79-
<ItemGroup>
80-
<None Include="App.Config">
81-
<SubType>Designer</SubType>
82-
</None>
83-
<None Include="packages.config" />
84-
<EmbeddedResource Include="templates\htascript.template" />
85-
<EmbeddedResource Include="templates\jscript.template" />
86-
<EmbeddedResource Include="templates\jscript-regfree.template" />
87-
<EmbeddedResource Include="templates\vbscript.template" />
88-
<EmbeddedResource Include="templates\vbascripthex.template" />
89-
<EmbeddedResource Include="templates\vbascriptb64.template" />
90-
</ItemGroup>
91-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92-
</Project>
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>{AF9C62A1-F8D2-4BE0-B019-0A7873E81EA9}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>GadgetToJScript</RootNamespace>
10+
<AssemblyName>GadgetToJScript</AssemblyName>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
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+
<Prefer32Bit>false</Prefer32Bit>
37+
</PropertyGroup>
38+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
39+
<DebugSymbols>true</DebugSymbols>
40+
<OutputPath>bin\x86\Debug\</OutputPath>
41+
<DefineConstants>DEBUG;TRACE</DefineConstants>
42+
<DebugType>full</DebugType>
43+
<PlatformTarget>x86</PlatformTarget>
44+
<ErrorReport>prompt</ErrorReport>
45+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
46+
<Prefer32Bit>true</Prefer32Bit>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
49+
<OutputPath>bin\x86\Release\</OutputPath>
50+
<DefineConstants>TRACE</DefineConstants>
51+
<Optimize>true</Optimize>
52+
<DebugType>pdbonly</DebugType>
53+
<PlatformTarget>x86</PlatformTarget>
54+
<ErrorReport>prompt</ErrorReport>
55+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56+
<Prefer32Bit>true</Prefer32Bit>
57+
</PropertyGroup>
58+
<ItemGroup>
59+
<Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
60+
<HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
61+
</Reference>
62+
<Reference Include="System" />
63+
<Reference Include="System.Configuration" />
64+
<Reference Include="System.Core" />
65+
<Reference Include="System.Runtime.Remoting" />
66+
<Reference Include="System.Web" />
67+
<Reference Include="System.Windows.Forms" />
68+
<Reference Include="System.Xml.Linq" />
69+
<Reference Include="System.Data.DataSetExtensions" />
70+
<Reference Include="Microsoft.CSharp" />
71+
<Reference Include="System.Data" />
72+
<Reference Include="System.Net.Http" />
73+
<Reference Include="System.Xml" />
74+
</ItemGroup>
75+
<ItemGroup>
76+
<Compile Include="Program.cs" />
77+
<Compile Include="Properties\AssemblyInfo.cs" />
78+
<Compile Include="_AssemblyLoader.cs" />
79+
<Compile Include="_ASurrogateGadgetGenerator.cs" />
80+
<Compile Include="_DisableTypeCheckGadgetGenerator.cs" />
81+
<Compile Include="_SurrogateSelector.cs" />
82+
</ItemGroup>
83+
<ItemGroup>
84+
<None Include="App.Config">
85+
<SubType>Designer</SubType>
86+
</None>
87+
<None Include="packages.config" />
88+
<EmbeddedResource Include="templates\GT4_8\htascript.template" />
89+
<EmbeddedResource Include="templates\GT4_8\jscript.template" />
90+
<EmbeddedResource Include="templates\GT4_8\jscript-regfree.template" />
91+
<EmbeddedResource Include="templates\GT4_8\vbscript.template" />
92+
<EmbeddedResource Include="templates\GT4_8\vbascripthex.template" />
93+
<EmbeddedResource Include="templates\GT4_8\vbascriptb64.template" />
94+
<EmbeddedResource Include="templates\LT4_8\htascript.template" />
95+
<EmbeddedResource Include="templates\LT4_8\jscript-regfree.template" />
96+
<EmbeddedResource Include="templates\LT4_8\jscript.template" />
97+
<EmbeddedResource Include="templates\LT4_8\vbascriptb64.template" />
98+
<EmbeddedResource Include="templates\LT4_8\vbascripthex.template" />
99+
<EmbeddedResource Include="templates\LT4_8\vbscript.template" />
100+
<EmbeddedResource Include="templates\LT4_8\htascript-regfree.template" />
101+
</ItemGroup>
102+
<ItemGroup />
103+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104+
</Project>

0 commit comments

Comments
 (0)