株式会社ヴァンデミックシステム

Blog

<スポンサーリンク>

・VisualStudio2022communityをインストール
・ツールと機能から必要なパッケージをインストール

・vcxprojのWindowsTargetPlatformVersionとPlatformToolsetを利用しているWindowsビルドバージョンに合わせる
10.0.22000.0はWindows11のSDKで、v143はWindows11のこと。

  <PropertyGroup Label="Globals">
    <ProjectGuid>{75640BB7-FA6D-4DED-A074-E4758CCEF7D1}</ProjectGuid>
    <Keyword>Win32Proj</Keyword>
    <RootNamespace>VirtualDesktopAccessor</RootNamespace>
    <WindowsTargetPlatformVersion>10.0.22000.0</WindowsTargetPlatformVersion>
  </PropertyGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
    <ConfigurationType>DynamicLibrary</ConfigurationType>
    <UseDebugLibraries>true</UseDebugLibraries>
    <PlatformToolset>v143</PlatformToolset>
    <CharacterSet>Unicode</CharacterSet>
  </PropertyGroup>

<スポンサーリンク>

コメントを残す

Allowed tags:  you may use these HTML tags and attributes: <a href="">, <strong>, <em>, <h1>, <h2>, <h3>
Please note:  all comments go through moderation.

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)