* SalesCatalog.csproj: clean an unused reference

* TestBrands.cs:
* Service.cs:
* PhysicalProduct.cs: clean an obsolete reference

* TestCatalogInit.cs: cleaner

* XmlCatalog.cs:
* XmlCatalogProvider.cs: suppressed some xml doc warnings

* Estimate.aspx: new jQuery version 

* Web.config: removed a section dotNetOpenAuth at using the .Net
  framework 4.5.1
This commit is contained in:
Paul Schneider 2015-01-29 23:05:57 +01:00
commit 3dbf0265db
9 changed files with 46 additions and 41 deletions

View file

@ -2,7 +2,6 @@
#if TEST
using NUnit.Framework;
using System;
using SalesCatalog.Model;
namespace SalesCatalog.Tests
{

View file

@ -3,7 +3,6 @@
using System;
using NUnit.Framework;
using SalesCatalog.XmlImplementation;
using SalesCatalog.Model;
using System.Xml.Serialization;
using System.IO;
using System.Xml;
@ -68,8 +67,8 @@ namespace SalesCatalog.Tests
Option o3 = new Option ();
o3.Value = "6m"; o3.Text = "6 mois";
selSize.Items = new Option [] { o1, o2, o3 };
var txt1 = new SalesCatalog.Model.Text ();
var txt2 = new SalesCatalog.Model.Text ();
var txt1 = new Text ();
var txt2 = new Text ();
txt1.Val="Choose a title : ";
txt2.Val = "[br]Choose the size : ";
f.Items = new FormElement[] {txt1,ticat,txt2,selSize};