Skip to content

Commit 237eb0f

Browse files
committed
update to VS2019
1 parent aa95a09 commit 237eb0f

9 files changed

Lines changed: 65 additions & 41 deletions

File tree

.github/workflows/CI_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: windows-2016
8+
runs-on: windows-latest
99
strategy:
1010
max-parallel: 4
1111
matrix:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,14 @@ on:
1212
jobs:
1313
analyze:
1414
name: Analyze
15-
runs-on: windows-2016
15+
runs-on: windows-latest
1616

1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v2
2020
with:
21-
# We must fetch at least the immediate parents so that if this is
22-
# a pull request then we can checkout the head.
23-
fetch-depth: 2
2421
submodules: 'true'
2522

26-
# If this run was triggered by a pull request event, then checkout
27-
# the head of the pull request instead of the merge commit.
28-
- run: git checkout HEAD^2
29-
if: ${{ github.event_name == 'pull_request' }}
3023

3124
# Initializes the CodeQL tools for scanning.
3225
- name: Initialize CodeQL

NppPlugin/project/NppPlugin.vcxproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,39 +30,40 @@
3030
<ProjectGuid>{69CC76EB-0183-4622-929C-02E860A66A23}</ProjectGuid>
3131
<RootNamespace>NppPlugin</RootNamespace>
3232
<Keyword>Win32Proj</Keyword>
33+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
3334
</PropertyGroup>
3435
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3536
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3637
<ConfigurationType>StaticLibrary</ConfigurationType>
3738
<CharacterSet>Unicode</CharacterSet>
3839
<WholeProgramOptimization>true</WholeProgramOptimization>
39-
<PlatformToolset>v141_xp</PlatformToolset>
40+
<PlatformToolset>v142</PlatformToolset>
4041
</PropertyGroup>
4142
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4243
<ConfigurationType>StaticLibrary</ConfigurationType>
4344
<CharacterSet>Unicode</CharacterSet>
4445
<WholeProgramOptimization>true</WholeProgramOptimization>
45-
<PlatformToolset>v141_xp</PlatformToolset>
46+
<PlatformToolset>v142</PlatformToolset>
4647
</PropertyGroup>
4748
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4849
<ConfigurationType>StaticLibrary</ConfigurationType>
4950
<CharacterSet>Unicode</CharacterSet>
50-
<PlatformToolset>v141_xp</PlatformToolset>
51+
<PlatformToolset>v142</PlatformToolset>
5152
</PropertyGroup>
5253
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5354
<ConfigurationType>StaticLibrary</ConfigurationType>
5455
<CharacterSet>Unicode</CharacterSet>
55-
<PlatformToolset>v141_xp</PlatformToolset>
56+
<PlatformToolset>v142</PlatformToolset>
5657
</PropertyGroup>
5758
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|Win32'" Label="Configuration">
5859
<ConfigurationType>StaticLibrary</ConfigurationType>
5960
<CharacterSet>Unicode</CharacterSet>
60-
<PlatformToolset>v141_xp</PlatformToolset>
61+
<PlatformToolset>v142</PlatformToolset>
6162
</PropertyGroup>
6263
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|x64'" Label="Configuration">
6364
<ConfigurationType>StaticLibrary</ConfigurationType>
6465
<CharacterSet>Unicode</CharacterSet>
65-
<PlatformToolset>v141_xp</PlatformToolset>
66+
<PlatformToolset>v142</PlatformToolset>
6667
</PropertyGroup>
6768
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
6869
<ImportGroup Label="ExtensionSettings">

