-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed nesting of 'Directory.Build.props' files
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project> | ||
<!-- Import common poperties from a folder up (see https://github.com/dotnet/msbuild/issues/2456) --> | ||
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" /> | ||
|
||
<PropertyGroup> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\..\DomainResult.snk</AssemblyOriginatorKeyFile> | ||
|
||
<Deterministic>true</Deterministic> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageTags>actionresult;domainresult;webapi;service</PackageTags> | ||
|
||
<!-- Generate XML docs for all targets https://stackoverflow.com/a/47118584/968003 --> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
|
||
<!-- Below is commented out till https://github.com/coverlet-coverage/coverlet/issues/900 is fixed --> | ||
<!-- <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> --> | ||
|
||
<!-- SourceLink settings (source debugging experiences) --> | ||
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link --> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
|
||
<!-- Prefix for tag names MinVer --> | ||
<MinVerTagPrefix>v</MinVerTagPrefix> | ||
|
||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- SourceLink settings (source debugging experiences) --> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
</Project> |