changeset 34:475be11edf56

Ajuste en los nombre de los assemblies y namespaces
author nelo@MTEySS.neluz.int
date Thu, 17 Mar 2011 16:59:29 -0300
parents 1e95467c1245
children 6910b2116df2
files Agendas/trunk/src/Agendas.Factories/AgendaFactory.cs Agendas/trunk/src/Agendas.Factories/Agendas.Factories.csproj Agendas/trunk/src/Agendas.Factories/Properties/AssemblyInfo.cs Agendas/trunk/src/Agendas.Google/Agendas.Google.csproj Agendas/trunk/src/Agendas.Google/GooglePublicador.cs Agendas/trunk/src/Agendas.Repositories.Memory/Agendas.Repositories.Memory.csproj Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs Agendas/trunk/src/Agendas.Tests/Agendas.Tests.csproj Agendas/trunk/src/Agendas.Tests/EventoTests.cs Agendas/trunk/src/Agendas.Tests/SeguridadObjectMother.cs Agendas/trunk/src/Agendas.Tests/TestBase.cs Agendas/trunk/src/Agendas.Twitter/Agendas.Twitter.csproj Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs Agendas/trunk/src/Agendas.Web/Agendas.Web.csproj Agendas/trunk/src/Agendas.Web/Controllers/AccountController.cs Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs Agendas/trunk/src/Agendas.Web/Global.asax Agendas/trunk/src/Agendas.Web/Global.asax.cs Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs Agendas/trunk/src/Agendas.Web/Models/AccountModels.cs Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs Agendas/trunk/src/Agendas.Web/Properties/AssemblyInfo.cs Agendas/trunk/src/Agendas.Web/Views/Account/ChangePassword.cshtml Agendas/trunk/src/Agendas.Web/Views/Account/LogOn.cshtml Agendas/trunk/src/Agendas.Web/Views/Account/Register.cshtml Agendas/trunk/src/Agendas.Web/Views/Evento/Edit.cshtml Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml Agendas/trunk/src/Agendas.Web/Views/Evento/New.cshtml Agendas/trunk/src/Agendas.Web/Views/Propuesta/Edit.cshtml Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml Agendas/trunk/src/Agendas.Web/Views/Propuesta/New.cshtml Agendas/trunk/src/Agendas.sln
diffstat 37 files changed, 56 insertions(+), 73 deletions(-) [+]
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Factories/AgendaFactory.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Factories/AgendaFactory.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,7 +1,7 @@
-using Agendas.Repositories.Memory;
-using AltNetHispano.Agendas.Domain;
+using AltNetHispano.Agendas.Domain;
+using AltNetHispano.Agendas.Repositories.Memory;
 