PythonScript.Tests/PythonScript.Tests.vcxproj

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,45 +30,46 @@
3030
<ProjectGuid>{141C090A-DF76-456E-8B54-1E2C9E5AE75A}</ProjectGuid>
3131
<Keyword>Win32Proj</Keyword>
3232
<RootNamespace>PythonScriptTests</RootNamespace>
33+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
3334
</PropertyGroup>
3435
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3536
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3637
<ConfigurationType>Application</ConfigurationType>
3738
<UseDebugLibraries>true</UseDebugLibraries>
3839
<CharacterSet>Unicode</CharacterSet>
39-
<PlatformToolset>v141_xp</PlatformToolset>
40+
<PlatformToolset>v142</PlatformToolset>
4041
</PropertyGroup>
4142
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4243
<ConfigurationType>Application</ConfigurationType>
4344
<UseDebugLibraries>true</UseDebugLibraries>
4445
<CharacterSet>Unicode</CharacterSet>
45-
<PlatformToolset>v141_xp</PlatformToolset>
46+
<PlatformToolset>v142</PlatformToolset>
4647
</PropertyGroup>
4748
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|Win32'" Label="Configuration">
4849
<ConfigurationType>Application</ConfigurationType>
4950
<UseDebugLibraries>true</UseDebugLibraries>
5051
<CharacterSet>Unicode</CharacterSet>
51-
<PlatformToolset>v141_xp</PlatformToolset>
52+
<PlatformToolset>v142</PlatformToolset>
5253
</PropertyGroup>
5354
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|x64'" Label="Configuration">
5455
<ConfigurationType>Application</ConfigurationType>
5556
<UseDebugLibraries>true</UseDebugLibraries>
5657
<CharacterSet>Unicode</CharacterSet>
57-
<PlatformToolset>v141_xp</PlatformToolset>
58+
<PlatformToolset>v142</PlatformToolset>
5859
</PropertyGroup>
5960
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
6061
<ConfigurationType>Application</ConfigurationType>
6162
<UseDebugLibraries>false</UseDebugLibraries>
6263
<WholeProgramOptimization>true</WholeProgramOptimization>
6364
<CharacterSet>Unicode</CharacterSet>
64-
<PlatformToolset>v141_xp</PlatformToolset>
65+
<PlatformToolset>v142</PlatformToolset>
6566
</PropertyGroup>
6667
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
6768
<ConfigurationType>Application</ConfigurationType>
6869
<UseDebugLibraries>false</UseDebugLibraries>
6970
<WholeProgramOptimization>true</WholeProgramOptimization>
7071
<CharacterSet>Unicode</CharacterSet>
71-
<PlatformToolset>v141_xp</PlatformToolset>
72+
<PlatformToolset>v142</PlatformToolset>
7273
</PropertyGroup>
7374
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
7475
<ImportGroup Label="ExtensionSettings">
@@ -138,6 +139,8 @@
138139
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
139140
<MultiProcessorCompilation>true</MultiProcessorCompilation>
140141
<MinimalRebuild>false</MinimalRebuild>
142+
<LanguageStandard>stdcpp17</LanguageStandard>
143+
<LanguageStandard_C>stdc17</LanguageStandard_C>
141144
</ClCompile>
142145
<Link>
143146
<SubSystem>Console</SubSystem>
@@ -162,6 +165,8 @@
162165
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
163166
<MultiProcessorCompilation>true</MultiProcessorCompilation>
164167
<MinimalRebuild>false</MinimalRebuild>
168+
<LanguageStandard>stdcpp17</LanguageStandard>
169+
<LanguageStandard_C>stdc17</LanguageStandard_C>
165170
</ClCompile>
166171
<Link>
167172
<SubSystem>Console</SubSystem>
@@ -186,6 +191,8 @@
186191
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
187192
<MultiProcessorCompilation>true</MultiProcessorCompilation>
188193
<MinimalRebuild>false</MinimalRebuild>
194+
<LanguageStandard>stdcpp17</LanguageStandard>
195+
<LanguageStandard_C>stdc17</LanguageStandard_C>
189196
</ClCompile>
190197
<Link>
191198
<SubSystem>Console</SubSystem>
@@ -210,6 +217,8 @@
210217
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
211218
<MultiProcessorCompilation>true</MultiProcessorCompilation>
212219
<MinimalRebuild>false</MinimalRebuild>
220+
<LanguageStandard>stdcpp17</LanguageStandard>
221+
<LanguageStandard_C>stdc17</LanguageStandard_C>
213222
</ClCompile>
214223
<Link>
215224
<SubSystem>Console</SubSystem>
@@ -235,6 +244,8 @@
235244
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
236245
<AdditionalIncludeDirectories>gtest\googletest\include;..\PythonScript\src;$(BoostBase);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
237246
<MultiProcessorCompilation>true</MultiProcessorCompilation>
247+
<LanguageStandard>stdcpp17</LanguageStandard>
248+
<LanguageStandard_C>stdc17</LanguageStandard_C>
238249
</ClCompile>
239250
<Link>
240251
<SubSystem>Console</SubSystem>
@@ -255,6 +266,8 @@
255266
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
256267
<AdditionalIncludeDirectories>gtest\googletest\include;..\PythonScript\src;$(BoostBase);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
257268
<MultiProcessorCompilation>true</MultiProcessorCompilation>
269+
<LanguageStandard>stdcpp17</LanguageStandard>
270+
<LanguageStandard_C>stdc17</LanguageStandard_C>
258271
</ClCompile>
259272
<Link>
260273
<SubSystem>Console</SubSystem>
@@ -299,13 +312,13 @@
299312
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
300313
<ImportGroup Label="ExtensionTargets">
301314
<Import Project="..\packages\boost.1.78.0\build\boost.targets" Condition="Exists('..\packages\boost.1.78.0\build\boost.targets')" />
302-
<Import Project="..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets" Condition="Exists('..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets')" />
315+
<Import Project="..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets" Condition="Exists('..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets')" />
303316
</ImportGroup>
304317
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
305318
<PropertyGroup>
306319
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
307320
</PropertyGroup>
308321
<Error Condition="!Exists('..\packages\boost.1.78.0\build\boost.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\boost.1.78.0\build\boost.targets'))" />
309-
<Error Condition="!Exists('..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets'))" />
322+
<Error Condition="!Exists('..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets'))" />
310323
</Target>
311324
</Project>

