تكوين Aspose.Words ل C++ في Visual Studio
Contents
[
Hide
]
Aspose.Words ل C++ API يعمل مع Visual Studio 2022 أو في وقت لاحق. للعمل مع Visual Studio، قد تحتاج إلى تثبيت Visual C++ Redistributable متوفر على Microsoft الموقع الرسمي.
تكوين مع MSBuild .ملفات الأهداف
اتبع هذه الخطوات لتكوين مشروعك باستخدام MSBuild .ملفات الأهداف:
إضافة علامات الاستيراد مع Aspose.Words ل C++ استهداف الملفات في ملف فكسبروج الخاص بك
- افتح ملف مشروعك
*.vcxproj
في محرر النصوص - ابحث عن
<ImportGroup Label="ExtensionTargets"></ImportGroup>
في نهاية الملف - أضف العلامات
Import
التالية داخلImportGroup
:<ImportGroup Label="ExtensionTargets"> <Import Project="<path-to>\CodePorting.Translator.Cs2Cpp.Framework_<version>\CodePorting.Translator.Cs2Cpp.Framework.targets" Condition="Exists('<path-to>\CodePorting.Translator.Cs2Cpp.Framework_<version>\CodePorting.Translator.Cs2Cpp.Framework.targets')" /> <Import Project="<path-to>\Aspose.Words.Cpp\aspose.words.cpp.targets" Condition="Exists('<path-to>\Aspose.Words.Cpp\aspose.words.cpp.targets')" /> </ImportGroup> </Project>
تكوين يدويا
اتبع هذه الخطوات لتكوين يدويا Aspose.Words ل C++ في Visual Studio:
إضافة إضافية تشمل الدلائل:
- خاصية المشروع المفتوح
- انتقل إلى ج / C++ General عام
- أضف الدلائل الإضافية التالية:
Aspose.Words.Cpp\include
CodePorting.Translator.Cs2Cpp.Framework_<version>\include
أضف التبعيات الإضافية:
- خاصية المشروع المفتوح
- حدد التكوين All جميع التكوينات والنظام الأساسي All جميع المنصات
- انتقل إلى رابط-إدخال
- لتكوين الإصدار:
Aspose.Words.Cpp\lib\x64\Release\Aspose.Words.Cpp_vc14x64.lib
CodePorting.Translator.Cs2Cpp.Framework_<version>\lib\codeporting.translator.cs2cpp.framework_vc14x64.lib
- لتكوين التصحيح:
Aspose.Words.Cpp\lib\x64\Debug\Aspose.Words.Cpp_vc14x64d.lib
CodePorting.Translator.Cs2Cpp.Framework_<version>\lib\codeporting.translator.cs2cpp.framework_vc14x64d.lib
أضف الأوامر:
- خاصية المشروع المفتوح
- انتقل إلى إنشاء الأحداث-حدث ما بعد الإنشاء
- أضف الأوامر التالية:
- لتكوين الإصدار:
xcopy /y /d "$(ProjectDir)Aspose.Words.Cpp\lib\x64\$(Configuration)\Aspose.Words.Cpp_vc14x64.dll" "$(OutDir)" xcopy /y /d "$(ProjectDir)CodePorting.Translator.Cs2Cpp.Framework_<version>\lib\codeporting.translator.cs2cpp.framework_vc14x64.dll" "$(OutDir)"
- لتكوين التصحيح:
xcopy /y /d "$(ProjectDir)Aspose.Words.Cpp\lib\x64\$(Configuration)\Aspose.Words.Cpp_vc14x64d.dll" "$(OutDir)" xcopy /y /d "$(ProjectDir)CodePorting.Translator.Cs2Cpp.Framework_<version>\lib\codeporting.translator.cs2cpp.framework_vc14x64d.dll" "$(OutDir)"