-
Notifications
You must be signed in to change notification settings - Fork 27
/
TugDSC.sharedasm.props
60 lines (51 loc) · 2.46 KB
/
TugDSC.sharedasm.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- We define this flag to allow us to guard against multiple imports -->
<TugDSC_sharedasm_props>true</TugDSC_sharedasm_props>
</PropertyGroup>
<!--
- References:
- * https://github.com/dotnet/sdk/issues/2#issuecomment-238368991
-->
<Import Project="$(MSBuildThisFileDirectory)/TugDSC.common.props"
Condition="'$(TugDSC_common_props)' == ''" />
<PropertyGroup>
<!-- Versioning - base is static, build is computed by CI -->
<BuildNum Condition="$(BuildNum)==''">0</BuildNum>
<CommonVersion>0.7.0.$(BuildNum)</CommonVersion>
<AssemblyVersion>$(CommonVersion)</AssemblyVersion>
<FileVersion>$(CommonVersion)</FileVersion>
<Version>$(CommonVersion)-ea</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(SharedSourceDir)/SharedAssemblyInfo.cs" />
<!--
<Compile Include="$(SharedSourceDir)/SharedAssemblyVersionInfo.cs" />
-->
<Compile Include="$(SharedSourceDir)/SharedGlobalSuppressions.cs" />
</ItemGroup>
<!--
- We disable the generation of these by MSBuild because we pull in common
- manifest properties from shared source files which are pulled in above
-->
<PropertyGroup>
<!-- These need to be defined in the project-specific build file -->
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
</PropertyGroup>
<PropertyGroup>
<!-- These are defined globally in a shared source file - we don't define these
in build configuration properties because not all of them support that. -->
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
</PropertyGroup>
<PropertyGroup>
<!-- These are computed dynamically -->
<GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>true</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>true</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyConfigurationAttribute>true</GenerateAssemblyConfigurationAttribute>
</PropertyGroup>
</Project>