|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <!--x-release-please-start-version--> |
5 | | - <Version>0.5.0</Version> |
6 | | - <!--x-release-please-end--> |
7 | | - <!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a |
8 | | - single framework that we are testing; this allows us to test with older SDK |
9 | | - versions that would error out if they saw any newer target frameworks listed |
10 | | - here, even if we weren't running those. --> |
11 | | - <BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks> |
12 | | - <TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks> |
13 | | - |
14 | | - <DebugType>portable</DebugType> |
15 | | - <AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName> |
16 | | - <OutputType>Library</OutputType> |
17 | | - <PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId> |
18 | | - <RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace> |
19 | | - <LangVersion>7.3</LangVersion> |
20 | | - <Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description> |
21 | | - <Authors>LaunchDarkly</Authors> |
22 | | - <Owners>LaunchDarkly</Owners> |
23 | | - <Company>LaunchDarkly</Company> |
24 | | - <Authors>LaunchDarkly</Authors> |
25 | | - <Owners>LaunchDarkly</Owners> |
26 | | - <Copyright>Copyright 2022 LaunchDarkly</Copyright> |
27 | | - <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
28 | | - <PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl> |
29 | | - <RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl> |
30 | | - <RepositoryBranch>main</RepositoryBranch> |
31 | | - <IncludeSymbols>true</IncludeSymbols> |
32 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
33 | | - |
34 | | - <!-- fail if XML comments are missing or invalid --> |
35 | | - <WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors> |
36 | | - </PropertyGroup> |
37 | | - |
38 | | - <ItemGroup Condition="'$(Configuration)'!='Release'"> |
39 | | - <InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" /> |
40 | | - </ItemGroup> |
41 | | - |
42 | | - <ItemGroup> |
43 | | - <PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" /> |
44 | | - <PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" /> |
45 | | - </ItemGroup> |
46 | | - |
47 | | - <PropertyGroup> |
48 | | - <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile> |
49 | | - </PropertyGroup> |
50 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <!--x-release-please-start-version--> |
| 5 | + <Version>0.6.0</Version> |
| 6 | + <!--x-release-please-end--> |
| 7 | + <!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a |
| 8 | + single framework that we are testing; this allows us to test with older SDK |
| 9 | + versions that would error out if they saw any newer target frameworks listed |
| 10 | + here, even if we weren't running those. --> |
| 11 | + <BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks> |
| 12 | + <TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks> |
| 13 | + |
| 14 | + <DebugType>portable</DebugType> |
| 15 | + <AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName> |
| 16 | + <OutputType>Library</OutputType> |
| 17 | + <PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId> |
| 18 | + <RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace> |
| 19 | + <LangVersion>7.3</LangVersion> |
| 20 | + <Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description> |
| 21 | + <Authors>LaunchDarkly</Authors> |
| 22 | + <Owners>LaunchDarkly</Owners> |
| 23 | + <Company>LaunchDarkly</Company> |
| 24 | + <Authors>LaunchDarkly</Authors> |
| 25 | + <Owners>LaunchDarkly</Owners> |
| 26 | + <Copyright>Copyright 2022 LaunchDarkly</Copyright> |
| 27 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 28 | + <PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl> |
| 29 | + <RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl> |
| 30 | + <RepositoryBranch>main</RepositoryBranch> |
| 31 | + <IncludeSymbols>true</IncludeSymbols> |
| 32 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 33 | + |
| 34 | + <!-- fail if XML comments are missing or invalid --> |
| 35 | + <WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors> |
| 36 | + </PropertyGroup> |
| 37 | + |
| 38 | + <ItemGroup Condition="'$(Configuration)'!='Release'"> |
| 39 | + <InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" /> |
| 44 | + <PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <PropertyGroup> |
| 48 | + <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile> |
| 49 | + </PropertyGroup> |
| 50 | +</Project> |
0 commit comments