我认为我今天的搜索技巧很糟糕,但我想知道我的加载项中运行的Office Outlook版本是什么?
即,我需要知道我的加载项是否与Outlook 2007或2010一起运行
是否有任何API可以用来查找当前的Outlook版本?
谢谢,哈莎
我有一个多项目设置.我创建了一个非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)