Skip to content

Commit ab633e3

Browse files
committed
Fixed project type for Azure deployment.
1 parent 0fbaa38 commit ab633e3

File tree

2 files changed

+66
-31
lines changed

2 files changed

+66
-31
lines changed

09_NodeChatroom/09_NodeChatroom.njsproj

Lines changed: 61 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,18 @@
1010
<PropertyGroup>
1111
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
1212
<SchemaVersion>2.0</SchemaVersion>
13-
<ProjectGuid>216fef5b-bae6-44db-8ebd-16e6d09842f7</ProjectGuid>
13+
<ProjectGuid>587a3fef-82d4-46c4-8592-a3e4cfbde93e</ProjectGuid>
1414
<ProjectHome>.</ProjectHome>
15-
<StartupFile>
16-
</StartupFile>
17-
<StartWebBrowser>False</StartWebBrowser>
15+
<StartupFile>app.js</StartupFile>
1816
<SearchPath>
1917
</SearchPath>
2018
<WorkingDirectory>.</WorkingDirectory>
2119
<OutputPath>.</OutputPath>
2220
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
23-
<ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
21+
<ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
2422
<ProjectView>ShowAllFiles</ProjectView>
25-
<StartWebBrowser>false</StartWebBrowser>
23+
<NodejsPort>1337</NodejsPort>
24+
<StartWebBrowser>true</StartWebBrowser>
2625
</PropertyGroup>
2726
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
2827
<DebugSymbols>true</DebugSymbols>
@@ -31,38 +30,69 @@
3130
<DebugSymbols>true</DebugSymbols>
3231
</PropertyGroup>
3332
<ItemGroup>
33+
<Compile Include="app.js" />
34+
<Compile Include="routes\index.js" />
35+
<Compile Include="routes\user.js" />
36+
<Content Include="package.json" />
37+
<Content Include="public\stylesheets\style.styl" />
38+
<Content Include="README.md" />
39+
<Content Include="views\index.jade" />
40+
<Content Include="views\layout.jade" />
41+
</ItemGroup>
42+
<ItemGroup>
43+
<Folder Include="bin\" />
3444
<Folder Include="public\" />
35-
<Folder Include="public\css\" />
36-
<Folder Include="public\fonts\" />
37-
<Folder Include="public\js\" />
45+
<Folder Include="public\images\" />
46+
<Folder Include="public\javascripts\" />
47+
<Folder Include="public\stylesheets\" />
3848
<Folder Include="routes\" />
3949
<Folder Include="views\" />
4050
</ItemGroup>
4151
<ItemGroup>
42-
<Content Include="package.json" />
43-
<Content Include="public\css\bootstrap-theme.css" />
44-
<Content Include="public\css\bootstrap-theme.css.map" />
45-
<Content Include="public\css\bootstrap-theme.min.css" />
46-
<Content Include="public\css\bootstrap.css" />
47-
<Content Include="public\css\bootstrap.css.map" />
48-
<Content Include="public\css\bootstrap.min.css" />
49-
<Content Include="public\css\style.styl" />
50-
<Content Include="public\fonts\glyphicons-halflings-regular.eot" />
51-
<Content Include="public\fonts\glyphicons-halflings-regular.svg" />
52-
<Content Include="public\fonts\glyphicons-halflings-regular.ttf" />
53-
<Content Include="public\fonts\glyphicons-halflings-regular.woff" />
54-
<Content Include="views\index.jade" />
55-
<Content Include="views\layout.jade" />
5652
<Content Include="Web.config" />
5753
<Content Include="Web.Debug.config" />
58-
</ItemGroup>
59-
<ItemGroup>
60-
<Compile Include="app.js" />
61-
<Compile Include="public\js\bootstrap.js" />
62-
<Compile Include="public\js\bootstrap.min.js" />
63-
<Compile Include="public\js\index.js" />
64-
<Compile Include="routes\index.js" />
65-
<Compile Include="routes\user.js" />
54+
<Content Include="bin\ChangeConfig.ps1" />
55+
<Content Include="bin\download.ps1" />
56+
<Content Include="bin\setup_web.cmd" />
57+
<Content Include="bin\node.cmd" />
6658
</ItemGroup>
6759
<Import Project="$(VSToolsPath)\Node.js Tools\Microsoft.NodejsTools.targets" />
60+
<ProjectExtensions>
61+
<VisualStudio>
62+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
63+
<WebProjectProperties>
64+
<UseIIS>False</UseIIS>
65+
<AutoAssignPort>True</AutoAssignPort>
66+
<DevelopmentServerPort>0</DevelopmentServerPort>
67+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
68+
<IISUrl>http://localhost:48022/</IISUrl>
69+
<NTLMAuthentication>False</NTLMAuthentication>
70+
<UseCustomServer>True</UseCustomServer>
71+
<CustomServerUrl>http://localhost:1337</CustomServerUrl>
72+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
73+
</WebProjectProperties>
74+
</FlavorProperties>
75+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}" User="">
76+
<WebProjectProperties>
77+
<StartPageUrl>
78+
</StartPageUrl>
79+
<StartAction>CurrentPage</StartAction>
80+
<AspNetDebugging>True</AspNetDebugging>
81+
<SilverlightDebugging>False</SilverlightDebugging>
82+
<NativeDebugging>False</NativeDebugging>
83+
<SQLDebugging>False</SQLDebugging>
84+
<ExternalProgram>
85+
</ExternalProgram>
86+
<StartExternalURL>
87+
</StartExternalURL>
88+
<StartCmdLineArguments>
89+
</StartCmdLineArguments>
90+
<StartWorkingDirectory>
91+
</StartWorkingDirectory>
92+
<EnableENC>False</EnableENC>
93+
<AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
94+
</WebProjectProperties>
95+
</FlavorProperties>
96+
</VisualStudio>
97+
</ProjectExtensions>
6898
</Project>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
body
2+
padding: 50px
3+
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
4+
a
5+
color: #00B7FF

0 commit comments

Comments
 (0)