-namespace Agendas.Factories
+namespace AltNetHispano.Agendas.Factories
 {
     public static class AgendaFactory
     {
--- a/Agendas/trunk/src/Agendas.Factories/Agendas.Factories.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Factories/Agendas.Factories.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -8,8 +8,8 @@
     <ProjectGuid>{306DDA8A-49A5-42E5-A639-A9D3D521865F}</ProjectGuid>
     <OutputType>Library</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Agendas.Factories</RootNamespace>
-    <AssemblyName>Agendas.Factories</AssemblyName>
+    <RootNamespace>AltNetHispano.Agendas.Factories</RootNamespace>
+    <AssemblyName>AltNetHispano.Agendas.Factories</AssemblyName>
     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
   </PropertyGroup>
--- a/Agendas/trunk/src/Agendas.Factories/Properties/AssemblyInfo.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Factories/Properties/AssemblyInfo.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,5 +1,4 @@
 using System.Reflection;
-using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
 // General Information about an assembly is controlled through the following 
--- a/Agendas/trunk/src/Agendas.Google/Agendas.Google.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Google/Agendas.Google.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -8,8 +8,8 @@
     <ProjectGuid>{45804F1F-EB72-4F82-A227-088CAD9B785D}</ProjectGuid>
     <OutputType>Library</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Agendas.Google</RootNamespace>
-    <AssemblyName>Agendas.Google</AssemblyName>
+    <RootNamespace>AltNetHispano.Agendas.Google</RootNamespace>
+    <AssemblyName>AltNetHispano.Agendas.Google</AssemblyName>
     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
   </PropertyGroup>
--- a/Agendas/trunk/src/Agendas.Google/GooglePublicador.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Google/GooglePublicador.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,7 +1,7 @@
 using System;
 using AltNetHispano.Agendas.Domain;
 
-namespace Agendas.Google
+namespace AltNetHispano.Agendas.Google
 {
 	public class GooglePublicador : IPublicador
 	{
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/Agendas.Repositories.Memory.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/Agendas.Repositories.Memory.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -8,8 +8,8 @@
     <ProjectGuid>{28C5EBFB-EE69-4765-A880-D4DE0BC89F48}</ProjectGuid>
     <OutputType>Library</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Agendas.Repositories.Memory</RootNamespace>
-    <AssemblyName>Agendas.Repositories.Memory</AssemblyName>
+    <RootNamespace>AltNetHispano.Agendas.Repositories.Memory</RootNamespace>
+    <AssemblyName>AltNetHispano.Agendas.Repositories.Memory</AssemblyName>
     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
   </PropertyGroup>
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/EventoRepository.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -4,7 +4,7 @@
 using AltNetHispano.Agendas.Domain;
 using AltNetHispano.Agendas.Domain.Repositories;
 
-namespace Agendas.Repositories.Memory
+namespace AltNetHispano.Agendas.Repositories.Memory
 {
 	public class EventoRepository : RepositoryBase<Evento>, IEventoRepository
 	{
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -4,7 +4,7 @@
 using AltNetHispano.Agendas.Domain;
 using AltNetHispano.Agendas.Domain.Repositories;
 
-namespace Agendas.Repositories.Memory
+namespace AltNetHispano.Agendas.Repositories.Memory
 {
 	public class PonenteRepository : RepositoryBase<Ponente>, IPonenteRepository
 	{
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,7 +1,7 @@
 using System;
 using System.Collections.Generic;
 
-namespace Agendas.Repositories.Memory
+namespace AltNetHispano.Agendas.Repositories.Memory
 {
 	public class RepositoryBase<T>
 	{
--- a/Agendas/trunk/src/Agendas.Tests/Agendas.Tests.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/Agendas.Tests.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -48,7 +48,6 @@
   <ItemGroup>
     <Compile Include="PonentesTests.cs" />
     <Compile Include="PropuestasTests.cs" />
-    <Compile Include="EventoObjectMother.cs" />
     <Compile Include="EventoTests.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="PulicarTests.cs" />
--- a/Agendas/trunk/src/Agendas.Tests/EventoTests.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/EventoTests.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,7 +1,7 @@
 using System;
-using Agendas.Repositories.Memory;
 using AltNetHispano.Agendas.Domain;
 using AltNetHispano.Agendas.Domain.Repositories;
+using AltNetHispano.Agendas.Repositories.Memory;
 using NUnit.Framework;
 
 namespace AltNetHispano.Agendas.Tests
--- a/Agendas/trunk/src/Agendas.Tests/SeguridadObjectMother.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/SeguridadObjectMother.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,6 +1,4 @@
-using System;
-using AltNetHispano.Agendas.Domain;
-using System.Security.Principal;
+using System.Security.Principal;
 
 namespace AltNetHispano.Agendas.Tests
 {
--- a/Agendas/trunk/src/Agendas.Tests/TestBase.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/TestBase.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,6 +1,6 @@
-using Agendas.Repositories.Memory;
-using AltNetHispano.Agendas.Domain;
+using AltNetHispano.Agendas.Domain;
 using AltNetHispano.Agendas.Domain.Repositories;
+using AltNetHispano.Agendas.Repositories.Memory;
 using Moq;
 using NUnit.Framework;
 
--- a/Agendas/trunk/src/Agendas.Twitter/Agendas.Twitter.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Twitter/Agendas.Twitter.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -8,8 +8,8 @@
     <ProjectGuid>{D8DA7ED2-A274-4DF6-9DD2-A9DC65F4C2F5}</ProjectGuid>
     <OutputType>Library</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Agendas.Twitter</RootNamespace>
-    <AssemblyName>Agendas.Twitter</AssemblyName>
+    <RootNamespace>AltNetHispano.Agendas.Twitter</RootNamespace>
+    <AssemblyName>AltNetHispano.Agendas.Twitter</AssemblyName>
     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     <FileAlignment>512</FileAlignment>
   </PropertyGroup>
--- a/Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,7 +1,7 @@
 using System;
 using AltNetHispano.Agendas.Domain;
 
-namespace Agendas.Twitter
+namespace AltNetHispano.Agendas.Twitter
 {
 	public class TwitterPublicador : IPublicador, IRecordador
 	{
--- a/Agendas/trunk/src/Agendas.Web/Agendas.Web.csproj	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Agendas.Web.csproj	Thu Mar 17 16:59:29 2011 -0300
@@ -10,8 +10,8 @@
     <ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
     <OutputType>Library</OutputType>
     <AppDesignerFolder>Properties</AppDesignerFolder>
-    <RootNamespace>Agendas.Web</RootNamespace>
-    <AssemblyName>Agendas.Web</AssemblyName>
+    <RootNamespace>AltNetHispano.Agendas.Web</RootNamespace>
+    <AssemblyName>AltNetHispano.Agendas.Web</AssemblyName>
     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
     <MvcBuildViews>false</MvcBuildViews>
     <UseIISExpress>false</UseIISExpress>
--- a/Agendas/trunk/src/Agendas.Web/Controllers/AccountController.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/AccountController.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,15 +1,9 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics.CodeAnalysis;
-using System.Linq;
-using System.Security.Principal;
-using System.Web;
-using System.Web.Mvc;
+using System.Web.Mvc;
 using System.Web.Routing;
 using System.Web.Security;
-using Agendas.Web.Models;
+using AltNetHispano.Agendas.Web.Models;
 
-namespace Agendas.Web.Controllers
+namespace AltNetHispano.Agendas.Web.Controllers
 {
     public class AccountController : Controller
     {
--- a/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,11 +1,11 @@
 using System;
 using System.Linq;
 using System.Web.Mvc;
-using Agendas.Factories;
-using Agendas.Web.Models;
 using AltNetHispano.Agendas.Domain.Exceptions;
+using AltNetHispano.Agendas.Factories;
+using AltNetHispano.Agendas.Web.Models;
 
-namespace Agendas.Web.Controllers
+namespace AltNetHispano.Agendas.Web.Controllers
 {
     public class EventoController : Controller
     {
--- a/Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,10 +1,6 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.Mvc;
+using System.Web.Mvc;
 
-namespace Agendas.Web.Controllers
+namespace AltNetHispano.Agendas.Web.Controllers
 {
     public class HomeController : Controller
     {
--- a/Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,11 +1,11 @@
 using System;
 using System.Linq;
 using System.Web.Mvc;
-using Agendas.Factories;
-using Agendas.Web.Models;
 using AltNetHispano.Agendas.Domain.Exceptions;
+using AltNetHispano.Agendas.Factories;
+using AltNetHispano.Agendas.Web.Models;
 
-namespace Agendas.Web.Controllers
+namespace AltNetHispano.Agendas.Web.Controllers
 {
 	public class PropuestaController : Controller
 	{
--- a/Agendas/trunk/src/Agendas.Web/Global.asax	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Global.asax	Thu Mar 17 16:59:29 2011 -0300
@@ -1,1 +1,1 @@
-<%@ Application Codebehind="Global.asax.cs" Inherits="Agendas.Web.MvcApplication" Language="C#" %>
+<%@ Application Codebehind="Global.asax.cs" Inherits="AltNetHispano.Agendas.Web.MvcApplication" Language="C#" %>
--- a/Agendas/trunk/src/Agendas.Web/Global.asax.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Global.asax.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,11 +1,8 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web.Mvc;
+using System.Web.Mvc;
 using System.Web.Routing;
-using Agendas.Factories;
+using AltNetHispano.Agendas.Factories;
 
-namespace Agendas.Web
+namespace AltNetHispano.Agendas.Web
 {
     // Note: For instructions on enabling IIS6 or IIS7 classic mode, 
     // visit http://go.microsoft.com/?LinkId=9394801
--- a/Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -2,7 +2,7 @@
 using System.Web;
 using AltNetHispano.Agendas.Domain;
 
-namespace Agendas.Web
+namespace AltNetHispano.Agendas.Web
 {
 	public class HttpContextIdentityProvider : ISeguridad
 	{
--- a/Agendas/trunk/src/Agendas.Web/Models/AccountModels.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/AccountModels.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,14 +1,11 @@
 using System;
 using System.Collections.Generic;
-using System.ComponentModel;
 using System.ComponentModel.DataAnnotations;
 using System.Globalization;
-using System.Linq;
-using System.Web;
 using System.Web.Mvc;
 using System.Web.Security;
 
-namespace Agendas.Web.Models
+namespace AltNetHispano.Agendas.Web.Models
 {
 
     #region Models
--- a/Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -3,7 +3,7 @@
 using System.ComponentModel.DataAnnotations;
 using System.Web.Mvc;
 
-namespace Agendas.Web.Models
+namespace AltNetHispano.Agendas.Web.Models
 {
     public class EventoIndexModel
     {
--- a/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,9 +1,8 @@
-using System;
-using System.Collections.Generic;
+using System.Collections.Generic;
 using System.ComponentModel.DataAnnotations;
 using System.Web.Mvc;
 
-namespace Agendas.Web.Models
+namespace AltNetHispano.Agendas.Web.Models
 {
     public class PropuestaIndexModel
     {
--- a/Agendas/trunk/src/Agendas.Web/Properties/AssemblyInfo.cs	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Properties/AssemblyInfo.cs	Thu Mar 17 16:59:29 2011 -0300
@@ -1,5 +1,4 @@
 using System.Reflection;
-using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
 // General Information about an assembly is controlled through the following 
--- a/Agendas/trunk/src/Agendas.Web/Views/Account/ChangePassword.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Account/ChangePassword.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.ChangePasswordModel
+@model AltNetHispano.Agendas.Web.Models.ChangePasswordModel
 
 @{
     ViewBag.Title = "Change Password";
--- a/Agendas/trunk/src/Agendas.Web/Views/Account/LogOn.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Account/LogOn.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.LogOnModel
+@model AltNetHispano.Agendas.Web.Models.LogOnModel
 
 @{
     ViewBag.Title = "Log On";
--- a/Agendas/trunk/src/Agendas.Web/Views/Account/Register.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Account/Register.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.RegisterModel
+@model AltNetHispano.Agendas.Web.Models.RegisterModel
 
 @{
     ViewBag.Title = "Register";
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/Edit.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/Edit.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.AgendaEditModel
+@model AltNetHispano.Agendas.Web.Models.AgendaEditModel
 @{
     ViewBag.Title = "Agenda";
 }
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.EventoIndexModel
+@model AltNetHispano.Agendas.Web.Models.EventoIndexModel
 @{
     ViewBag.Title = "Agenda";
 }
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/New.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/New.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.EventoNewModel
+@model AltNetHispano.Agendas.Web.Models.EventoNewModel
 @{
     ViewBag.Title = "Agenda";
 }
--- a/Agendas/trunk/src/Agendas.Web/Views/Propuesta/Edit.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Propuesta/Edit.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.PropuestaEditModel
+@model AltNetHispano.Agendas.Web.Models.PropuestaEditModel
 @{
     ViewBag.Title = "Propuestas";
 }
--- a/Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.PropuestaIndexModel
+@model AltNetHispano.Agendas.Web.Models.PropuestaIndexModel
 @{
     ViewBag.Title = "Propuestas";
 }
--- a/Agendas/trunk/src/Agendas.Web/Views/Propuesta/New.cshtml	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Propuesta/New.cshtml	Thu Mar 17 16:59:29 2011 -0300
@@ -1,4 +1,4 @@
-@model Agendas.Web.Models.PropuestaNewModel
+@model AltNetHispano.Agendas.Web.Models.PropuestaNewModel
 @{
     ViewBag.Title = "Agenda";
 }
--- a/Agendas/trunk/src/Agendas.sln	Thu Mar 17 14:45:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.sln	Thu Mar 17 16:59:29 2011 -0300
@@ -15,6 +15,11 @@
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Agendas.Factories", "Agendas.Factories\Agendas.Factories.csproj", "{306DDA8A-49A5-42E5-A639-A9D3D521865F}"
 EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{961F7E5F-5192-4562-9F4C-DCEDBB43A6C8}"
+	ProjectSection(SolutionItems) = preProject
+		Features.txt = Features.txt
+	EndProjectSection
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU