-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (31 loc) · 1.67 KB
/
Copy pathDirectory.Build.props
File metadata and controls
37 lines (31 loc) · 1.67 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
<Project>
<PropertyGroup>
<_ContinuousIntegrationBuild Condition="'$(TF_BUILD)' == 'true' or '$(GITHUB_ACTIONS)' == 'true' or '$(GITLAB_CI)' == 'true'">True</_ContinuousIntegrationBuild>
<LangVersion>12</LangVersion>
<TreatWarningsAsErrors Condition="'$(Configuration)' != 'Debug'">true</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<Features>strict</Features>
<AnalysisLevel>latest</AnalysisLevel>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<NoWarn>$(NoWarn);CA1014;CA1031;xUnit1026</NoWarn>
<ReportAnalyzer>true</ReportAnalyzer>
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
<RestoreSources>https://api.nuget.org/v3/index.json</RestoreSources>
</PropertyGroup>
<!-- Package attributes -->
<PropertyGroup>
<Authors>Vasyl Vdovychenko</Authors>
<Company>Vasyl Vdovychenko</Company>
<PackageProjectUrl>https://github.com/mrviduus/xUnitV3LoadFramework</PackageProjectUrl>
<RepositoryUrl>https://github.com/mrviduus/xUnitV3LoadFramework.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netcoreapp2.1'">
<NoWarn>$(NoWarn);8600;8601;8602;8603;8604;8619;8767</NoWarn>
</PropertyGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/" />
</ItemGroup>
</Project>