0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

.NetFreamwork4.0以上の環境で2.0dll参照時の設定

Last updated at Posted at 2020-04-11

概要

個人的メモ。
.NetFreamwork4.0での開発時にビルドが通らず。
.NetFreamwork2.0で作成しているdllを参照していたのが原因の様子。
対策を調査し対応

エラー内容

1.「ファイルまたはアセンブリ '***'、またはその依存関係の 1 つが読み込めませんでした。指定されたファイルが見つかりません。」

2:FileLoadException:「混合モード アセンブリはバージョン 'v2.0.50727' のランタイムに対して作成されており、追加の構成情報がないと 4.0 ランタイムでは読み込めません。」

回避策

ソリューションを開き「app.config」に追記

appconfig.vb
<startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
</startup>

参考サイト

混合モードアセンブリはバージョンのランタイムに対して作成されており、追加の構成情報がないと 4.0 ランタイムでは読み込めません。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?