|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId> |
5 | | - <VersionNumber>0.1.0</VersionNumber> <!--x-release-please-version --> |
6 | | - <Version>$(VersionNumber)</Version> |
7 | | - <AssemblyVersion>$(VersionNumber)</AssemblyVersion> |
8 | | - <FileVersion>$(VersionNumber)</FileVersion> |
9 | | - <Description>flagd provider for .NET</Description> |
10 | | - <PackageProjectUrl>https://openfeature.dev</PackageProjectUrl> |
11 | | - <RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl> |
12 | | - <Authors>Todd Baert</Authors> |
13 | | - </PropertyGroup> |
14 | | - |
15 | | - <ItemGroup> |
16 | | - <!-- make the internal methods visble to our test project --> |
17 | | - <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
18 | | - <_Parameter1>$(MSBuildProjectName).Test</_Parameter1> |
19 | | - </AssemblyAttribute> |
20 | | - </ItemGroup> |
21 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net462'"> |
22 | | - <PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" /> |
23 | | - </ItemGroup> |
24 | | - <ItemGroup> |
25 | | - <!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' --> |
26 | | - <!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos --> |
27 | | - <Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" /> |
28 | | - <PackageReference Include="Google.Protobuf" Version="3.21.12" /> |
29 | | - <PackageReference Include="Grpc.Net.Client" Version="2.51.0" /> |
30 | | - <PackageReference Include="Grpc.Tools" Version="2.51.0"> |
31 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
32 | | - <PrivateAssets>all</PrivateAssets> |
33 | | - </PackageReference> |
34 | | - </ItemGroup> |
35 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId> |
| 5 | + <VersionNumber>0.1.1</VersionNumber> <!--x-release-please-version --> |
| 6 | + <Version>$(VersionNumber)</Version> |
| 7 | + <AssemblyVersion>$(VersionNumber)</AssemblyVersion> |
| 8 | + <FileVersion>$(VersionNumber)</FileVersion> |
| 9 | + <Description>flagd provider for .NET</Description> |
| 10 | + <PackageProjectUrl>https://openfeature.dev</PackageProjectUrl> |
| 11 | + <RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl> |
| 12 | + <Authors>Todd Baert</Authors> |
| 13 | + </PropertyGroup> |
| 14 | + |
| 15 | + <ItemGroup> |
| 16 | + <!-- make the internal methods visble to our test project --> |
| 17 | + <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 18 | + <_Parameter1>$(MSBuildProjectName).Test</_Parameter1> |
| 19 | + </AssemblyAttribute> |
| 20 | + </ItemGroup> |
| 21 | + <ItemGroup Condition="'$(TargetFramework)' == 'net462'"> |
| 22 | + <PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" /> |
| 23 | + </ItemGroup> |
| 24 | + <ItemGroup> |
| 25 | + <!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' --> |
| 26 | + <!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos --> |
| 27 | + <Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" /> |
| 28 | + <PackageReference Include="Google.Protobuf" Version="3.21.12" /> |
| 29 | + <PackageReference Include="Grpc.Net.Client" Version="2.51.0" /> |
| 30 | + <PackageReference Include="Grpc.Tools" Version="2.51.0"> |
| 31 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 32 | + <PrivateAssets>all</PrivateAssets> |
| 33 | + </PackageReference> |
| 34 | + </ItemGroup> |
| 35 | +</Project> |
0 commit comments