PythonScript.Tests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="boost" version="1.78.0" targetFramework="native" />
4-
<package id="boost_python310-vc141" version="1.78.0" targetFramework="native" />
4+
<package id="boost_python310-vc142" version="1.78.0" targetFramework="native" />
55
</packages>

PythonScript/project/PythonScript2010.vcxproj

Lines changed: 27 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,57 +39,58 @@
3939
<Keyword>Win32Proj</Keyword>
4040
<RootNamespace>PythonScript2010</RootNamespace>
4141
<ProjectName>PythonScript</ProjectName>
42+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
4243
</PropertyGroup>
4344
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4546
<ConfigurationType>DynamicLibrary</ConfigurationType>
4647
<UseDebugLibraries>true</UseDebugLibraries>
4748
<CharacterSet>Unicode</CharacterSet>
48-
<PlatformToolset>v141_xp</PlatformToolset>
49+
<PlatformToolset>v142</PlatformToolset>
4950
</PropertyGroup>
5051
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5152
<ConfigurationType>DynamicLibrary</ConfigurationType>
5253
<UseDebugLibraries>true</UseDebugLibraries>
5354
<CharacterSet>Unicode</CharacterSet>
54-
<PlatformToolset>v141_xp</PlatformToolset>
55+
<PlatformToolset>v142</PlatformToolset>
5556
</PropertyGroup>
5657
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|Win32'" Label="Configuration">
5758
<ConfigurationType>DynamicLibrary</ConfigurationType>
5859
<UseDebugLibraries>true</UseDebugLibraries>
5960
<CharacterSet>Unicode</CharacterSet>
60-
<PlatformToolset>v141_xp</PlatformToolset>
61+
<PlatformToolset>v142</PlatformToolset>
6162
</PropertyGroup>
6263
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|x64'" Label="Configuration">
6364
<ConfigurationType>DynamicLibrary</ConfigurationType>
6465
<UseDebugLibraries>true</UseDebugLibraries>
6566
<CharacterSet>Unicode</CharacterSet>
66-
<PlatformToolset>v141_xp</PlatformToolset>
67+
<PlatformToolset>v142</PlatformToolset>
6768
</PropertyGroup>
6869
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugStartup|Win32'" Label="Configuration">
6970
<ConfigurationType>DynamicLibrary</ConfigurationType>
7071
<UseDebugLibraries>true</UseDebugLibraries>
7172
<CharacterSet>Unicode</CharacterSet>
72-
<PlatformToolset>v141_xp</PlatformToolset>
73+
<PlatformToolset>v142</PlatformToolset>
7374
</PropertyGroup>
7475
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugStartup|x64'" Label="Configuration">
7576
<ConfigurationType>DynamicLibrary</ConfigurationType>
7677
<UseDebugLibraries>true</UseDebugLibraries>
7778
<CharacterSet>Unicode</CharacterSet>
78-
<PlatformToolset>v141_xp</PlatformToolset>
79+
<PlatformToolset>v142</PlatformToolset>
7980
</PropertyGroup>
8081
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
8182
<ConfigurationType>DynamicLibrary</ConfigurationType>
8283
<UseDebugLibraries>false</UseDebugLibraries>
8384
<WholeProgramOptimization>true</WholeProgramOptimization>
8485
<CharacterSet>Unicode</CharacterSet>
85-
<PlatformToolset>v141_xp</PlatformToolset>
86+
<PlatformToolset>v142</PlatformToolset>
8687
</PropertyGroup>
8788
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
8889
<ConfigurationType>DynamicLibrary</ConfigurationType>
8990
<UseDebugLibraries>false</UseDebugLibraries>
9091
<WholeProgramOptimization>true</WholeProgramOptimization>
9192
<CharacterSet>Unicode</CharacterSet>
92-
<PlatformToolset>v141_xp</PlatformToolset>
93+
<PlatformToolset>v142</PlatformToolset>
9394
</PropertyGroup>
9495
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
9596
<ImportGroup Label="ExtensionSettings">
@@ -184,6 +185,8 @@
184185
<AdditionalIncludeDirectories>../include;../res;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
185186
<MultiProcessorCompilation>true</MultiProcessorCompilation>
186187
<MinimalRebuild>false</MinimalRebuild>
188+
<LanguageStandard>stdcpp17</LanguageStandard>
189+
<LanguageStandard_C>stdc17</LanguageStandard_C>
187190
</ClCompile>
188191
<Link>
189192
<SubSystem>Windows</SubSystem>
@@ -207,6 +210,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
207210
<AdditionalIncludeDirectories>../include;../res;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
208211
<MultiProcessorCompilation>true</MultiProcessorCompilation>
209212
<MinimalRebuild>false</MinimalRebuild>
213+
<LanguageStandard>stdcpp17</LanguageStandard>
214+
<LanguageStandard_C>stdc17</LanguageStandard_C>
210215
</ClCompile>
211216
<Link>
212217
<SubSystem>Windows</SubSystem>
@@ -231,6 +236,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
231236
<MultiProcessorCompilation>true</MultiProcessorCompilation>
232237
<TreatWarningAsError>true</TreatWarningAsError>
233238
<MinimalRebuild>false</MinimalRebuild>
239+
<LanguageStandard>stdcpp17</LanguageStandard>
240+
<LanguageStandard_C>stdc17</LanguageStandard_C>
234241
</ClCompile>
235242
<Link>
236243
<SubSystem>Windows</SubSystem>
@@ -255,6 +262,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
255262
<MultiProcessorCompilation>true</MultiProcessorCompilation>
256263
<TreatWarningAsError>true</TreatWarningAsError>
257264
<MinimalRebuild>false</MinimalRebuild>
265+
<LanguageStandard>stdcpp17</LanguageStandard>
266+
<LanguageStandard_C>stdc17</LanguageStandard_C>
258267
</ClCompile>
259268
<Link>
260269
<SubSystem>Windows</SubSystem>
@@ -278,6 +287,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
278287
<AdditionalIncludeDirectories>../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
279288
<MultiProcessorCompilation>true</MultiProcessorCompilation>
280289
<MinimalRebuild>false</MinimalRebuild>
290+
<LanguageStandard>stdcpp17</LanguageStandard>
291+
<LanguageStandard_C>stdc17</LanguageStandard_C>
281292
</ClCompile>
282293
<Link>
283294
<SubSystem>Windows</SubSystem>
@@ -299,6 +310,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
299310
<AdditionalIncludeDirectories>../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
300311
<MultiProcessorCompilation>true</MultiProcessorCompilation>
301312
<MinimalRebuild>false</MinimalRebuild>
313+
<LanguageStandard>stdcpp17</LanguageStandard>
314+
<LanguageStandard_C>stdc17</LanguageStandard_C>
302315
</ClCompile>
303316
<Link>
304317
<SubSystem>Windows</SubSystem>
@@ -321,6 +334,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
321334
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
322335
<AdditionalIncludeDirectories>../include;../res;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
323336
<MultiProcessorCompilation>true</MultiProcessorCompilation>
337+
<LanguageStandard>stdcpp17</LanguageStandard>
338+
<LanguageStandard_C>stdc17</LanguageStandard_C>
324339
</ClCompile>
325340
<Link>
326341
<SubSystem>Windows</SubSystem>
@@ -342,6 +357,8 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
342357
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
343358
<AdditionalIncludeDirectories>../include;../res;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
344359
<MultiProcessorCompilation>true</MultiProcessorCompilation>
360+
<LanguageStandard>stdcpp17</LanguageStandard>
361+
<LanguageStandard_C>stdc17</LanguageStandard_C>
345362
</ClCompile>
346363
<Link>
347364
<SubSystem>Windows</SubSystem>
@@ -527,13 +544,13 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
527544
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
528545
<ImportGroup Label="ExtensionTargets">
529546
<Import Project="..\..\packages\boost.1.78.0\build\boost.targets" Condition="Exists('..\..\packages\boost.1.78.0\build\boost.targets')" />
530-
<Import Project="..\..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets" Condition="Exists('..\..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets')" />
547+
<Import Project="..\..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets" Condition="Exists('..\..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets')" />
531548
</ImportGroup>
532549
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
533550
<PropertyGroup>
534551
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
535552
</PropertyGroup>
536553
<Error Condition="!Exists('..\..\packages\boost.1.78.0\build\boost.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\boost.1.78.0\build\boost.targets'))" />
537-
<Error Condition="!Exists('..\..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\boost_python310-vc141.1.78.0\build\boost_python310-vc141.targets'))" />
554+
<Error Condition="!Exists('..\..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\boost_python310-vc142.1.78.0\build\boost_python310-vc142.targets'))" />
538555
</Target>
539556
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="boost" version="1.78.0" targetFramework="native" />
4-
<package id="boost_python310-vc141" version="1.78.0" targetFramework="native" />
4+
<package id="boost_python310-vc142" version="1.78.0" targetFramework="native" />
55
</packages>

0 commit comments

Comments
 (0)