Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9200
Modified Files:
Spring.Aop.2005.csproj
Log Message:
Update to Common.Logging 1.2
Add Logging advice
Refactoring of ExceptionHandlingAdvice
start of retry advice
misc improvements to spring.aop
Index: Spring.Aop.2005.csproj
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Spring.Aop.2005.csproj,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** Spring.Aop.2005.csproj 14 Sep 2007 15:45:50 -0000 1.35
--- Spring.Aop.2005.csproj 8 Oct 2007 22:04:51 -0000 1.36
***************
*** 267,270 ****
--- 267,271 ----
<SubType>Code</SubType>
</Compile>
+ <Compile Include="Aop\ITargetTypeAware.cs" />
<Compile Include="Aop\IThrowsAdvice.cs">
<SubType>Code</SubType>
***************
*** 379,382 ****
--- 380,384 ----
<SubType>Code</SubType>
</Compile>
+ <Compile Include="Aspects\AbstractExceptionHandlerAdvice.cs" />
<Compile Include="Aspects\Cache\CacheAspect.cs" />
<Compile Include="Aspects\Cache\BaseCacheAdvice.cs" />
***************
*** 387,397 ****
<Compile Include="Aspects\Cache\InvalidateCacheAdvisor.cs" />
<Compile Include="Aspects\Cache\InvalidateCacheAdvice.cs" />
- <Compile Include="Aspects\Exceptions\AbstractExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\ExceptionHandlerAdvice.cs" />
- <Compile Include="Aspects\Exceptions\IExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\LogExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\ReturnValueExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\SwallowExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\TranslationExceptionHandler.cs" />
<Compile Include="AssemblyInfo.cs">
<SubType>Code</SubType>
--- 389,403 ----
<Compile Include="Aspects\Cache\InvalidateCacheAdvisor.cs" />
<Compile Include="Aspects\Cache\InvalidateCacheAdvice.cs" />
<Compile Include="Aspects\Exceptions\ExceptionHandlerAdvice.cs" />
<Compile Include="Aspects\Exceptions\LogExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\ReturnValueExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\SwallowExceptionHandler.cs" />
<Compile Include="Aspects\Exceptions\TranslationExceptionHandler.cs" />
+ <Compile Include="Aspects\Logging\AbstractLoggingAdvice.cs" />
+ <Compile Include="Aspects\Logging\SimpleLoggingAdvice.cs" />
+ <Compile Include="Aspects\ParsedAdviceExpression.cs" />
+ <Compile Include="Aspects\RetryAdvice.cs" />
+ <Compile Include="Aspects\AbstractExceptionHandler.cs" />
+ <Compile Include="Aspects\IExceptionHandler.cs" />
<Compile Include="AssemblyInfo.cs">
<SubType>Code</SubType>
***************
*** 415,418 ****
--- 421,427 ----
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <Folder Include="Aspects\Common\" />
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
|