Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
Latest commit
57 lines (53 loc) · 3.27 KB
/
Copy pathDirectory.Build.props
File metadata and controls
57 lines (53 loc) · 3.27 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
52
53
54
55
56
57
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<DebugType>portable</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<AnalysisMode>Recommended</AnalysisMode>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591;CA1707;CA1848;CA1859</NoWarn>
<Version>10.0.1</Version>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>ManagedCode</Authors>
<Company>ManagedCode</Company>
<Copyright>Copyright © 2021-$([System.DateTime]::Now.ToString(`yyyy`)) ManagedCode SAS</Copyright>
<Product>ManagedCode.FeatureChecker</Product>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/managedcode/FeatureChecker</RepositoryUrl>
<PackageProjectUrl>https://github.com/managedcode/FeatureChecker</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<DescriptionCondition="'$(Description)' == ''">Provider-agnostic .NET feature flag SDK for feature management, targeting, segments, percentage rollouts, variants, remote config, JSON snapshots, and Microsoft.Extensions integration.</Description>
<PackageTags>managedcode;feature-flags;feature-toggle;feature-management;feature-checker;dotnet;csharp;targeting;segments;rollout;percentage-rollout;variants;remote-config;ab-testing;json;microsoft-extensions</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EnablePackageValidation>true</EnablePackageValidation>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroupCondition="'$(GITHUB_ACTIONS)' == 'true' or '$(CI)' == 'true' or '$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroupCondition="'$(IsPackable)' == 'true'">
<NoneInclude="$(MSBuildThisFileDirectory)README.md"Pack="true"PackagePath="\"Link="README.md"Visible="false" />
<NoneInclude="$(MSBuildThisFileDirectory)LICENSE"Pack="true"PackagePath="\"Link="LICENSE"Visible="false" />
<NoneInclude="$(MSBuildThisFileDirectory)logo.png"Pack="true"PackagePath="\"Link="logo.png"Visible="false" />
</ItemGroup>
<ItemGroup>
<AdditionalFilesInclude="$(MSBuildThisFileDirectory)CodeMetricsConfig.txt"Condition="Exists('$(MSBuildThisFileDirectory)CodeMetricsConfig.txt')" />
<PackageReferenceInclude="DotNet.ReproducibleBuilds"PrivateAssets="all" />
<PackageReferenceInclude="Meziantou.Analyzer"PrivateAssets="all" />
<PackageReferenceInclude="Microsoft.SourceLink.GitHub"PrivateAssets="all" />
<PackageReferenceInclude="Roslynator.Analyzers"PrivateAssets="all" />
</ItemGroup>
</Project>