Skip to content

Commit

Permalink
Restore make.msbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jvazquez-r7 committed Jun 3, 2014
1 parent f918bcc commit 98a06b3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions external/source/exploits/IE11SandboxEscapes/make.msbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" standalone="yes"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SolutionPath>.\IE11SandboxEscapes.sln</SolutionPath>
</PropertyGroup>

<Target Name="all" DependsOnTargets="x86" />

<Target Name="x86">
<Message Text="Building IE11SandboxEscapes x86 Release version" />
<MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=Win32" Targets="Clean;Rebuild"/>
</Target>

<Target Name="x64">
<Message Text="IE11SandboxEscapes not supported in x64" />
</Target>
</Project>

0 comments on commit 98a06b3

Please sign in to comment.