Fix unset ZapRelocationType for fixup (#18589)
[platform/upstream/coreclr.git] / Tools / versioning.props
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   <PropertyGroup>
4     <BuildToolsVersioningPropsHasBeenImported>true</BuildToolsVersioningPropsHasBeenImported>
5
6     <Company Condition="'$(Company)' == ''">Microsoft Corporation</Company>
7     <Copyright Condition="'$(Copyright)' == ''">%A9 Microsoft Corporation.  All rights reserved.</Copyright>
8     <Description Condition="'$(Description)' == ''">$(AssemblyName)</Description>
9     <FileVersion Condition="'$(FileVersion)' == '' and '$(AssemblyFileVersion)' != ''">$(AssemblyFileVersion)</FileVersion>
10     <InformationalVersion Condition="'$(InformationalVersion)' == ''">$(AssemblyFileVersion)$(BuiltByString)</InformationalVersion>
11     <Product Condition="'$(Product)' == ''">Microsoft%AE .NET Framework</Product>
12     <AssemblyTitle Condition="'$(AssemblyTitle)' == ''">$(AssemblyName)</AssemblyTitle>
13     <!-- File passed to C# compiler that defines the mapping from source to GIT URL.  Created in versioning.targets --> 
14     <SourceLinkFilePath>$(BaseIntermediateOutputPath)source_link.json</SourceLinkFilePath>
15   </PropertyGroup>
16
17   <PropertyGroup Condition="'$(UseSourceLink)' == 'true' AND Exists('$(SourceLinkFilePath)')">
18     <!-- Defining this variable tells the C# compiler to use this as the /sourcelink option value. -->
19     <SourceLink>$(SourceLinkFilePath)</SourceLink>
20   </PropertyGroup>
21
22 </Project>