2017-11-29 21:47:39 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-05-28 13:41:23 +02:00
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-09-03 10:51:18 +10:00
|
|
|
<VisualStudioProductVersion>2019</VisualStudioProductVersion>
|
|
|
|
|
<!-- <VisualStudioProductVersion Condition="'$(VisualStudioVersion)'=='15.0'">2017</VisualStudioProductVersion> -->
|
|
|
|
|
<!-- <VisualStudioProductVersion Condition="'$(VisualStudioVersion)'=='16.0'">2017</VisualStudioProductVersion> -->
|
|
|
|
|
<!-- <VisualStudioProductVersion Condition="'$(VisualStudioVersion)'=='16.0' AND Exists('$(SolutionDir)packages\$(CefSdkVer)\CEF\$(Platform)\$(Configuration)\VS2019\libcef_dll_wrapper.lib')">2019</VisualStudioProductVersion> -->
|
2013-05-28 13:41:23 +02:00
|
|
|
|
2021-09-03 10:51:18 +10:00
|
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
|
|
|
<!--<PlatformToolset Condition="'$(VisualStudioVersion)'=='14.0'">v140</PlatformToolset>
|
2017-12-20 10:21:08 +10:00
|
|
|
<PlatformToolset Condition="'$(VisualStudioVersion)'=='15.0'">v141</PlatformToolset>
|
2021-09-03 10:51:18 +10:00
|
|
|
<PlatformToolset Condition="'$(VisualStudioVersion)'=='16.0'">v142</PlatformToolset>-->
|
|
|
|
|
|
|
|
|
|
<WindowsTargetPlatformVersion Condition="'$(VisualStudioVersion)'=='16.0'">10.0</WindowsTargetPlatformVersion>
|
2017-11-29 21:47:39 +01:00
|
|
|
|
2021-10-10 15:44:47 +10:00
|
|
|
<CefSharpBrowserSubprocessPostBuildEvent>
|
2017-11-29 21:47:39 +01:00
|
|
|
<![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>
|
2013-05-28 13:41:23 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|