小编Har*_*a R的帖子

如何从VSTO Addin中找出当前版本的Outlook?

我认为我今天的搜索技巧很糟糕,但我想知道我的加载项中运行的Office Outlook版本是什么?

即,我需要知道我的加载项是否与Outlook 2007或2010一起运行

是否有任何API可以用来查找当前的Outlook版本?

谢谢,哈莎

c# outlook vsto outlook-addin

11
推荐指数
1
解决办法
5951
查看次数

Gradle:如何从非Java项目发布zip并在java项目中使用它?

我有一个多项目设置.我创建了一个非java项目,其工件是一个zip文件,我将在另一个项目中解压缩.所以这个想法如下

my-non-java-project
  build.gradle
  ------------
    apply plugin: 'base'

    task doZip(type:Zip) { ... }

    task build(dependsOn: doZip) << {
    }

    artifacts {
      archives doZip
    }


some-java-project
  build.gradle
  ------------
    apply plugin: 'war'
    configurations {
      includeContent // This is a custom configuration
    }
    dependency {
      includeContent project(':my-non-java-project')
    }

    task expandContent(type:Copy) {
      // Here is where I would like get hold of the all the files
      // belonging to the 'includeContent' configuration
      // But this is always turning out to be empty. Not sure how …
Run Code Online (Sandbox Code Playgroud)

build gradle

6
推荐指数
1
解决办法
3762
查看次数

标签 统计

build ×1

c# ×1

gradle ×1

outlook ×1

outlook-addin ×1

vsto ×1