Skip to content

Instantly share code, notes, and snippets.

@uzbekdev1
Created July 31, 2025 08:44
Show Gist options
  • Select an option

  • Save uzbekdev1/6f149169d73cf19b8aefbd22994f9aee to your computer and use it in GitHub Desktop.

Select an option

Save uzbekdev1/6f149169d73cf19b8aefbd22994f9aee to your computer and use it in GitHub Desktop.
fx level conditionns
#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