-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
51 lines (47 loc) · 2.46 KB
/
Directory.Build.props
File metadata and controls
51 lines (47 loc) · 2.46 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
42
43
44
45
46
47
48
49
50
51
<Project>
<!--
Shared MSBuild settings for every project in the repository.
Packaging metadata applies to packable projects only (tests/samples set IsPackable=false).
-->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<Deterministic>true</Deterministic>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- NuGet package metadata (shared). Individual packable projects set PackageId/Description. -->
<PropertyGroup>
<Authors>TestingBot</Authors>
<Company>TestingBot</Company>
<Product>TestingBot .NET SDK</Product>
<Copyright>Copyright © TestingBot</Copyright>
<PackageProjectUrl>https://github.com/testingbot/testingbot-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/testingbot/testingbot-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>testingbot;selenium;appium;webdriver;testing;cross-browser;automation;ci;cypress</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Validates cross-target-framework API consistency at pack time; a baseline version is added
after the first release to also guard against cross-version breaking changes. -->
<EnablePackageValidation>true</EnablePackageValidation>
<!-- Default version for local/dev builds. The release workflow overrides this from the git tag
(e.g. v1.2.3 -> 1.2.3) via -p:Version=. -->
<VersionPrefix>1.0.0</VersionPrefix>
</PropertyGroup>
<!-- SourceLink only runs in CI (needs a real git remote); keeps local builds quiet. -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' != 'true'">
<EnableSourceLink>false</EnableSourceLink>
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
<DeterministicSourcePaths>false</DeterministicSourcePaths>
</PropertyGroup>
</Project>