springnet-commits Mailing List for Spring Framework .NET (Page 44)
Brought to you by:
aseovic,
markpollack
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(33) |
Aug
(163) |
Sep
(491) |
Oct
(289) |
Nov
(336) |
Dec
(84) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(227) |
Feb
(413) |
Mar
(128) |
Apr
(232) |
May
(92) |
Jun
(299) |
Jul
(386) |
Aug
(228) |
Sep
(237) |
Oct
(426) |
Nov
(325) |
Dec
(405) |
2006 |
Jan
(315) |
Feb
(311) |
Mar
(152) |
Apr
(177) |
May
(443) |
Jun
(92) |
Jul
(88) |
Aug
(80) |
Sep
(288) |
Oct
(515) |
Nov
(1049) |
Dec
(440) |
2007 |
Jan
(179) |
Feb
(406) |
Mar
(294) |
Apr
(80) |
May
(432) |
Jun
(242) |
Jul
(452) |
Aug
(710) |
Sep
(206) |
Oct
(240) |
Nov
(65) |
Dec
(227) |
2008 |
Jan
(80) |
Feb
(90) |
Mar
(98) |
Apr
(136) |
May
(101) |
Jun
(12) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv31970 Modified Files: DTCAppContext.xml DTCAppContextNoInterfaces.xml autoDeclarativeServices.xml declarativeServices.xml templateTests.xml Log Message: update integration tests to refer to classes in Spring.Data.Core Index: DTCAppContextNoInterfaces.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data/DTCAppContextNoInterfaces.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DTCAppContextNoInterfaces.xml 7 Aug 2007 19:50:44 -0000 1.3 --- DTCAppContextNoInterfaces.xml 17 Sep 2007 19:18:50 -0000 1.4 *************** *** 17,21 **** <!-- <object id="transactionManager" ! type="Spring.Data.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> --- 17,21 ---- <!-- <object id="transactionManager" ! type="Spring.Data.Core.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> *************** *** 23,36 **** <object id="transactionManager" ! type="Spring.Data.TxScopeTransactionManager, Spring.Data"> </object> <!-- AdoTemplate for DAO Implementation --> ! <object id="adoTemplate" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplateForDebitDb" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DebitDbProvider"/> </object> --- 23,36 ---- <object id="transactionManager" ! type="Spring.Data.Core.TxScopeTransactionManager, Spring.Data"> </object> <!-- AdoTemplate for DAO Implementation --> ! <object id="adoTemplate" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplateForDebitDb" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DebitDbProvider"/> </object> Index: declarativeServices.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data/declarativeServices.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** declarativeServices.xml 7 Aug 2007 19:50:44 -0000 1.4 --- declarativeServices.xml 17 Sep 2007 19:18:50 -0000 1.5 *************** *** 1,11 **** <?xml version="1.0" encoding="utf-8" ?> <objects xmlns='http://www.springframework.net' ! xmlns:d="http://www.springframework.net/database"> ! <d:provider id="DbProvider" ! provider="SqlServer-1.1" ! connectionString="Data Source=(local);Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> ! <object id="adoTemplate" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> --- 1,11 ---- <?xml version="1.0" encoding="utf-8" ?> <objects xmlns='http://www.springframework.net' ! xmlns:db="http://www.springframework.net/database"> ! <db:provider id="DbProvider" ! provider="SqlServer-2.0" ! connectionString="Data Source=MARKT60\SQL2005;Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> ! <object id="adoTemplate" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> *************** *** 17,21 **** <object id="adoTransactionManager" ! type="Spring.Data.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> --- 17,21 ---- <object id="adoTransactionManager" ! type="Spring.Data.Core.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> *************** *** 23,27 **** <!-- Transactional Proxy for TestObjectManager using the ProxyFactoryObject --> - <!-- <object id="testObjectManager" type="Spring.Aop.Framework.ProxyFactoryObject, Spring.Aop"> --- 23,26 ---- *************** *** 36,44 **** </object> ! --> <object id="autoProxyCreator" type="Spring.Aop.Framework.AutoProxy.DefaultAdvisorAutoProxyCreator, Spring.Aop"> </object> <object id="transactionAdvisor" --- 35,45 ---- </object> ! + <!-- <object id="autoProxyCreator" type="Spring.Aop.Framework.AutoProxy.DefaultAdvisorAutoProxyCreator, Spring.Aop"> </object> + --> <object id="transactionAdvisor" *************** *** 62,65 **** --- 63,67 ---- <!-- The DAO object that performs multiple data access operations --> + <!-- testObjectManagerTarget if not using autoproxy --> <object id="testObjectManagerTarget" type="Spring.Data.TestObjectManager, Spring.Data.Integration.Tests"> Index: templateTests.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data/templateTests.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** templateTests.xml 7 Aug 2007 19:50:44 -0000 1.3 --- templateTests.xml 17 Sep 2007 19:18:50 -0000 1.4 *************** *** 16,20 **** <object id="adoTemplate" ! type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> --- 16,20 ---- <object id="adoTemplate" ! type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> *************** *** 29,33 **** <object id="adoTransactionManager" ! type="Spring.Data.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> --- 29,33 ---- <object id="adoTransactionManager" ! type="Spring.Data.Core.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> Index: DTCAppContext.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data/DTCAppContext.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DTCAppContext.xml 7 Aug 2007 23:58:18 -0000 1.6 --- DTCAppContext.xml 17 Sep 2007 19:18:50 -0000 1.7 *************** *** 28,32 **** <!-- <object id="transactionManager" ! type="Spring.Data.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> --- 28,32 ---- <!-- <object id="transactionManager" ! type="Spring.Data.Core.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> *************** *** 34,47 **** <object id="transactionManager" ! type="Spring.Data.TxScopeTransactionManager, Spring.Data"> </object> <!-- AdoTemplate for DAO Implementation --> ! <object id="adoTemplate" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplateForDebitDb" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DebitDbProvider"/> </object> --- 34,47 ---- <object id="transactionManager" ! type="Spring.Data.Core.TxScopeTransactionManager, Spring.Data"> </object> <!-- AdoTemplate for DAO Implementation --> ! <object id="adoTemplate" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplateForDebitDb" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DebitDbProvider"/> </object> Index: autoDeclarativeServices.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data/autoDeclarativeServices.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** autoDeclarativeServices.xml 7 Aug 2007 19:50:44 -0000 1.5 --- autoDeclarativeServices.xml 17 Sep 2007 19:18:50 -0000 1.6 *************** *** 14,23 **** --> <object id="adoTransactionManager" ! type="Spring.Data.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplate" type="Spring.Data.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> --- 14,23 ---- --> <object id="adoTransactionManager" ! type="Spring.Data.Core.AdoPlatformTransactionManager, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> ! <object id="adoTemplate" type="Spring.Data.Core.AdoTemplate, Spring.Data"> <property name="DbProvider" ref="DbProvider"/> </object> |
From: Mark P. <mar...@us...> - 2007-09-17 19:16:18
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Tests/Transaction/Interceptor In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30917 Modified Files: AbstractTransactionAspectTests.cs Log Message: SPRNET-727 - MethodMatchTransactionAttributeSource does not correctly return transaction attributes on candidate target object if method registered using MethodInfo object is based on an interface Index: AbstractTransactionAspectTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Tests/Transaction/Interceptor/AbstractTransactionAspectTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AbstractTransactionAspectTests.cs 17 Aug 2007 02:43:30 -0000 1.2 --- AbstractTransactionAspectTests.cs 17 Sep 2007 19:16:14 -0000 1.3 *************** *** 51,55 **** { ITransactionAttribute txatt = new DefaultTransactionAttribute(); ! MethodInfo m = typeof (TestObject).GetMethod("GetDescription"); MethodMapTransactionAttributeSource tas = new MethodMapTransactionAttributeSource(); tas.AddTransactionalMethod(m, txatt); --- 51,55 ---- { ITransactionAttribute txatt = new DefaultTransactionAttribute(); ! MethodInfo m = typeof (ITestObject).GetMethod("GetDescription"); MethodMapTransactionAttributeSource tas = new MethodMapTransactionAttributeSource(); tas.AddTransactionalMethod(m, txatt); |
From: Mark P. <mar...@us...> - 2007-09-17 19:16:10
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Transaction/Interceptor In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30658 Modified Files: MethodMapTransactionAttributeSource.cs Log Message: SPRNET-727 - MethodMatchTransactionAttributeSource does not correctly return transaction attributes on candidate target object if method registered using MethodInfo object is based on an interface Index: MethodMapTransactionAttributeSource.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Transaction/Interceptor/MethodMapTransactionAttributeSource.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MethodMapTransactionAttributeSource.cs 31 Jul 2007 18:18:08 -0000 1.9 --- MethodMapTransactionAttributeSource.cs 17 Sep 2007 19:16:05 -0000 1.10 *************** *** 237,241 **** public ITransactionAttribute ReturnTransactionAttribute(MethodInfo method, Type targetType) { ! return (ITransactionAttribute) _methodMap[method]; } #endregion --- 237,253 ---- public ITransactionAttribute ReturnTransactionAttribute(MethodInfo method, Type targetType) { ! //Might have registered MethodInfo objects whose declaring type is the interface, so 'downcast' ! //to the most specific method which is typically what is passed in as the first method argument. ! foreach (DictionaryEntry dictionaryEntry in _methodMap) ! { ! MethodInfo specificMethod = ! ReflectionUtils.GetMostSpecificMethod((MethodInfo) dictionaryEntry.Key, targetType); ! if (method == specificMethod) ! { ! return (ITransactionAttribute) dictionaryEntry.Value; ! } ! ! } ! return (ITransactionAttribute)_methodMap[method]; } #endregion |
From: Bruno B. <bb...@us...> - 2007-09-17 01:12:52
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Xml In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv29908/src/Spring/Spring.Core/Objects/Factory/Xml Modified Files: NamespaceParserRegistry.cs Log Message: Fixed ValidationNamespaceParser registration. Index: NamespaceParserRegistry.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Xml/NamespaceParserRegistry.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NamespaceParserRegistry.cs 8 Aug 2007 17:47:13 -0000 1.6 --- NamespaceParserRegistry.cs 17 Sep 2007 01:12:48 -0000 1.7 *************** *** 79,84 **** //This is done simple as a means to avoid cyclic dependencies with Factory.Xml //which implementations of parsers typically use. ! RegisterParser((INamespaceParser)ObjectUtils.InstantiateType( ! TypeResolutionUtils.ResolveType("Spring.Validation.Config.ValidationNamespaceParser, Spring.Core"))); // register custom config parsers --- 79,84 ---- //This is done simple as a means to avoid cyclic dependencies with Factory.Xml //which implementations of parsers typically use. ! RegisterParser(ObjectUtils.InstantiateType(typeof(NamespaceParserRegistry).Assembly, ! "Spring.Validation.Config.ValidationNamespaceParser") as INamespaceParser); // register custom config parsers |
From: Erich E. <oak...@us...> - 2007-09-14 20:12:10
|
Update of /cvsroot/springnet/Spring.Net/lib/Net/2.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14164 Modified Files: Common.Logging.Log4Net129.dll Log Message: fixed wrong Common.Logging.Log4Net129 assembly updated Northwind integration test project Index: Common.Logging.Log4Net129.dll =================================================================== RCS file: /cvsroot/springnet/Spring.Net/lib/Net/2.0/Common.Logging.Log4Net129.dll,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvs2wgOrX and /tmp/cvsEMNst0 differ |
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.Data.NHibernate.Northwind/test/Spring.Northwind.IntegrationTests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13831 Modified Files: Spring.Northwind.IntegrationTests.csproj Added Files: App.config Aspects.xml Dao.xml DeclarativeServicesAttributeDriven.xml DeclarativeServicesObjectNameDriven.xml DeclarativeServicesTxProxyFactoryDriven.xml Services.xml Removed Files: Spring.Northwind.IntegrationTests.dll.config Log Message: fixed wrong Common.Logging.Log4Net129 assembly updated Northwind integration test project --- NEW FILE: Services.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Dao.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DeclarativeServicesObjectNameDriven.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: App.config --- (This appears to be a binary file; contents omitted.) --- Spring.Northwind.IntegrationTests.dll.config DELETED --- Index: Spring.Northwind.IntegrationTests.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.Data.NHibernate.Northwind/test/Spring.Northwind.IntegrationTests/Spring.Northwind.IntegrationTests.csproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Spring.Northwind.IntegrationTests.csproj 18 Jun 2007 20:23:47 -0000 1.4 --- Spring.Northwind.IntegrationTests.csproj 14 Sep 2007 20:11:56 -0000 1.5 *************** *** 29,32 **** --- 29,60 ---- </PropertyGroup> <ItemGroup> + <Reference Include="antlr.runtime, Version=2.7.6.2, Culture=neutral, PublicKeyToken=65e474d141e25e07, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\Net\2.0\antlr.runtime.dll</HintPath> + </Reference> + <Reference Include="Castle.DynamicProxy, Version=1.1.5.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\NHibernate10\net\2.0\Castle.DynamicProxy.dll</HintPath> + </Reference> + <Reference Include="Common.Logging, Version=1.1.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\Net\2.0\Common.Logging.dll</HintPath> + </Reference> + <Reference Include="Common.Logging.Log4Net129, Version=1.0.2.1, Culture=neutral, PublicKeyToken=af08829b84f0328e"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\Net\2.0\Common.Logging.Log4Net129.dll</HintPath> + </Reference> + <Reference Include="Iesi.Collections, Version=1.0.0.1, Culture=neutral, PublicKeyToken=154fdcb44c4484fc"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\NHibernate10\net\2.0\Iesi.Collections.dll</HintPath> + </Reference> + <Reference Include="log4net, Version=1.2.9.0, Culture=neutral, PublicKeyToken=b32731d11ce58905"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\NHibernate10\net\2.0\log4net.dll</HintPath> + </Reference> + <Reference Include="NHibernate, Version=1.0.4.0, Culture=neutral, PublicKeyToken=154fdcb44c4484fc"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\lib\NHibernate10\net\2.0\NHibernate.dll</HintPath> + </Reference> <Reference Include="nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> *************** *** 54,58 **** </ItemGroup> <ItemGroup> ! <None Include="Spring.Northwind.IntegrationTests.dll.config" /> </ItemGroup> <ItemGroup> --- 82,86 ---- </ItemGroup> <ItemGroup> ! <None Include="App.config" /> </ItemGroup> <ItemGroup> *************** *** 74,77 **** --- 102,128 ---- </ProjectReference> </ItemGroup> + <ItemGroup> + <Content Include="Aspects.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="Dao.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="DeclarativeServicesAttributeDriven.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="DeclarativeServicesObjectNameDriven.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="DeclarativeServicesTxProxyFactoryDriven.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="Services.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="Web.xml"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. *************** *** 83,88 **** --> <PropertyGroup> ! <PostBuildEvent>echo "Copying .xml files for tests" ! xcopy "$(ProjectDir)$(TargetFileName).config" ..\..\..\..\build\VS.Net.2005\Spring.Northwind.IntegrationTests\$(ConfigurationName)\ /y /s /q</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file --- 134,139 ---- --> <PropertyGroup> ! <PostBuildEvent>rem echo "Copying .xml files for tests" ! rem xcopy "$(ProjectDir)Data" ..\..\..\..\build\VS.Net.2005\Spring.Northwind.IntegrationTests\$(ConfigurationName)\ /y /s /q</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file --- NEW FILE: DeclarativeServicesTxProxyFactoryDriven.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Aspects.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DeclarativeServicesAttributeDriven.xml --- (This appears to be a binary file; contents omitted.) |
From: Erich E. <oak...@us...> - 2007-09-14 18:26:29
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Caching In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5120 Modified Files: AspNetCache.cs Log Message: added logging Index: AspNetCache.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Caching/AspNetCache.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AspNetCache.cs 25 Aug 2007 10:21:38 -0000 1.5 --- AspNetCache.cs 14 Sep 2007 18:26:26 -0000 1.6 *************** *** 23,26 **** --- 23,27 ---- using System.Web; using System.Web.Caching; + using Common.Logging; using Spring.Util; *************** *** 105,108 **** --- 106,111 ---- #region Fields + // logger instance for this class + private static readonly ILog Log = LogManager.GetLogger(typeof(AspNetCache)); // the concrete cache implementation private readonly IRuntimeCache _cache; *************** *** 204,207 **** --- 207,211 ---- if (key != null) { + if (Log.IsDebugEnabled) Log.Debug(string.Format("removing item '{0}' from cache '{1}'", key, this._cacheName)); _cache.Remove(GenerateKey(key)); } *************** *** 273,276 **** --- 277,282 ---- AssertUtils.State( TimeSpan.Zero <= timeToLive, "timeToLive" ); + if (Log.IsDebugEnabled) Log.Debug(string.Format("adding item '{0}' to cache '{1}'", key, this._cacheName)); + if (TimeSpan.Zero < timeToLive) { |
From: Bruno B. <bb...@us...> - 2007-09-14 16:14:34
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2007/App_Code In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13032 Removed Files: CalculatorService.cs ICalculator.cs Log Message: Renamed 2007 csproj/sln to 2008. --- ICalculator.cs DELETED --- --- CalculatorService.cs DELETED --- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:14:25
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Services In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12965 Added Files: Spring.Services.2008.csproj Removed Files: Spring.Services.2007.csproj Log Message: Renamed 2007 csproj/sln to 2008. --- Spring.Services.2007.csproj DELETED --- --- NEW FILE: Spring.Services.2008.csproj --- (This appears to be a binary file; contents omitted.) |
From: Bruno B. <bb...@us...> - 2007-09-14 16:14:10
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008/App_Code In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12645 Added Files: CalculatorService.cs ICalculator.cs Log Message: Renamed 2007 csproj/sln to 2008. --- NEW FILE: ICalculator.cs --- using System; using System.ServiceModel; [ServiceContract(Namespace = "http://Spring.WcfQuickStart")] public interface ICalculator { [OperationContract] double Add(double n1, double n2); [OperationContract] double Subtract(double n1, double n2); [OperationContract] double Multiply(double n1, double n2); [OperationContract] double Divide(double n1, double n2); [OperationContract] string GetName(); } --- NEW FILE: CalculatorService.cs --- using System; public class CalculatorService : ICalculator { public double Add(double n1, double n2) { return n1 + n2; } public double Subtract(double n1, double n2) { return n1 - n2; } public double Multiply(double n1, double n2) { return n1 * n2; } public double Divide(double n1, double n2) { return n1 / n2; } public string GetName() { return "Web Calculator"; } } |
From: Bruno B. <bb...@us...> - 2007-09-14 16:13:46
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Services.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12536/Spring.Services.Tests Added Files: Spring.Services.Tests.2008.csproj Removed Files: Spring.Services.Tests.2007.csproj Log Message: Renamed 2007 csproj/sln to 2008. --- NEW FILE: Spring.Services.Tests.2008.csproj --- (This appears to be a binary file; contents omitted.) --- Spring.Services.Tests.2007.csproj DELETED --- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:13:20
|
Update of /cvsroot/springnet/Spring.Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411 Added Files: Spring.Net.1.1.2008.sln Removed Files: Spring.Net.1.1.2007.sln Log Message: Renamed 2007 csproj/sln to 2008. --- NEW FILE: Spring.Net.1.1.2008.sln --- Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Core.2005", "src\Spring\Spring.Core\Spring.Core.2005.csproj", "{710961A3-0DF4-49E4-A26E-F5B9C044AC84}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Core.Tests.2005", "test\Spring\Spring.Core.Tests\Spring.Core.Tests.2005.csproj", "{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Aop.2005", "src\Spring\Spring.Aop\Spring.Aop.2005.csproj", "{3A3A4E65-45A6-4B20-B460-0BEDC302C02C}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Aop.Tests.2005", "test\Spring\Spring.Aop.Tests\Spring.Aop.Tests.2005.csproj", "{2111596A-0327-4C9D-8919-294FBD988A23}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F04753EF-7A1B-4837-AB63-8C0821E8155D}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection ProjectSection(SolutionItems) = preProject Spring.build = Spring.build EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Services.2008", "src\Spring\Spring.Services\Spring.Services.2008.csproj", "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Services.Tests.2008", "test\Spring\Spring.Services.Tests\Spring.Services.Tests.2008.csproj", "{4374F018-9738-46BF-A399-4594CEE75B21}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Web.2005", "src\Spring\Spring.Web\Spring.Web.2005.csproj", "{BA4789EB-281A-48EA-8763-28B9F0596A18}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Web.Tests.2005", "test\Spring\Spring.Web.Tests\Spring.Web.Tests.2005.csproj", "{C67E47AA-1ACD-41B4-A465-4D336A2319CA}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Data.2005", "src\Spring\Spring.Data\Spring.Data.2005.csproj", "{AE00E5AB-C39A-436F-86D2-33BFE33E2E40}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Data.Tests.2005", "test\Spring\Spring.Data.Tests\Spring.Data.Tests.2005.csproj", "{ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Data.Integration.Tests.2005", "test\Spring\Spring.Data.Integration.Tests\Spring.Data.Integration.Tests.2005.csproj", "{91766D21-C568-459F-9BEA-759B011F23CF}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Testing.NUnit.2005", "src\Spring\Spring.Testing.NUnit\Spring.Testing.NUnit.2005.csproj", "{ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Testing.NUnit.Tests.2005", "test\Spring\Spring.Testing.NUnit.Tests\Spring.Testing.NUnit.Tests.2005.csproj", "{4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|.NET = Debug|.NET Debug|Any CPU = Debug|Any CPU Debug|Mixed Platforms = Debug|Mixed Platforms Release|.NET = Release|.NET Release|Any CPU = Release|Any CPU Release|Mixed Platforms = Release|Mixed Platforms EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug|.NET.ActiveCfg = Debug|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug|Any CPU.Build.0 = Debug|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release|.NET.ActiveCfg = Release|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release|Any CPU.ActiveCfg = Release|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release|Any CPU.Build.0 = Release|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release|Mixed Platforms.Build.0 = Release|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug|.NET.ActiveCfg = Debug|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug|Any CPU.Build.0 = Debug|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release|.NET.ActiveCfg = Release|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release|Any CPU.ActiveCfg = Release|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release|Any CPU.Build.0 = Release|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release|Mixed Platforms.Build.0 = Release|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug|.NET.ActiveCfg = Debug|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug|Any CPU.Build.0 = Debug|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release|.NET.ActiveCfg = Release|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release|Any CPU.ActiveCfg = Release|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release|Any CPU.Build.0 = Release|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release|Mixed Platforms.Build.0 = Release|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Debug|.NET.ActiveCfg = Debug|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Debug|Any CPU.Build.0 = Debug|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Release|.NET.ActiveCfg = Release|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Release|Any CPU.ActiveCfg = Release|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Release|Any CPU.Build.0 = Release|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {2111596A-0327-4C9D-8919-294FBD988A23}.Release|Mixed Platforms.Build.0 = Release|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Debug|.NET.ActiveCfg = Debug|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Debug|Any CPU.Build.0 = Debug|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Release|.NET.ActiveCfg = Release|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Release|Any CPU.ActiveCfg = Release|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Release|Any CPU.Build.0 = Release|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.Release|Mixed Platforms.Build.0 = Release|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Debug|.NET.ActiveCfg = Debug|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Debug|Any CPU.Build.0 = Debug|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Release|.NET.ActiveCfg = Release|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Release|Any CPU.ActiveCfg = Release|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Release|Any CPU.Build.0 = Release|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {4374F018-9738-46BF-A399-4594CEE75B21}.Release|Mixed Platforms.Build.0 = Release|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug|.NET.ActiveCfg = Debug|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug|Any CPU.Build.0 = Debug|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release|.NET.ActiveCfg = Release|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release|Any CPU.ActiveCfg = Release|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release|Any CPU.Build.0 = Release|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release|Mixed Platforms.Build.0 = Release|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Debug|.NET.ActiveCfg = Debug|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Debug|Any CPU.Build.0 = Debug|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Release|.NET.ActiveCfg = Release|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Release|Any CPU.ActiveCfg = Release|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Release|Any CPU.Build.0 = Release|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {C67E47AA-1ACD-41B4-A465-4D336A2319CA}.Release|Mixed Platforms.Build.0 = Release|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Debug|.NET.ActiveCfg = Debug|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Debug|Any CPU.Build.0 = Debug|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Release|.NET.ActiveCfg = Release|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Release|Any CPU.ActiveCfg = Release|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Release|Any CPU.Build.0 = Release|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {AE00E5AB-C39A-436F-86D2-33BFE33E2E40}.Release|Mixed Platforms.Build.0 = Release|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Debug|.NET.ActiveCfg = Debug|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Debug|Any CPU.Build.0 = Debug|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Release|.NET.ActiveCfg = Release|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Release|Any CPU.ActiveCfg = Release|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Release|Any CPU.Build.0 = Release|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {ACD39D47-1811-40FA-9E7E-5DEA5B9CE6C0}.Release|Mixed Platforms.Build.0 = Release|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Debug|.NET.ActiveCfg = Debug|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Debug|Any CPU.Build.0 = Debug|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Release|.NET.ActiveCfg = Release|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Release|Any CPU.ActiveCfg = Release|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Release|Any CPU.Build.0 = Release|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {91766D21-C568-459F-9BEA-759B011F23CF}.Release|Mixed Platforms.Build.0 = Release|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Debug|.NET.ActiveCfg = Debug|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Debug|Any CPU.Build.0 = Debug|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Release|.NET.ActiveCfg = Release|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Release|Any CPU.ActiveCfg = Release|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Release|Any CPU.Build.0 = Release|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {ED204A7B-832F-44C7-BFE3-504AEBE1BCC8}.Release|Mixed Platforms.Build.0 = Release|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Debug|.NET.ActiveCfg = Debug|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Debug|Any CPU.Build.0 = Debug|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Release|.NET.ActiveCfg = Release|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Release|Any CPU.ActiveCfg = Release|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Release|Any CPU.Build.0 = Release|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {4D6D616B-7643-4D6B-8E5E-14ECFDB9AF82}.Release|Mixed Platforms.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal --- Spring.Net.1.1.2007.sln DELETED --- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:13:20
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2007 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2007 Removed Files: .cvsignore Calculator.svc Web.config Log Message: Renamed 2007 csproj/sln to 2008. --- Web.config DELETED --- --- .cvsignore DELETED --- --- Calculator.svc DELETED --- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:13:19
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008 Added Files: .cvsignore Calculator.svc Web.config Log Message: Renamed 2007 csproj/sln to 2008. --- NEW FILE: Web.config --- <?xml version="1.0"?> <!-- Note: As an alternative to hand editing this file you can use the web admin tool to configure settings for your application. Use the Website->Asp.Net Configuration option in Visual Studio. A full list of settings and comments can be found in machine.config.comments usually located in \Windows\Microsoft.Net\Framework\v2.x\Config --> <configuration> <configSections> <sectionGroup name="spring"> <section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/> <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/> </sectionGroup> </configSections> <spring> <context> <resource uri="config://spring/objects"/> </context> <objects xmlns="http://www.springframework.net"> <!-- Service definition --> <object id="calculator" type="CalculatorService, App_Code" /> </objects> </spring> <system.serviceModel> <services> <service name="calculator" behaviorConfiguration="DefaultBehavior"> <endpoint address="" binding="basicHttpBinding" contract="ICalculator" /> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> </service> </services> <behaviors> <serviceBehaviors> <behavior name="DefaultBehavior"> <serviceMetadata httpGetEnabled="True"/> <serviceDebug includeExceptionDetailInFaults="True"/> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel> <appSettings/> <connectionStrings/> <system.web> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --> <compilation debug="true"> <assemblies> <add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="Microsoft.Transactions.Bridge, Version=3.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="SMDiagnostics, Version=3.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.IdentityModel.Selectors, Version=3.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> </assemblies> </compilation> <!-- The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --> <authentication mode="Windows"/> <!-- The <customErrors> section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="404" redirect="FileNotFound.htm" /> </customErrors> --> </system.web> </configuration> --- NEW FILE: .cvsignore --- Bin --- NEW FILE: Calculator.svc --- <%@ ServiceHost Language="C#" Debug="true" Service="calculator" Factory="Spring.ServiceModel.Activation.ServiceHostFactory" %> |
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ServerApp In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ServerApp Added Files: Spring.WcfQuickStart.ServerApp.2008.csproj Removed Files: Spring.WcfQuickStart.ServerApp.2007.csproj Log Message: Renamed 2007 csproj/sln to 2008. --- Spring.WcfQuickStart.ServerApp.2007.csproj DELETED --- --- NEW FILE: Spring.WcfQuickStart.ServerApp.2008.csproj --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ClientApp In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ClientApp Modified Files: App.config Added Files: Spring.WcfQuickStart.ClientApp.2008.csproj Removed Files: Spring.WcfQuickStart.ClientApp.2007.csproj Log Message: Renamed 2007 csproj/sln to 2008. --- Spring.WcfQuickStart.ClientApp.2007.csproj DELETED --- --- NEW FILE: Spring.WcfQuickStart.ClientApp.2008.csproj --- (This appears to be a binary file; contents omitted.) Index: App.config =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.ClientApp/App.config,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** App.config 26 Jun 2007 19:13:46 -0000 1.2 --- App.config 14 Sep 2007 16:13:11 -0000 1.3 *************** *** 12,17 **** <context> - <!-- Only one at a time ! --> - <!-- Make sure 'http://localhost:2637/Spring.WcfQuickStart.Web/' web application is running --> <!-- --- 12,15 ---- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:13:18
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12411/examples/Spring/Spring.WcfQuickStart Added Files: Spring.WcfQuickStart.2008.sln Removed Files: Spring.WcfQuickStart.2007.sln Log Message: Renamed 2007 csproj/sln to 2008. --- NEW FILE: Spring.WcfQuickStart.2008.sln --- (This appears to be a binary file; contents omitted.) --- Spring.WcfQuickStart.2007.sln DELETED --- |
From: Bruno B. <bb...@us...> - 2007-09-14 16:12:14
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Services.Tests/ServiceModel In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11946/ServiceModel Log Message: Directory /cvsroot/springnet/Spring.Net/test/Spring/Spring.Services.Tests/ServiceModel added to the repository |
From: Bruno B. <bb...@us...> - 2007-09-14 16:11:27
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008/App_Code In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11855/App_Code Log Message: Directory /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008/App_Code added to the repository |
From: Bruno B. <bb...@us...> - 2007-09-14 16:10:28
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11403/Spring.WcfQuickStart.Web.2008 Log Message: Directory /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WcfQuickStart/src/Spring.WcfQuickStart.Web.2008 added to the repository |
From: Bruno B. <bb...@us...> - 2007-09-14 15:46:01
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Testing.NUnit.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv32278/test/Spring/Spring.Testing.NUnit.Tests Modified Files: Spring.Testing.NUnit.Tests.2005.csproj Log Message: Revert latest changes in VS2005 csprojs/sln. Index: Spring.Testing.NUnit.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Testing.NUnit.Tests/Spring.Testing.NUnit.Tests.2005.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Spring.Testing.NUnit.Tests.2005.csproj 12 Sep 2007 17:26:57 -0000 1.3 --- Spring.Testing.NUnit.Tests.2005.csproj 14 Sep 2007 15:45:51 -0000 1.4 *************** *** 1,5 **** <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug-2.0</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> --- 1,5 ---- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> *************** *** 13,29 **** </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-2.0|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Testing.NUnit.Tests\Debug-2.0\</OutputPath> <DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-2.0|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Testing.NUnit.Tests\Release-2.0\</OutputPath> <DefineConstants>TRACE;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> --- 13,29 ---- </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Testing.NUnit.Tests\Debug\</OutputPath> <DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Testing.NUnit.Tests\Release\</OutputPath> <DefineConstants>TRACE;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> |
From: Bruno B. <bb...@us...> - 2007-09-14 15:46:01
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv32278/test/Spring/Spring.Web.Tests Modified Files: Spring.Web.Tests.2005.csproj Log Message: Revert latest changes in VS2005 csprojs/sln. Index: Spring.Web.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Spring.Web.Tests.2005.csproj,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Spring.Web.Tests.2005.csproj 12 Sep 2007 17:26:57 -0000 1.20 --- Spring.Web.Tests.2005.csproj 14 Sep 2007 15:45:51 -0000 1.21 *************** *** 5,9 **** <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{C67E47AA-1ACD-41B4-A465-4D336A2319CA}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug-2.0</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> --- 5,9 ---- <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{C67E47AA-1ACD-41B4-A465-4D336A2319CA}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> *************** *** 24,29 **** </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Web.Tests\Debug-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 24,29 ---- </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Web.Tests\Debug\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> *************** *** 47,52 **** <UseVSHostingProcess>true</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Web.Tests\Release-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 47,52 ---- <UseVSHostingProcess>true</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Web.Tests\Release\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> |
From: Bruno B. <bb...@us...> - 2007-09-14 15:46:00
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Aop.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv32278/test/Spring/Spring.Aop.Tests Modified Files: Spring.Aop.Tests.2005.csproj Log Message: Revert latest changes in VS2005 csprojs/sln. Index: Spring.Aop.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Aop.Tests/Spring.Aop.Tests.2005.csproj,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** Spring.Aop.Tests.2005.csproj 12 Sep 2007 17:26:56 -0000 1.30 --- Spring.Aop.Tests.2005.csproj 14 Sep 2007 15:45:50 -0000 1.31 *************** *** 5,9 **** <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{2111596A-0327-4C9D-8919-294FBD988A23}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug-2.0</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> --- 5,9 ---- <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{2111596A-0327-4C9D-8919-294FBD988A23}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> *************** *** 24,29 **** </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Aop.Tests\Debug-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 24,29 ---- </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Aop.Tests\Debug\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> *************** *** 46,51 **** <UseVSHostingProcess>true</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Aop.Tests\Release-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 46,51 ---- <UseVSHostingProcess>true</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Aop.Tests\Release\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> |
From: Bruno B. <bb...@us...> - 2007-09-14 15:46:00
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv32278/test/Spring/Spring.Data.NHibernate.Integration.Tests Modified Files: Spring.Data.NHibernate.Integration.Tests.2005.csproj Log Message: Revert latest changes in VS2005 csprojs/sln. Index: Spring.Data.NHibernate.Integration.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Spring.Data.NHibernate.Integration.Tests.2005.csproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Spring.Data.NHibernate.Integration.Tests.2005.csproj 12 Sep 2007 17:26:56 -0000 1.6 --- Spring.Data.NHibernate.Integration.Tests.2005.csproj 14 Sep 2007 15:45:51 -0000 1.7 *************** *** 1,5 **** <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug-2.0</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> --- 1,5 ---- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> *************** *** 11,27 **** <AssemblyName>Spring.Data.NHibernate.Integration.Tests</AssemblyName> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-2.0|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Data.NHibernate.Integration.Tests\Debug-2.0\</OutputPath> <DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-2.0|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Data.NHibernate.Integration.Tests\Release-2.0\</OutputPath> <DefineConstants>TRACE;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> --- 11,27 ---- <AssemblyName>Spring.Data.NHibernate.Integration.Tests</AssemblyName> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Data.NHibernate.Integration.Tests\Debug\</OutputPath> <DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Data.NHibernate.Integration.Tests\Release\</OutputPath> <DefineConstants>TRACE;NET_2_0</DefineConstants> <ErrorReport>prompt</ErrorReport> |
From: Bruno B. <bb...@us...> - 2007-09-14 15:46:00
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv32278/test/Spring/Spring.Core.Tests Modified Files: Spring.Core.Tests.2005.csproj Log Message: Revert latest changes in VS2005 csprojs/sln. Index: Spring.Core.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Spring.Core.Tests.2005.csproj,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** Spring.Core.Tests.2005.csproj 12 Sep 2007 17:26:56 -0000 1.67 --- Spring.Core.Tests.2005.csproj 14 Sep 2007 15:45:50 -0000 1.68 *************** *** 5,9 **** <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug-2.0</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> --- 5,9 ---- <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}</ProjectGuid> ! <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ApplicationIcon> *************** *** 24,29 **** </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Core.Tests\Debug-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 24,29 ---- </StartupObject> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Core.Tests\Debug\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> *************** *** 47,52 **** <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-2.0|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Core.Tests\Release-2.0\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> --- 47,52 ---- <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> ! <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> ! <OutputPath>..\..\..\build\VS.Net.2005\Spring.Core.Tests\Release\</OutputPath> <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> |