-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FliptProvider: Removed wrong code change in a different project
Signed-off-by: Andrei de la Cruz <[email protected]>
- Loading branch information
1 parent
fd7210a
commit 328c5a1
Showing
1 changed file
with
24 additions
and
28 deletions.
There are no files selected for viewing
52 changes: 24 additions & 28 deletions
52
src/OpenFeature.Contrib.Providers.Flagsmith/OpenFeature.Contrib.Providers.Flagsmith.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,31 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>OpenFeature.Contrib.Providers.Flagsmith</PackageId> | ||
<VersionNumber>0.2.0</VersionNumber> <!--x-release-please-version --> | ||
<VersionPrefix>$(VersionNumber)</VersionPrefix> | ||
<AssemblyVersion>$(VersionNumber)</AssemblyVersion> | ||
<FileVersion>$(VersionNumber)</FileVersion> | ||
<Description>Flagsmith provider for .NET</Description> | ||
<Authors>Vladimir Petrusevici</Authors> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PackageId>OpenFeature.Contrib.Providers.Flagsmith</PackageId> | ||
<VersionNumber>0.2.0</VersionNumber> <!--x-release-please-version --> | ||
<VersionPrefix>$(VersionNumber)</VersionPrefix> | ||
<AssemblyVersion>$(VersionNumber)</AssemblyVersion> | ||
<FileVersion>$(VersionNumber)</FileVersion> | ||
<Description>Flagsmith provider for .NET</Description> | ||
<Authors>Vladimir Petrusevici</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> | ||
<!-- make the internal methods visble to our test project --> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Flagsmith" Version="5.3.2" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Flagsmith" Version="5.3.2"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net5.0'"> | ||
<PackageReference Include="System.Text.Json" Version="8.0.4" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net5.0'"> | ||
<PackageReference Include="System.Text.Json" Version="8.0.4"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<PackageReference Include="Flipt" Version="0.0.2" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
</Project> |