Skip to content

Commit 7404566

Browse files
authored
Merge pull request #27 from ensemblebd/dev
Updates for Windows environment, added support for Visual Studio operations
2 parents 24d86c8 + d17875c commit 7404566

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ ops/*.retry
3030

3131
# IDE
3232
.idea/
33+
.vs/

api/Properties/launchSettings.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:5000/",
7+
"sslPort": 0
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"launchUrl": "http://localhost:5000",
15+
"environmentVariables": {
16+
"NODE_PATH": "../node_modules/",
17+
"ASPNETCORE_ENVIRONMENT": "Development"
18+
}
19+
},
20+
"api": {
21+
"commandName": "Project",
22+
"launchBrowser": true,
23+
"environmentVariables": {
24+
"NODE_PATH": "../node_modules/",
25+
"ASPNETCORE_ENVIRONMENT": "Development"
26+
},
27+
"applicationUrl": "http://localhost:5000/"
28+
}
29+
}
30+
}

api/api.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@
2222
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
2323
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
2424
</ItemGroup>
25+
26+
2527
</Project>

0 commit comments

Comments
 (0)