-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (22 loc) · 883 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (22 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<PackageProjectUrl>https://github.com/yuanrui/CodeGenerator</PackageProjectUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.3.1</Version>
</PropertyGroup>
<!-- reproducible build -->
<PropertyGroup Condition="'$(Framework)' == 'NET40'">
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>