File tree Expand file tree Collapse file tree 3 files changed +8
-17
lines changed
CefSharp.BrowserSubprocess Expand file tree Collapse file tree 3 files changed +8
-17
lines changed Original file line number Diff line number Diff line change 3535 <None Remove =" obj.netcore\**" />
3636 </ItemGroup >
3737 <Target Name =" PostBuild" AfterTargets =" PostBuildEvent" >
38- <Exec Command =" 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)"
 )" />
38+ <Exec Command =" 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 /STACK:0x800000 " $(TargetPath)"
 sn -R " $(TargetPath) " " $(ProjectDir)..\CefSharp.snk "
 )" />
3939 </Target >
4040</Project >
Original file line number Diff line number Diff line change 5656 <ProjectReference Include =" ..\CefSharp\CefSharp.netcore.csproj" />
5757 </ItemGroup >
5858
59+ <Target Name =" PostBuild" AfterTargets =" PostBuildEvent" >
60+ <Exec Command =" if $(PlatformName) == x86 (
 call " $(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars32.bat"
 editbin /largeaddressaware /TSAWARE " $(TargetDir)CefSharp.BrowserSubprocess.exe" 
 ) else if $(PlatformName) == x64 (
 call " $(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars64.bat"
 editbin /STACK:0x800000 " $(TargetDir)CefSharp.BrowserSubprocess.exe"
 ) else if $(PlatformName) == arm64 (
 call " $(DevEnvDir)..\..\VC\Auxiliary\Build\vcvarsamd64_arm64.bat"
 editbin /STACK:0x800000 " $(TargetDir)CefSharp.BrowserSubprocess.exe"
 )
 " />
61+ </Target >
62+
5963 <!-- Implicit bottom import -->
6064 <Import Project =" Sdk.targets" Sdk =" Microsoft.NET.Sdk" />
6165</Project >
Original file line number Diff line number Diff line change 99 <PlatformToolset Condition =" '$(VisualStudioVersion)'=='17.0'" >v143</PlatformToolset >
1010
1111 <!-- TODO: We might need to do something here when VS2019 and VS2022 are installed -->
12- <WindowsTargetPlatformVersion >10.0</WindowsTargetPlatformVersion >
13- <!-- <WindowsTargetPlatformVersion Condition="'$(VisualStudioVersion)'=='16.0'">10.0</WindowsTargetPlatformVersion> -->
14- <!-- <WindowsTargetPlatformVersion Condition="'$(VisualStudioVersion)'=='17.0'">10.0</WindowsTargetPlatformVersion> -->
15-
16- <CefSharpBrowserSubprocessPostBuildEvent >
17- <![CDATA[
18- if $(PlatformName) == x86 (
19- call "$(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars32.bat"
20- editbin /largeaddressaware /TSAWARE "$(TargetPath)"
21- sn -R "$(TargetPath)" "$(ProjectDir)..\CefSharp.snk"
22- ) else (
23- call "$(DevEnvDir)..\..\VC\Auxiliary\Build\vcvars64.bat"
24- editbin /TSAWARE "$(TargetPath)"
25- )
26- ]]>
27- </CefSharpBrowserSubprocessPostBuildEvent >
12+ <WindowsTargetPlatformVersion >10.0</WindowsTargetPlatformVersion >
13+ <!-- <WindowsTargetPlatformVersion Condition="'$(VisualStudioVersion)'=='16.0'">10.0</WindowsTargetPlatformVersion> -->
14+ <!-- <WindowsTargetPlatformVersion Condition="'$(VisualStudioVersion)'=='17.0'">10.0</WindowsTargetPlatformVersion> -->
2815 </PropertyGroup >
2916
3017</Project >
You can’t perform that action at this time.
0 commit comments