Created
July 31, 2025 08:44
-
-
Save uzbekdev1/6f149169d73cf19b8aefbd22994f9aee to your computer and use it in GitHub Desktop.
fx level conditionns
This file contains hidden or 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
| #if NET8_0 | |
| // Code specific to .NET 8 | |
| #elif NET6_0 | |
| // Code specific to .NET 6 | |
| #else | |
| // Default code for other versions | |
| #endif | |
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | |
| ... | |
| </ItemGroup> | |
| <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | |
| ... | |
| </ItemGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment