-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
5ed9336
commit d7ed1f4
Showing
4 changed files
with
45 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"src/OpenFeature.Contrib.Hooks.Otel": "0.1.0", | ||
"src/OpenFeature.Contrib.Providers.Flagd": "0.1.0", | ||
"src/OpenFeature.Contrib.Providers.Flagd": "0.1.1", | ||
"src/OpenFeature.Contrib.Providers.GOFeatureFlag": "0.1.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 35 additions & 35 deletions
70
src/OpenFeature.Contrib.Providers.Flagd/OpenFeature.Contrib.Providers.Flagd.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId> | ||
<VersionNumber>0.1.0</VersionNumber> <!--x-release-please-version --> | ||
<Version>$(VersionNumber)</Version> | ||
<AssemblyVersion>$(VersionNumber)</AssemblyVersion> | ||
<FileVersion>$(VersionNumber)</FileVersion> | ||
<Description>flagd provider for .NET</Description> | ||
<PackageProjectUrl>https://openfeature.dev</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl> | ||
<Authors>Todd Baert</Authors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- make the internal methods visble to our test project --> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' --> | ||
<!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos --> | ||
<Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" /> | ||
<PackageReference Include="Google.Protobuf" Version="3.21.12" /> | ||
<PackageReference Include="Grpc.Net.Client" Version="2.51.0" /> | ||
<PackageReference Include="Grpc.Tools" Version="2.51.0"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId> | ||
<VersionNumber>0.1.1</VersionNumber> <!--x-release-please-version --> | ||
<Version>$(VersionNumber)</Version> | ||
<AssemblyVersion>$(VersionNumber)</AssemblyVersion> | ||
<FileVersion>$(VersionNumber)</FileVersion> | ||
<Description>flagd provider for .NET</Description> | ||
<PackageProjectUrl>https://openfeature.dev</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl> | ||
<Authors>Todd Baert</Authors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- make the internal methods visble to our test project --> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' --> | ||
<!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos --> | ||
<Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" /> | ||
<PackageReference Include="Google.Protobuf" Version="3.21.12" /> | ||
<PackageReference Include="Grpc.Net.Client" Version="2.51.0" /> | ||
<PackageReference Include="Grpc.Tools" Version="2.51.0"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.0 | ||
0.1.1 |