|
14 | 14 | <!-- File version reflects actual version number without prelease since that not allowed in its struct --> |
15 | 15 | <FileVersion>$(CurrentAssemblyFileVersion)</FileVersion> |
16 | 16 |
|
17 | | - <Authors></Authors> |
18 | | - <Company></Company> |
19 | | - <NeutralLanguage></NeutralLanguage> |
20 | | - <AssemblyTitle></AssemblyTitle> |
21 | | - <Description></Description> |
22 | | - <Copyright></Copyright> |
23 | 17 | <DotNetCoreOnly></DotNetCoreOnly> |
24 | | - <DoSourceLink></DoSourceLink> |
25 | 18 |
|
26 | 19 |
|
27 | 20 |
|
28 | 21 |
|
29 | 22 |
|
| 23 | + <!-- 'dotnet xunit' does a build but has no way to pass properties or prevent build so we snoop for TRAVIS here |
| 24 | + Ideally we handle this in the FAKE script (which we do for 'dotnet build') |
| 25 | + TODO too lazy to write and test a <CHOOSE> |
| 26 | + --> |
| 27 | + <DotNetCoreOnly Condition="'$(TRAVIS)'=='true'">1</DotNetCoreOnly> |
| 28 | + <DotNetCoreOnly Condition="'$(TRAVIS)'==''"></DotNetCoreOnly> |
| 29 | + |
| 30 | + <DoSourceLink></DoSourceLink> |
30 | 31 | <SignAssembly>true</SignAssembly> |
31 | 32 | <AssemblyOriginatorKeyFile Condition="'$(DotNetCoreOnly)'==''">..\..\build\keys\keypair.snk</AssemblyOriginatorKeyFile> |
32 | 33 | <GenerateDocumentationFile Condition="'$(DotNetCoreOnly)'==''">true</GenerateDocumentationFile> |
33 | 34 | <NoWarn>1591,1572,1571,1573,1587,1570</NoWarn> |
34 | 35 | <Prefer32Bit>false</Prefer32Bit> |
35 | 36 | <DefineConstants Condition="'$(TargetFramework)'=='netstandard1.3' OR '$(DotNetCoreOnly)'=='1'">$(DefineConstants);DOTNETCORE</DefineConstants> |
36 | 37 | <DebugType Condition="'$(DotNetCoreOnly)'==''">embedded</DebugType> |
| 38 | + <DebugType>embedded</DebugType> |
37 | 39 | <SourceLink Condition="'$(DoSourceLink)'!=''">$(BaseIntermediateOutputPath)\sl-$(MsBuildProjectName)-$(TargetFramework).json</SourceLink> |
38 | 40 | <RepoUri>https://raw.githubusercontent.com/elastic/elasticsearch-net</RepoUri> |
39 | 41 | </PropertyGroup> |
|
0 commit comments