ZillaLib icon indicating copy to clipboard operation
ZillaLib copied to clipboard

Add support for Visual Studio 2022

Open tobybear opened this issue 3 years ago • 0 comments

As with VS2019, to make ZillaLib work with VS2022, some tiny changes need to be made in two files:

File "ZillaApp-vs.props":

  • add the following line to the UserMacros section: <VisualStudioYear Condition="'$(VisualStudioVersion)' == '17.0' Or '$(PlatformToolsetVersion)' == '143' Or '$(MSBuildToolsVersion)'== '17.0'">2022</VisualStudioYear>
  • add the following line to the platform toolset conditions: <PlatformToolset Condition="'$(VisualStudioYear)' == '2022'">v143$(PlatformToolsetPostfix)</PlatformToolset>

File "ZillaLib-vs.sln":

  • add the following line to the UserMacros section: <VisualStudioYear Condition="'$(VisualStudioVersion)' == '17.0' Or '$(PlatformToolsetVersion)' == '143' Or '$(MSBuildToolsVersion)'== '17.0'">2022</VisualStudioYear>

tobybear avatar Feb 12 '22 19:02 tobybear