-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
36 lines (35 loc) · 1.39 KB
/
Directory.Build.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
<Project>
<Import Project="dependencies.props" />
<PropertyGroup>
<VersionPrefix>1</VersionPrefix>
<Version>$(VersionPrefix).3.0</Version>
<FileVersion>$(Version)</FileVersion>
<Company>René Pacios</Company>
<Copyright>Copyright © $(Company) - $([System.DateTime]::Now.Year)</Copyright>
</PropertyGroup>
<!--<PropertyGroup>
<LangVersion>8.0</LangVersion>
</PropertyGroup>-->
<PropertyGroup>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<WarningsAsErrors></WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!--<DebugType>embedded</DebugType>-->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup >
<!-- Condition="'$(GITHUB_ACTIONS)' == 'true'" -->
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworkMonikerAssemblyAttributesPath>$([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)'))</TargetFrameworkMonikerAssemblyAttributesPath>
</PropertyGroup>
<ItemGroup>
<!-- https://github.com/dotnet/sourcelink/issues/572 -->
<EmbeddedFiles Include="$(GeneratedAssemblyInfoFile)"/>
</ItemGroup>
</Project>