-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f918bcc
commit 98a06b3
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|