C ++CLRDLLの参照を4.5.NETFrameworkに追加したため、Visual C#.NETFramework4.0でサポートされているプロジェクトをリンクするとこのエラーが発生します。
error CS0246: The type or namespace name 'project' could not be found (are you missing a using directive or an assembly reference?)
その結果、このC ++CLRでサポートされているDLLプロジェクトのVisualStudio2012で.NETFramework4.5を4.0にダウングレードするにはどうすればよいですか?
私はこれを以前に見たことがあり、それが原因でした。私のC++の場合、このリンクは私の原因に役立つ可能性がありますhttp://msdn.microsoft.com/en-us/library/bb772098(v=vs.90).aspx
私もこの警告を発見しました:
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1578,5): warning MSB3274: The primary reference "X" could not be resolved because it was built against the ".NETFramework,Version=v4.5" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v4.0".
これを見た人はいますか?では、C ++ DLLをダウングレードするにはどうすればよいですか?
ありがとう