-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathGlobal.props
More file actions
41 lines (35 loc) · 1.63 KB
/
Copy pathGlobal.props
File metadata and controls
41 lines (35 loc) · 1.63 KB
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
<Project>
<PropertyGroup>
<!-- we'll do our own versioning -->
<GitVersion>false</GitVersion>
<EnableGitInfoGenerator Condition="'$(EnableGitInfoGenerator)' == ''">false</EnableGitInfoGenerator>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<NullabilityInfoContextSupport>True</NullabilityInfoContextSupport>
<ErrorOnDuplicatePublishOutputFiles>False</ErrorOnDuplicatePublishOutputFiles>
<CheckEolWorkloads>false</CheckEolWorkloads>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SecRandom.SimpleGitInfoGenerator" Version="1.0.1.3"
PrivateAssets="All" IncludeAssets="build;analyzers"/>
<Compile Include="$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)'))/AssemblyInfo.cs"
Condition="'$(EnableGitInfoGenerator)' == 'true'">
<LinkBase>Properties</LinkBase>
</Compile>
</ItemGroup>
<PropertyGroup>
<GitVersion_UpdateAssemblyInfo>true</GitVersion_UpdateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.301" PrivateAssets="All"/>
</ItemGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
</Project>