I'm asking for help because something strange happened to me with visual studio 2022. The computer shut down while i was updating visual studio and the next time i restarted it i had to reinstall everything.
I opened the solution i've been working on for years and it gives me this error while debugging "file 'Microsoft.Windows.Common-Controls, Version=6.0.0.0, Culture=*, PublicKeyToken=6595b64144ccf1df, ProcessorArchitecture=*, Type=win32' not found"
I have already checked vbproj file which points to app.manifest where the necessary is present:
in vbproj file:
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
in app.manifest file:
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
</dependentAssembly>
</dependency>
I don't understand the problem, I thank anyone who can help me
I opened the solution i've been working on for years and it gives me this error while debugging "file 'Microsoft.Windows.Common-Controls, Version=6.0.0.0, Culture=*, PublicKeyToken=6595b64144ccf1df, ProcessorArchitecture=*, Type=win32' not found"
I have already checked vbproj file which points to app.manifest where the necessary is present:
in vbproj file:
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
in app.manifest file:
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
</dependentAssembly>
</dependency>
I don't understand the problem, I thank anyone who can help me