Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Agendas.Web.csproj @ 179:1deccd6c3cb2
Aplicando seguridad x roles en sitio web
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 15:24:26 -0300 |
parents | ea85bd893247 |
children | 222362c29416 |
rev | line source |
---|---|
10 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion> | |
7 </ProductVersion> | |
8 <SchemaVersion>2.0</SchemaVersion> | |
9 <ProjectGuid>{319A8E3D-C61E-455F-A1BF-A6B1B1636BAB}</ProjectGuid> | |
10 <ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> | |
11 <OutputType>Library</OutputType> | |
12 <AppDesignerFolder>Properties</AppDesignerFolder> | |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
33
diff
changeset
|
13 <RootNamespace>AltNetHispano.Agendas.Web</RootNamespace> |
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
33
diff
changeset
|
14 <AssemblyName>AltNetHispano.Agendas.Web</AssemblyName> |
10 | 15 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
16 <MvcBuildViews>false</MvcBuildViews> | |
33 | 17 <UseIISExpress>false</UseIISExpress> |
10 | 18 </PropertyGroup> |
19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
20 <DebugSymbols>true</DebugSymbols> | |
21 <DebugType>full</DebugType> | |
22 <Optimize>false</Optimize> | |
23 <OutputPath>bin\</OutputPath> | |
24 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
25 <ErrorReport>prompt</ErrorReport> | |
26 <WarningLevel>4</WarningLevel> | |
27 </PropertyGroup> | |
28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
29 <DebugType>pdbonly</DebugType> | |
30 <Optimize>true</Optimize> | |
31 <OutputPath>bin\</OutputPath> | |
32 <DefineConstants>TRACE</DefineConstants> | |
33 <ErrorReport>prompt</ErrorReport> | |
34 <WarningLevel>4</WarningLevel> | |
35 </PropertyGroup> | |
36 <ItemGroup> | |
79
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
37 <Reference Include="DataAnnotationsExtensions"> |
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
38 <HintPath>..\packages\DataAnnotationsExtensions.0.6.0.0\lib\NETFramework40\DataAnnotationsExtensions.dll</HintPath> |
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
39 </Reference> |
10 | 40 <Reference Include="Microsoft.CSharp" /> |
47
dcd8fc8d479c
Quitando copia local de dlls de mvc3
Nelo@Win7x64.cpe.telecentro.net.ar
parents:
34
diff
changeset
|
41 <Reference Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> |
dcd8fc8d479c
Quitando copia local de dlls de mvc3
Nelo@Win7x64.cpe.telecentro.net.ar
parents:
34
diff
changeset
|
42 <Reference Include="System.Web.WebPages" /> |
dcd8fc8d479c
Quitando copia local de dlls de mvc3
Nelo@Win7x64.cpe.telecentro.net.ar
parents:
34
diff
changeset
|
43 <Reference Include="System.Web.Helpers" /> |
10 | 44 <Reference Include="System" /> |
45 <Reference Include="System.Data" /> | |
46 <Reference Include="System.Drawing" /> | |
47 <Reference Include="System.Web.DynamicData" /> | |
48 <Reference Include="System.Web.Entity" /> | |
49 <Reference Include="System.Web.ApplicationServices" /> | |
50 <Reference Include="System.ComponentModel.DataAnnotations" /> | |
51 <Reference Include="System.Core" /> | |
52 <Reference Include="System.Data.DataSetExtensions" /> | |
53 <Reference Include="System.Xml.Linq" /> | |
47
dcd8fc8d479c
Quitando copia local de dlls de mvc3
Nelo@Win7x64.cpe.telecentro.net.ar
parents:
34
diff
changeset
|
54 <Reference Include="System.Web" /> |
10 | 55 <Reference Include="System.Web.Extensions" /> |
56 <Reference Include="System.Web.Abstractions" /> | |
57 <Reference Include="System.Web.Routing" /> | |
58 <Reference Include="System.Xml" /> | |
59 <Reference Include="System.Web.Services" /> | |
60 <Reference Include="System.EnterpriseServices" /> | |
61 </ItemGroup> | |
62 <ItemGroup> | |
63 <Compile Include="Controllers\AccountController.cs" /> | |
117 | 64 <Compile Include="Controllers\ControllerMessageExtensions.cs" /> |
179 | 65 <Compile Include="Controllers\CustomAuthorizeAttribute.cs" /> |
66 <Compile Include="Controllers\ErrorController.cs" /> | |
25
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
19
diff
changeset
|
67 <Compile Include="Controllers\EventoController.cs" /> |
119 | 68 <Compile Include="Controllers\HistoricoController.cs" /> |
10 | 69 <Compile Include="Controllers\HomeController.cs" /> |
112
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
106
diff
changeset
|
70 <Compile Include="Controllers\PerfilController.cs" /> |
144
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
71 <Compile Include="Controllers\PersonaController.cs" /> |
141
a5ff4de4a1d3
EditorForModel en Nuevo Evento y Proponer
Nelo@Guinea.neluz.int
parents:
119
diff
changeset
|
72 <Compile Include="DataProviders.cs" /> |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
150
diff
changeset
|
73 <Compile Include="EditorDefaultExtensions.cs" /> |
10 | 74 <Compile Include="Global.asax.cs"> |
75 <DependentUpon>Global.asax</DependentUpon> | |
76 </Compile> | |
33 | 77 <Compile Include="HttpContextIdentityProvider.cs" /> |
85 | 78 <Compile Include="CustomModelMetadataProvider\DataAnnotationAndConventionModelMetadataProvider.cs" /> |
84 | 79 <Compile Include="CustomModelMetadataProvider\IResolverByConvention.cs" /> |
80 <Compile Include="CustomModelMetadataProvider\ResolverThroughResource.cs" /> | |
94
db4b1e2cae49
Cambio del nombre de la clase Ponente a Persona
Nelo@Kenia.neluz.int
parents:
93
diff
changeset
|
81 <Compile Include="IdentityHelper.cs" /> |
26 | 82 <Compile Include="Models\EventoModel.cs" /> |
106
80c22175c9b5
agregado de tipo de evento (van, cafe, grupoestudio)
jorge.rowies
parents:
94
diff
changeset
|
83 <Compile Include="Models\EventoModelHelper.cs" /> |
119 | 84 <Compile Include="Models\HistoricoModel.cs" /> |
112
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
106
diff
changeset
|
85 <Compile Include="Models\PerfilModel.cs" /> |
144
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
86 <Compile Include="Models\PersonaModel.cs" /> |
26 | 87 <Compile Include="Models\PropuestaModel.cs" /> |
10 | 88 <Compile Include="Properties\AssemblyInfo.cs" /> |
93 | 89 <Compile Include="Services\FormsAuthenticationService.cs" /> |
90 <Compile Include="Services\IFormsAuthenticationService.cs" /> | |
10 | 91 </ItemGroup> |
92 <ItemGroup> | |
117 | 93 <Content Include="Content\AltNetHispanoVans.css" /> |
48 | 94 <Content Include="Content\altnetlogo.png" /> |
86 | 95 <Content Include="Content\question.jpg" /> |
156 | 96 <Content Include="Content\themes\altnethispano\images\div_content.gif" /> |
97 <Content Include="Content\themes\altnethispano\images\div_wrapperIn.gif" /> | |
98 <Content Include="Content\themes\altnethispano\images\header-background.gif" /> | |
99 <Content Include="Content\themes\altnethispano\images\logoDiscountASPNET.gif" /> | |
100 <Content Include="Content\themes\altnethispano\images\menu.png" /> | |
91
9dfbe4e29c6a
Imagen del boton de sign-in con twitter
Nelo@Kenia.neluz.int
parents:
90
diff
changeset
|
101 <Content Include="Content\twitter\sign-in-with-twitter-d-sm.png" /> |
9dfbe4e29c6a
Imagen del boton de sign-in con twitter
Nelo@Kenia.neluz.int
parents:
90
diff
changeset
|
102 <Content Include="Content\twitter\sign-in-with-twitter-d.png" /> |
9dfbe4e29c6a
Imagen del boton de sign-in con twitter
Nelo@Kenia.neluz.int
parents:
90
diff
changeset
|
103 <Content Include="Content\twitter\sign-in-with-twitter-l-sm.png" /> |
9dfbe4e29c6a
Imagen del boton de sign-in con twitter
Nelo@Kenia.neluz.int
parents:
90
diff
changeset
|
104 <Content Include="Content\twitter\sign-in-with-twitter-l.png" /> |
10 | 105 <Content Include="Global.asax" /> |
67
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
106 <Content Include="hibernate.cfg.xml"> |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
107 <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
108 </Content> |
15 | 109 <Content Include="Web.config"> |
110 <SubType>Designer</SubType> | |
111 </Content> | |
10 | 112 <Content Include="Web.Debug.config"> |
113 <DependentUpon>Web.config</DependentUpon> | |
114 </Content> | |
115 <Content Include="Web.Release.config"> | |
116 <DependentUpon>Web.config</DependentUpon> | |
117 </Content> | |
118 <Content Include="Content\Site.css" /> | |
119 <Content Include="Content\themes\base\jquery-ui.css" /> | |
120 <Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" /> | |
121 <Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" /> | |
122 <Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" /> | |
123 <Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" /> | |
124 <Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" /> | |
125 <Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" /> | |
126 <Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" /> | |
127 <Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" /> | |
128 <Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" /> | |
129 <Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" /> | |
130 <Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" /> | |
131 <Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" /> | |
132 <Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" /> | |
133 <Content Include="Scripts\jquery-1.4.4.js" /> | |
134 <Content Include="Scripts\jquery-1.4.4.min.js" /> | |
135 <Content Include="Scripts\jquery-1.4.4-vsdoc.js" /> | |
136 <Content Include="Scripts\jquery.unobtrusive-ajax.js" /> | |
137 <Content Include="Scripts\jquery.unobtrusive-ajax.min.js" /> | |
138 <Content Include="Scripts\jquery.validate.js" /> | |
139 <Content Include="Scripts\jquery.validate.min.js" /> | |
140 <Content Include="Scripts\jquery.validate.unobtrusive.js" /> | |
141 <Content Include="Scripts\jquery.validate.unobtrusive.min.js" /> | |
142 <Content Include="Scripts\jquery.validate-vsdoc.js" /> | |
143 <Content Include="Scripts\jquery-ui.js" /> | |
144 <Content Include="Scripts\jquery-ui.min.js" /> | |
145 <Content Include="Scripts\MicrosoftAjax.js" /> | |
146 <Content Include="Scripts\MicrosoftAjax.debug.js" /> | |
147 <Content Include="Scripts\MicrosoftMvcAjax.js" /> | |
148 <Content Include="Scripts\MicrosoftMvcAjax.debug.js" /> | |
149 <Content Include="Scripts\MicrosoftMvcValidation.js" /> | |
150 <Content Include="Scripts\MicrosoftMvcValidation.debug.js" /> | |
151 <Content Include="Views\_ViewStart.cshtml" /> | |
152 <Content Include="Views\Account\LogOn.cshtml" /> | |
153 <Content Include="Views\Home\About.cshtml" /> | |
154 <Content Include="Views\Home\Index.cshtml" /> | |
155 <Content Include="Views\Shared\Error.cshtml" /> | |
156 <Content Include="Views\Shared\_LogOnPartial.cshtml" /> | |
157 <Content Include="Views\Shared\_Layout.cshtml" /> | |
158 <Content Include="Views\Web.config" /> | |
159 </ItemGroup> | |
160 <ItemGroup> | |
161 <Folder Include="App_Data\" /> | |
162 </ItemGroup> | |
163 <ItemGroup> | |
25
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
19
diff
changeset
|
164 <Content Include="Views\Evento\Index.cshtml" /> |
10 | 165 </ItemGroup> |
166 <ItemGroup> | |
158
734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
nelopauselli
parents:
156
diff
changeset
|
167 <ProjectReference Include="..\Agendas.Configurations\Agendas.Configurations.csproj"> |
734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
nelopauselli
parents:
156
diff
changeset
|
168 <Project>{583304D0-51C7-4808-BE20-6E9A904CA908}</Project> |
734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
nelopauselli
parents:
156
diff
changeset
|
169 <Name>Agendas.Configurations</Name> |
734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
nelopauselli
parents:
156
diff
changeset
|
170 </ProjectReference> |
10 | 171 <ProjectReference Include="..\Agendas.Domain\Agendas.Domain.csproj"> |
172 <Project>{A14907DF-02E4-4FA7-BE27-4292AF50AA22}</Project> | |
173 <Name>Agendas.Domain</Name> | |
174 </ProjectReference> | |
15 | 175 <ProjectReference Include="..\Agendas.Factories\Agendas.Factories.csproj"> |
176 <Project>{306DDA8A-49A5-42E5-A639-A9D3D521865F}</Project> | |
177 <Name>Agendas.Factories</Name> | |
178 </ProjectReference> | |
83
7e9ffde4022d
Implementando DataAnnotation desde recursos y por convención
nelopauselli
parents:
79
diff
changeset
|
179 <ProjectReference Include="..\Agendas.Resources\Agendas.Resources.csproj"> |
7e9ffde4022d
Implementando DataAnnotation desde recursos y por convención
nelopauselli
parents:
79
diff
changeset
|
180 <Project>{444D25FB-FC1C-48DC-9EAD-D4C78F2A10CA}</Project> |
7e9ffde4022d
Implementando DataAnnotation desde recursos y por convención
nelopauselli
parents:
79
diff
changeset
|
181 <Name>Agendas.Resources</Name> |
7e9ffde4022d
Implementando DataAnnotation desde recursos y por convención
nelopauselli
parents:
79
diff
changeset
|
182 </ProjectReference> |
90
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
86
diff
changeset
|
183 <ProjectReference Include="..\Agendas.Twitter\Agendas.Twitter.csproj"> |
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
86
diff
changeset
|
184 <Project>{D8DA7ED2-A274-4DF6-9DD2-A9DC65F4C2F5}</Project> |
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
86
diff
changeset
|
185 <Name>Agendas.Twitter</Name> |
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
86
diff
changeset
|
186 </ProjectReference> |
10 | 187 </ItemGroup> |
48 | 188 <ItemGroup> |
189 <Content Include="Views\Shared\_Menu.cshtml" /> | |
190 </ItemGroup> | |
79
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
191 <ItemGroup> |
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
192 <Content Include="packages.config" /> |
8df9db937434
Url de invitación en la UI: validación y persistencia
nelopauselli
parents:
67
diff
changeset
|
193 </ItemGroup> |
86 | 194 <ItemGroup> |
195 <Content Include="Views\Shared\EditorTemplates\Object.cshtml" /> | |
196 </ItemGroup> | |
197 <ItemGroup> | |
198 <Content Include="Views\Shared\DisplayTemplates\Tooltip.cshtml" /> | |
199 </ItemGroup> | |
112
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
106
diff
changeset
|
200 <ItemGroup> |
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
106
diff
changeset
|
201 <Content Include="Views\Perfil\Index.cshtml" /> |
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
106
diff
changeset
|
202 </ItemGroup> |
113
0eac9a1c1a6c
Soporte para asociar cuentas internas a un usuario ya identificado con twitter
Carlos Peix
parents:
112
diff
changeset
|
203 <ItemGroup> |
117 | 204 <Content Include="Views\Shared\_Messages.cshtml" /> |
205 </ItemGroup> | |
118 | 206 <ItemGroup> |
119 | 207 <Content Include="Views\Historico\Index.cshtml" /> |
208 </ItemGroup> | |
141
a5ff4de4a1d3
EditorForModel en Nuevo Evento y Proponer
Nelo@Guinea.neluz.int
parents:
119
diff
changeset
|
209 <ItemGroup> |
a5ff4de4a1d3
EditorForModel en Nuevo Evento y Proponer
Nelo@Guinea.neluz.int
parents:
119
diff
changeset
|
210 <Content Include="Views\Shared\EditorTemplates\TipoEvento.cshtml" /> |
a5ff4de4a1d3
EditorForModel en Nuevo Evento y Proponer
Nelo@Guinea.neluz.int
parents:
119
diff
changeset
|
211 </ItemGroup> |
144
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
212 <ItemGroup> |
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
213 <Content Include="Views\Persona\Index.cshtml" /> |
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
214 </ItemGroup> |
a2b14da4902f
Alta y modificación de ponentes (personas)
Nelo@Guinea.neluz.int
parents:
142
diff
changeset
|
215 <ItemGroup> |
145
e6e6bfb1da9e
En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
Nelo@Guinea.neluz.int
parents:
144
diff
changeset
|
216 <Content Include="Views\Shared\EditorTemplates\Ponente.cshtml" /> |
e6e6bfb1da9e
En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
Nelo@Guinea.neluz.int
parents:
144
diff
changeset
|
217 </ItemGroup> |
150
19bab30521da
Pasando DateTime a un EditorTemplates
Nelo@Guinea.neluz.int
parents:
145
diff
changeset
|
218 <ItemGroup> |
19bab30521da
Pasando DateTime a un EditorTemplates
Nelo@Guinea.neluz.int
parents:
145
diff
changeset
|
219 <Content Include="Views\Shared\EditorTemplates\DateTime.cshtml" /> |
19bab30521da
Pasando DateTime a un EditorTemplates
Nelo@Guinea.neluz.int
parents:
145
diff
changeset
|
220 </ItemGroup> |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
150
diff
changeset
|
221 <ItemGroup> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
150
diff
changeset
|
222 <Content Include="Views\Shared\DefaultEditor.cshtml" /> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
150
diff
changeset
|
223 </ItemGroup> |
156 | 224 <ItemGroup> |
225 <Content Include="Views\Shared\_MenuPortal.cshtml" /> | |
226 </ItemGroup> | |
166 | 227 <ItemGroup> |
228 <Content Include="Views\Shared\EditorTemplates\TimeSpan.cshtml" /> | |
229 </ItemGroup> | |
167 | 230 <ItemGroup> |
231 <Content Include="Views\Shared\EditorTemplates\Url.cshtml" /> | |
232 </ItemGroup> | |
179 | 233 <ItemGroup> |
234 <Content Include="Views\Shared\SinPermisos.cshtml" /> | |
235 </ItemGroup> | |
10 | 236 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
237 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" /> | |
238 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
239 Other similar extension points exist, see Microsoft.Common.targets. | |
240 <Target Name="BeforeBuild"> | |
241 </Target> | |
242 <Target Name="AfterBuild"> | |
243 </Target> --> | |
244 <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'"> | |
245 <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" /> | |
246 </Target> | |
247 <ProjectExtensions> | |
248 <VisualStudio> | |
249 <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> | |
250 <WebProjectProperties> | |
251 <UseIIS>False</UseIIS> | |
90
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
86
diff
changeset
|
252 <AutoAssignPort>False</AutoAssignPort> |
10 | 253 <DevelopmentServerPort>1424</DevelopmentServerPort> |
254 <DevelopmentServerVPath>/</DevelopmentServerVPath> | |
255 <IISUrl> | |
256 </IISUrl> | |
257 <NTLMAuthentication>False</NTLMAuthentication> | |
258 <UseCustomServer>False</UseCustomServer> | |
259 <CustomServerUrl> | |
260 </CustomServerUrl> | |
261 <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> | |
262 </WebProjectProperties> | |
263 </FlavorProperties> | |
264 </VisualStudio> | |
265 </ProjectExtensions> | |
67
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
266 <PropertyGroup> |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
267 <PostBuildEvent>copy "$(SolutionDir)packages\NHibernate.Castle.3.1.0.4000\lib\Net35\NHibernate.ByteCode.Castle.dll" "$(TargetDir)" & |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
268 copy "$(SolutionDir)packages\Castle.Core.2.5.2\lib\NET35\Castle.Core.dll" "$(TargetDir)"</PostBuildEvent> |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
48
diff
changeset
|
269 </PropertyGroup> |
10 | 270 </Project> |