You can get VS 2012 working with Office 2007. First create an Outlook 2010 Add-In and modify the project file (.csproj) so that it will open in Office 2007 and not look for Office 2010 when run.

Here is the project settings change (Outlook example):

Source XPath:

//Project/ProjectExtensions/VisualStudio/FlavorProperties/ProjectProperties/@DebugInfoExeName

Old Value (Office 2010):

DebugInfoExeName="#Software\Microsoft\Office\14.0\Outlook\InstallRoot\Path#outlook.exe"

New Value (Office 2007):

DebugInfoExeName="#Software\Microsoft\Office\12.0\Outlook\InstallRoot \Path#outlook.exe"

After changing this project setting, when you fire up the debugger (F5) it will load the Outlook 2007 application instead of looking for Outlook 2010.


One of the major drawbacks to using VS 2012 for Office development is that deployment is now using InstallShield LE instead of Visual Studio Setup Projects. This is a major shift, but it seems MS is moving away from supporting native installers and letting others manage this burdenWiX is an alternative installer, but I have not tried it out. WiX (Windows Installer XML) still lacks the UI that is present with InstallShield LE or VS 2010 Setup Projects.

The only advantage of using VS 2012 for development is that development IDE is much faster.

最新文章

  1. Stream流
  2. 01@MySQL_Course_LabVIEW+MySQL程序开发
  3. javascript图片懒加载与预加载的分析
  4. 服务器操作系统应该选择 Debian/Ubuntu 还是 CentOS?
  5. 解决plsql工具不能用中文字进行模糊匹配
  6. bzoj 3907: 网格 组合数学
  7. C primer plus 读书笔记第二章
  8. Rand
  9. java集合--Queue用法
  10. C# 关于out关键字的用法(一个方法返回多个值的问题)
  11. POJ3255次短路
  12. Mysql-如何正确的使用索引以及索引的原理
  13. 前后端分离springmvc和RESTful理解
  14. python 基础数据类型 之 列表
  15. 033 Java Spark的编程
  16. Axiom3D:Ogre中Mesh文件格式分析(一)
  17. 【Spring学习笔记-MVC-13】Spring MVC之文件上传
  18. Hibernate核心对象
  19. Machine learning 第7周编程作业 SVM
  20. C++ sort 函数用法

热门文章

  1. 栈ADT的数组实现
  2. OC基础16:复制对象
  3. 个人VIM配置文件
  4. ftk学习记录(一个进度条文章)
  5. UIPageViewController-浅析
  6. maven01 hello maven
  7. 关于constructor与 Prototype的理解
  8. Angular-UI-Router
  9. JavaScript Set Cursor Style
  10. 观察者模式:猫叫鼠跑人醒(C#)