-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathLaunchDarkly.ServerSdk.Redis.csproj
More file actions
77 lines (71 loc) · 2.89 KB
/
Copy pathLaunchDarkly.ServerSdk.Redis.csproj
File metadata and controls
77 lines (71 loc) · 2.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--x-release-please-start-version-->
<Version>5.1.1</Version>
<!--x-release-please-end-->
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<AssemblyName>LaunchDarkly.ServerSdk.Redis</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>LaunchDarkly.ServerSdk.Redis</PackageId>
<LangVersion>7.3</LangVersion>
<Company>LaunchDarkly</Company>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Description>LaunchDarkly Server-Side .NET SDK Redis Integration</Description>
<Copyright>Copyright 2018 LaunchDarkly</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/launchdarkly/dotnet-server-sdk-redis</PackageProjectUrl>
<RepositoryUrl>https://github.com/launchdarkly/dotnet-server-sdk-redis</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RootNamespace>LaunchDarkly.Sdk.Server.Integrations</RootNamespace>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Configurations>Debug;Release;DebugLocalReferences</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'DebugLocalReferences'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StackExchange.Redis" Version="[2.0.513,]" />
</ItemGroup>
<!-- Use PackageReference in Debug/Release -->
<ItemGroup Condition="'$(Configuration)' != 'DebugLocalReferences'">
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0.0, 9.0.0)" />
</ItemGroup>
<!-- Use ProjectReference in DebugLocalReferences -->
<ItemGroup Condition="'$(Configuration)' == 'DebugLocalReferences'">
<ProjectReference Include="../../sdk/server/src/LaunchDarkly.ServerSdk.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\CHANGELOG.md">
<Link>CHANGELOG.md</Link>
<Pack>false</Pack>
</None>
<None Include="..\CONTRIBUTING.md">
<Link>CONTRIBUTING.md</Link>
<Pack>false</Pack>
</None>
<None Include="..\docfx.json">
<Link>docfx.json</Link>
<Pack>false</Pack>
</None>
<None Include="..\README.md">
<Link>README.md</Link>
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\SECURITY.md">
<Link>SECURITY.md</Link>
<Pack>false</Pack>
</None>
</ItemGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.ServerSdk.Redis.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../../LaunchDarkly.Redis.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>