問題タブ [resgen]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
visual-studio - Resgen による .dll バージョンの変更
ファイルから画像を変更したい.exe
。.NETReflector を使用してそれを開き、その場所にあるリソース ファイルを抽出しました。.resource
次に、ファイルをファイルに.resx
変換しましたresgen
(これは VS からのものだと思いますNETFX4.0
)。
ただし、resgen
などのライブラリからの参照が変更されてSystem.Drawing.dll Version=1.0.5000.0
いるようで、それVersion=4.0.0.0
を使用resgen
してリソース ファイルに再コンパイルすると、次のエラーが発生します。
Could not load file or assembly 'System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.
古い dist を参照しようとしましたがSystem.dll
、それでもすべてのライブラリ バージョンが更新されて使用できなくなりました。resgen
ファイルのバージョンを変更しないようにするにはどうすればよい.resource
ですか? ヘルプ!