Skip to content

Commit

Permalink
#9 Commented Directory.Build.props
Browse files Browse the repository at this point in the history
  • Loading branch information
iBrotNano committed Mar 7, 2023
1 parent ad3683b commit 890b4f1
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,38 +1,48 @@
<Project>
<PropertyGroup>
<!-- Here are the version used for the assemblies and the NuGet package.
The fix versions 4.7.1.1 or 4.7.11 are replaced with the real version by
the build server. -->
<PackageVersion>4.7.11</PackageVersion>
<FileVersion>4.7.1.1</FileVersion>
<InformationalVersion>4.7.11</InformationalVersion>
<AssemblyVersion>4.7.1.1</AssemblyVersion>
<!-- This is metadata about the package. It is used to pack the NuGet. -->
<Authors>Marcel Melzig</Authors>
<Description>Implements a test environment.</Description>
<Copyright>© Marcel Melzig</Copyright>
<PackageTags>test environment xunit</PackageTags>
<PackageTags>test environment xunit tdd</PackageTags>
<Title>Test Environment</Title>
<PackageIcon>Seat-Belt-256.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>Git</RepositoryType>
<PackageReleaseNotes>Initial version.</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Here some configuration for the development and the build of this project is done. -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1591</NoWarn>
<NeutralLanguage>en</NeutralLanguage>
<!-- Shows warnings for the source code to improve the quality. -->
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>Recommended</AnalysisMode>
<AnalysisLevel>latest</AnalysisLevel>
<!-- Saves the test results into a file. -->
<VSTestLogger>trx</VSTestLogger>
<VSTestResultsDirectory>$(MSBuildThisFileDirectory)target\tests</VSTestResultsDirectory>
<!-- Configuration for SourceLink. -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<PackageOutputPath>$(MSBuildThisFileDirectory)target\nugets\$(Configuration)</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1701;1702;1591</NoWarn>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>

<!-- Deterministic build on the build server. -->
<PropertyGroup Condition="'$(CONTINUOUS_INTEGRATION_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>True</Deterministic>
</PropertyGroup>

<!-- Creates a NuGet. -->
<PropertyGroup Condition="'$(CREATE_NUGET)' == 'true'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
Expand Down

0 comments on commit 890b4f1

Please sign in to comment.