Skip to content

Commit 80c7588

Browse files
committed
Updated a dependencies in sample projects
1 parent 93e1c1e commit 80c7588

File tree

7 files changed

+33
-38
lines changed

7 files changed

+33
-38
lines changed

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.5" />
1919
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.6" />
2020
<PackageReference Include="Microsoft.AspNetCore.Mvc.TagHelpers" Version="1.0.6" />
21-
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.5" />
21+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.6" />
2222
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.6" />
2323
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.5" />
2424
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.0.2" />
@@ -48,11 +48,8 @@
4848
</None>
4949
</ItemGroup>
5050

51-
<Target Name="GulpClean" AfterTargets="Clean">
52-
<Exec Command="gulp clean-builded-assets" />
53-
</Target>
5451
<Target Name="GulpBuild" AfterTargets="AfterBuild">
55-
<Exec Command="gulp build-assets" />
52+
<Exec Command="gulp" />
5653
</Target>
5754
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
5855
<Exec Command="npm install" />

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/Properties/launchSettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"windowsAuthentication": false,
44
"anonymousAuthentication": true,
55
"iisExpress": {
6-
"applicationUrl": "http://localhost:2872/",
6+
"applicationUrl": "http://localhost:15463/",
77
"sslPort": 0
88
}
99
},
@@ -18,10 +18,10 @@
1818
"JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1": {
1919
"commandName": "Project",
2020
"launchBrowser": true,
21-
"launchUrl": "http://localhost:5000",
2221
"environmentVariables": {
2322
"ASPNETCORE_ENVIRONMENT": "Development"
24-
}
23+
},
24+
"applicationUrl": "http://localhost:15465/"
2525
}
2626
}
2727
}
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<system.webServer>
4-
<handlers>
5-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
6-
</handlers>
7-
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00" />
8-
</system.webServer>
3+
<system.webServer>
4+
<handlers>
5+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
6+
</handlers>
7+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00">
8+
<environmentVariables />
9+
</aspNetCore>
10+
</system.webServer>
911
</configuration>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.5" />
1818
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.6" />
1919
<PackageReference Include="Microsoft.AspNetCore.Mvc.TagHelpers" Version="1.0.6" />
20-
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.5" />
20+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.6" />
2121
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.6" />
2222
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.5" />
2323
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.0.2" />
@@ -51,11 +51,8 @@
5151
</None>
5252
</ItemGroup>
5353

54-
<Target Name="GulpClean" AfterTargets="Clean">
55-
<Exec Command="gulp clean-builded-assets" />
56-
</Target>
5754
<Target Name="GulpBuild" AfterTargets="AfterBuild">
58-
<Exec Command="gulp build-assets" />
55+
<Exec Command="gulp" />
5956
</Target>
6057
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
6158
<Exec Command="npm install" />
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<system.webServer>
4-
<handlers>
5-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
6-
</handlers>
7-
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00" />
8-
</system.webServer>
3+
<system.webServer>
4+
<handlers>
5+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
6+
</handlers>
7+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00">
8+
<environmentVariables />
9+
</aspNetCore>
10+
</system.webServer>
911
</configuration>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2.csproj

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
<Import Project="../../build/common.props" />
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
18-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.0" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
20-
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
21-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.0" />
22-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
17+
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.2" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.2" />
20+
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.2" />
21+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.2" />
22+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.2" />
2323
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64" Version="3.0.0-rc3" />
2424
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64" Version="3.0.0-rc3" />
2525
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-arm" Version="3.0.0-rc3" />
@@ -37,7 +37,7 @@
3737
</ItemGroup>
3838

3939
<ItemGroup>
40-
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.1" />
40+
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.4" />
4141
</ItemGroup>
4242

4343
<ItemGroup>
@@ -46,11 +46,8 @@
4646
</None>
4747
</ItemGroup>
4848

49-
<Target Name="GulpClean" AfterTargets="Clean">
50-
<Exec Command="gulp clean-builded-assets" />
51-
</Target>
5249
<Target Name="GulpBuild" AfterTargets="AfterBuild">
53-
<Exec Command="gulp build-assets" />
50+
<Exec Command="gulp" />
5451
</Target>
5552
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
5653
<Exec Command="npm install" />

samples/JavaScriptEngineSwitcher.Sample.Logic/JavaScriptEngineSwitcher.Sample.Logic.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
</ItemGroup>
3232

3333
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
34-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.0.1" />
35-
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.0.1" />
34+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.0.4" />
35+
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.0.4" />
3636
</ItemGroup>
3737

3838
</Project>

0 commit comments

Comments
 (0)