|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
5 | 5 | <ImplicitUsings>disable</ImplicitUsings> |
6 | 6 | <Nullable>disable</Nullable> |
7 | 7 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
|
14 | 14 | <PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance> |
15 | 15 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
16 | 16 | <Title>FeatureOne</Title> |
17 | | - <Authors>Tech Ninja Labs</Authors> |
18 | | - <Company>Tech Ninja Labs</Company> |
| 17 | + <Authors>Code Shayk</Authors> |
| 18 | + <Company>Code Shayk</Company> |
19 | 19 | <Product>FeatureOne</Product> |
20 | 20 | <Description>.Net library to implement feature toggles.</Description> |
21 | | - <Copyright>Copyright (c) 2024 Tech Ninja Labs</Copyright> |
| 21 | + <Copyright>Copyright (c) 2024 Code Shayk</Copyright> |
22 | 22 | <PackageReadmeFile>README.md</PackageReadmeFile> |
23 | | - <RepositoryUrl>https://github.com/TechNinjaLabs/FeatureOne</RepositoryUrl> |
| 23 | + <RepositoryUrl>https://github.com/CodeShayk/FeatureOne</RepositoryUrl> |
24 | 24 | <RepositoryType>git</RepositoryType> |
25 | 25 | <PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; net8.0; featureOne</PackageTags> |
26 | | - <Version>4.0.0</Version> |
| 26 | + <Version>5.0.0</Version> |
27 | 27 | <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
28 | 28 | <PackageIcon>ninja-icon-16.png</PackageIcon> |
29 | 29 | <PackageReleaseNotes> |
30 | | - Release Notes v4.0.0 Core Functionality :- Targets .Net 8.0 |
| 30 | + Release Notes v5.0.0 Core Functionality :- Targets .Net 9.0 |
31 | 31 | Library to Implement Feature Toggles to hide/show program features. Does not contain storage provider. |
32 | 32 | - Provides Out of box Simple and Regex toggle conditions. |
33 | 33 | - Provides extensibility for custom implementations ie. |
|
38 | 38 | </PropertyGroup> |
39 | 39 |
|
40 | 40 | <ItemGroup> |
41 | | - <PackageReference Include="System.Runtime.Caching" Version="8.0.0" /> |
42 | | - <PackageReference Include="System.Text.Json" Version="8.0.3" /> |
| 41 | + <PackageReference Include="System.Runtime.Caching" Version="9.0.0" /> |
| 42 | + <PackageReference Include="System.Text.Json" Version="9.0.0" /> |
43 | 43 | </ItemGroup> |
44 | 44 |
|
45 | 45 | <ItemGroup> |
|
0 commit comments