diff options
| author | Adonais Romero González <[email protected]> | 2022-04-04 15:06:15 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-04-04 15:06:15 -0700 |
| commit | 5d1c0dc30fb88e13203b8b8db730825a89e0fa1b (patch) | |
| tree | 14c85a4b72f5a479fd20fed6434cf4dbe2171c84 | |
| parent | a4335317df32e6e9d9dad38d8167fdc2d4d95640 (diff) | |
Set ManagedAssembly=true on usb/usbview project
This will enable the sample to be built under the v143 VC++ toolset while allowing it to be built under lowered version toolsets
| -rw-r--r-- | usb/usbview/usbview.vcxproj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usb/usbview/usbview.vcxproj b/usb/usbview/usbview.vcxproj index cb6879d3..fa1866e0 100644 --- a/usb/usbview/usbview.vcxproj +++ b/usb/usbview/usbview.vcxproj @@ -77,15 +77,19 @@ <ItemGroup Label="WrappedTaskItems" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <TargetName>usbview</TargetName> + <ManagedAssembly>true</ManagedAssembly> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <TargetName>usbview</TargetName> + <ManagedAssembly>true</ManagedAssembly> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <TargetName>usbview</TargetName> + <ManagedAssembly>true</ManagedAssembly> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <TargetName>usbview</TargetName> + <ManagedAssembly>true</ManagedAssembly> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ClCompile> @@ -191,4 +195,4 @@ <ClInclude Exclude="@(ClInclude)" Include="*.h;*.hpp;*.hxx;*.hm;*.inl;*.xsd" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> -</Project>
\ No newline at end of file +</Project> |
