diff --git a/AElf.ExceptionHandler.ABP/AElf.ExceptionHandler.ABP.csproj b/AElf.ExceptionHandler.ABP/AElf.ExceptionHandler.ABP.csproj index 910d96d..2397500 100644 --- a/AElf.ExceptionHandler.ABP/AElf.ExceptionHandler.ABP.csproj +++ b/AElf.ExceptionHandler.ABP/AElf.ExceptionHandler.ABP.csproj @@ -1,9 +1,19 @@  + Dependency + AElf.ExceptionHandler.ABP + AElf ExceptionHandler ABP + AElf + An ExceptionHandler in AOP in the ABP Framework. + aop;abp;module net8.0 enable enable + https://github.com/AElfProject/AElf.ExceptionHandler.ABP + git + https://github.com/AElfProject/AElf.ExceptionHandler.ABP + AElf.ExceptionHandler.ABP @@ -11,4 +21,14 @@ + + README.md + LICENSE + + + + + + + diff --git a/README.md b/README.md index 5efdd43..e14af9d 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,30 @@ -# Project Name - -Brief Project Description +# AElf.ExceptionHandler.ABP - [About The Project](#about-the-project) - [Getting Started](#getting-started) - - [Subsection 1](#subsection-1) -- [Examples](#examples) - - [Example 1](#example-1) - [Contributing](#contributing) - [License](#license) ## About The Project -Extensive Project Description +An ABP module for Exception handling through the [AElf.ExceptionHandler](https://www.nuget.org/packages/AElf.ExceptionHandler). + +ABP version: 8.0.5 ## Getting Started -### Subsection 1 +Add the following dependency to your project's Module class: -Before installing, you need to install... Run the following command to install it in the current project: +```cs +using AElf.ExceptionHandler; -```sh -dotnet add package Something +[DependsOn( + typeof(AOPExceptionModule) +)] +public class MyTemplateModule : AbpModule ``` -## Examples - -Description for examples - -### Example 1 - -To create new context, simply run a query like this: - -```cs -var context = new Context(); -``` +This will automatically register the AOPException module and setup your project for AOP Exception Handling. ## Contributing