XLSX ファイルをロードする必要があるテスト プロジェクトがあります。そのために、copy-always を使用してファイルを追加し、それがビルド ディレクトリに配置されるようにしましたが、次のすべてが間違ったパスを返します。
System.Reflection.Assembly.GetAssembly(typeof(testclass)).Location;
AppDomain.CurrentDomain.BaseDirectory
Directory.GetCurrentDirectory();
彼らはすべて私に与えます:
"C:\\Users\\username\\Documents\\visual-studio-projecten\\projectname\\TestResults\\username_ICT003 2012-06-20 12_07_06\\Out"
そして私は必要です
"C:\\Users\\username\\Documents\\visual-studio-projecten\\projectname\\TestProject\\bin\\Debug\\SupportFiles\\"
どうすればそれを達成できますか?