<IsTestProject Condition="$(MSBuildProjectFullPath.Contains('test')) and ($(MSBuildProjectName.EndsWith('.Tests')) or $(MSBuildProjectName.EndsWith('.TestBase')))">true</IsTestProject>
@ -51,6 +51,14 @@ Please see the following migration documents, if you are upgrading from v7.2:
## Community News
### ABP Community Talks 2023.5: Mobile Development with the ABP Framework

In this episode, we'll talk about Exploring Options for Mobile Development with the ABP Framework.
> Join us to explore the options for Mobile Development in ABP Framework on July 27, 2023, at 17:00 UTC. You can register from [here](https://kommunity.com/volosoft/events/abp-community-talks-20235-mobile-development-with-the-abp-framework-68e64e59).
### New ABP Community Posts
There are exciting articles contributed by the ABP community as always. I will highlight some of them here:
@ -18,7 +18,7 @@ public partial class EntityAction<TItem> : ComponentBase
internalboolHasPermission{get;set;}=true;
[Parameter]
publicstringText{get;set;}
publicstringText{get;set;}=default!;
[Parameter]
publicboolPrimary{get;set;}
@ -28,25 +28,25 @@ public partial class EntityAction<TItem> : ComponentBase
[Parameter]
[Obsolete("Use Visible to hide actions based on permissions. Check the permission yourself. It is more performant. This option might be removed in future versions.")]
@ -25,7 +25,7 @@ public class FileSystemBlobProvider : BlobProviderBase, ITransientDependency
thrownewBlobAlreadyExistsException($"Saving BLOB '{args.BlobName}' does already exists in the container '{args.ContainerName}'! Set {nameof(args.OverrideExisting)} if it should be overwritten.");