forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VS2017 build support (using the VS2015 tooling) (cefsharp#2179)
* initial vs2017 build support * update nuget retrieval url apparently http://nuget.org/nuget.exe is version 2.8, which is fairly old * enable child process debugging
- Loading branch information
Showing
4 changed files
with
35 additions
and
10 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
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 |
---|---|---|
@@ -1,12 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<VisualStudioProductVersion>2013</VisualStudioProductVersion> | ||
<VisualStudioProductVersion Condition="'$(VisualStudioVersion)'=='14.0'">2015</VisualStudioProductVersion> | ||
<VisualStudioProductVersion Condition="'$(VisualStudioVersion)'=='15.0'">2015</VisualStudioProductVersion> | ||
|
||
<PlatformToolset>v120</PlatformToolset> | ||
<PlatformToolset Condition="'$(VisualStudioVersion)'=='14.0'">v140</PlatformToolset> | ||
<PlatformToolset Condition="'$(VisualStudioVersion)'=='15.0'">v140</PlatformToolset> | ||
|
||
<CefSharpBrowserSubprocessPostBuildEvent> | ||
<![CDATA[ | ||
if $(PlatformName) == x86 ( | ||
"$(DevEnvDir)..\..\VC\bin\editbin" /largeaddressaware /TSAWARE "$(TargetPath)" | ||
call "$(DevEnvDir)..\Tools\vsvars32.bat" | ||
sn -R "$(TargetPath)" "$(ProjectDir)..\CefSharp.snk" | ||
) else ( | ||
"$(DevEnvDir)..\..\VC\bin\amd64\editbin" /TSAWARE "$(TargetPath)" | ||
) | ||
]]></CefSharpBrowserSubprocessPostBuildEvent> | ||
|
||
<CefSharpBrowserSubprocessPostBuildEvent Condition="'$(VisualStudioVersion)'=='15.0'"> | ||
<![CDATA[ | ||
if $(PlatformName) == x86 ( | ||
call "$(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars32.bat" | ||
editbin /largeaddressaware /TSAWARE "$(TargetPath)" | ||
sn -R "$(TargetPath)" "$(ProjectDir)..\CefSharp.snk" | ||
) else ( | ||
call "$(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars64.bat" | ||
editbin /TSAWARE "$(TargetPath)" | ||
) | ||
]]> | ||
</CefSharpBrowserSubprocessPostBuildEvent> | ||
</PropertyGroup> | ||
|
||
</Project> |
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,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ChildProcessDebuggingSettings IsEnabled="true" xmlns="http://schemas.microsoft.com/vstudio/ChildProcessDebuggingSettings/2014"> | ||
<DefaultRule EngineFilter="[inherit]" /> | ||
</ChildProcessDebuggingSettings> |
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