This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
LaunchDarkly.ServerSdk.csproj
63 lines (56 loc) · 3.15 KB
/
LaunchDarkly.ServerSdk.csproj
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
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--x-release-please-start-version-->
<Version>8.5.1</Version>
<!--x-release-please-end-->
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
single framework that we are testing; this allows us to test with older SDK
versions that would error out if they saw any newer target frameworks listed
here, even if we weren't running those. -->
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net462;net6.0</BuildFrameworks>
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
<!-- Note: whenever we add or remove supported target frameworks, we must update ServerDiagnosticStore.GetDotNetTargetFramework() -->
<DebugType>portable</DebugType>
<AssemblyName>LaunchDarkly.ServerSdk</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>LaunchDarkly.ServerSdk</PackageId>
<RootNamespace>LaunchDarkly.Sdk.Server</RootNamespace>
<LangVersion>7.3</LangVersion>
<Description>LaunchDarkly Server-Side .NET SDK</Description>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Company>LaunchDarkly</Company>
<Copyright>Copyright 2020 LaunchDarkly</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/launchdarkly/dotnet-server-sdk</PackageProjectUrl>
<RepositoryUrl>https://github.com/launchdarkly/dotnet-server-sdk</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- CopyLocalLockFileAssemblies causes dependency DLLs to be copied into the
build products, which is necessary for our documentation generation logic;
this doesn't affect what goes into the NuGet package. -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<!-- fail if XML comments are missing or invalid -->
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LaunchDarkly.Cache" Version="1.0.2" />
<PackageReference Include="LaunchDarkly.CommonSdk" Version="7.0.0" />
<PackageReference Include="LaunchDarkly.EventSource" Version="5.1.0" />
<PackageReference Include="LaunchDarkly.InternalSdk" Version="3.4.0" />
<PackageReference Include="LaunchDarkly.Logging" Version="2.0.0" />
<PackageReference Include="System.Collections.Immutable" Version="1.7.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462'">
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<!-- it's a built-in package in net6.0 -->
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AssemblyOriginatorKeyFile>../../../../LaunchDarkly.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.ServerSdk.xml</DocumentationFile>
</PropertyGroup>
</Project>