Skip to content

Commit 63160c3

Browse files
committed
Добавлена поддержка VS2026.
1 parent 33e2835 commit 63160c3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

common.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
</ResourceCompile>
5656
<Link>
5757
<ImageHasSafeExceptionHandlers Condition="'$(Platform)'=='Win32'">false</ImageHasSafeExceptionHandlers>
58-
<GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
58+
<GenerateDebugInformation Condition="'$(VisualStudioVersion)' != '18.0'">DebugFastLink</GenerateDebugInformation>
59+
<GenerateDebugInformation Condition="'$(VisualStudioVersion)' == '18.0'">true</GenerateDebugInformation>
5960
</Link>
6061
</ItemDefinitionGroup>
6162
<ItemDefinitionGroup Condition="$(Configuration.Contains('Release'))">

platform.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
99
<PlatformToolset>v143</PlatformToolset>
1010
</PropertyGroup>
11+
<PropertyGroup Label="Configuration" Condition="'$(VisualStudioVersion)' == '18.0'">
12+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
13+
<PlatformToolset>v145</PlatformToolset>
14+
</PropertyGroup>
1115
</Project>

0 commit comments

Comments
 (0)