-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathFlagsmith.FlagsmithClient.csproj
More file actions
42 lines (37 loc) · 2.25 KB
/
Flagsmith.FlagsmithClient.csproj
File metadata and controls
42 lines (37 loc) · 2.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8</LangVersion>
<DefaultItemExcludes>$(DefaultItemExcludes);example/**;</DefaultItemExcludes>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PackageId>Flagsmith</PackageId>
<Title>Flagsmith</Title>
<Version>9.0.1</Version>
<Authors>flagsmith</Authors>
<Company>Flagsmith</Company>
<PackageDescription>Client SDK for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://flagsmith.com/</PackageDescription>
<Copyright>Copyright © 2023 Bullet Train Ltd</Copyright>
<PackageProjectUrl>https://flagsmith.com/</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes>Singleton HTTP client</PackageReleaseNotes>
<PackageTags>feature flags remote config toggles</PackageTags>
<RepositoryUrl>https://github.com/Flagsmith/flagsmith-dotnet-client</RepositoryUrl>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
<PackageReference Include="Polly" Version="7.2.3"/>
<PackageReference Include="Teronis.MSBuild.Packaging.ProjectBuildInPackage" Version="1.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<!-- currently we duplicate the semver dependency here from Engine project -->
<!-- TODO: build the Engine at build time and reference it using a PackageReference -->
<PackageReference Include="semver" Version="2.3.0"/>
<ProjectReference Include="..\Flagsmith.Engine\Flagsmith.Engine.csproj" PrivateAssets="all"/>
<None Include="..\LICENSE" Pack="true" PackagePath="" visible="false"/>
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>