Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
f97cb73
Make HMR dramatically faster if you're using IIS Express
SteveSandersonMS Feb 24, 2017
1541a2b
Migrate NodeServices and NodeServices.Sockets to csproj
SteveSandersonMS Feb 22, 2017
b4e7d7b
Migrate SpaServices/AngularServices/ReactServices projects to csproj
SteveSandersonMS Feb 22, 2017
5a0cf0e
Add some solution items
SteveSandersonMS Feb 22, 2017
4e77054
Migrate LatencyTest/Webpack/NodeServicesExamples samples to csproj
SteveSandersonMS Feb 22, 2017
9927664
Migrate Angular and React samples to csproj
SteveSandersonMS Feb 22, 2017
bc66842
Add SPA templates to VS .sln (also renaming Aurelia project to Aureli…
SteveSandersonMS Feb 22, 2017
765586b
Migrate WebApplicationBasic template to csproj
SteveSandersonMS Feb 22, 2017
f50a015
Add template-builder and test dirs to VS solution as "web sites" unti…
SteveSandersonMS Feb 22, 2017
f4e151a
Add missing hint in solution file
SteveSandersonMS Feb 22, 2017
7c95f7c
Make sure VS doesn't litter the disk with irrelevant/harmful .js file…
SteveSandersonMS Feb 22, 2017
2c780a4
Respond to csproj migration code review feedback
SteveSandersonMS Feb 23, 2017
f125d3f
Add references to Internal.AspNetCore.Sdk. Move build files into "bui…
SteveSandersonMS Feb 24, 2017
45a6460
Remove unnecessary `Exclude` attributes as per CR feedback
SteveSandersonMS Feb 24, 2017
0429fbf
Only reference released versions of ASP.NET Core packages
SteveSandersonMS Feb 24, 2017
d0c3e81
End package descriptions with periods
SteveSandersonMS Feb 28, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ npm-debug.log
/templates/*/ClientApp/dist/
/templates/*/yarn.lock
.vscode/

/templates/*/Properties/launchSettings.json
282 changes: 179 additions & 103 deletions JavaScriptServices.sln

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions NuGet.master.config → NuGet.config
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="AspNetVNext" value="https://www.myget.org/f/aspnetmaster/api/v3/index.json" />
<add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
</configuration>
4 changes: 0 additions & 4 deletions global.json

This file was deleted.

23 changes: 0 additions & 23 deletions pack-local.sh

This file was deleted.

29 changes: 29 additions & 0 deletions samples/angular/MusicStore/MusicStore.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On all of your samples and template projects, consider adding <IsPackable>false</IsPackable>. This will allow you to execute dotnet pack on the solution and get packages for only those projects that should actually produce nuget packages.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

<TargetFramework>netcoreapp1.1</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.AngularServices\Microsoft.AspNetCore.AngularServices.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.0" />
<PackageReference Include="AutoMapper" Version="5.0.2" />
</ItemGroup>

<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
<Exec Command="npm install" />
<Exec Command="gulp" />
</Target>

</Project>
20 changes: 0 additions & 20 deletions samples/angular/MusicStore/MusicStore.xproj

This file was deleted.

79 changes: 0 additions & 79 deletions samples/angular/MusicStore/project.json

This file was deleted.

17 changes: 17 additions & 0 deletions samples/misc/LatencyTest/LatencyTest.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.NodeServices\Microsoft.AspNetCore.NodeServices.csproj" />
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.NodeServices.Sockets\Microsoft.AspNetCore.NodeServices.Sockets.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.0" />
</ItemGroup>

</Project>
19 changes: 0 additions & 19 deletions samples/misc/LatencyTest/LatencyTest.xproj

This file was deleted.

20 changes: 0 additions & 20 deletions samples/misc/LatencyTest/project.json

This file was deleted.

24 changes: 24 additions & 0 deletions samples/misc/NodeServicesExamples/NodeServicesExamples.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.NodeServices\Microsoft.AspNetCore.NodeServices.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
</ItemGroup>

<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
<Exec Command="npm install" />
</Target>

</Project>
20 changes: 0 additions & 20 deletions samples/misc/NodeServicesExamples/NodeServicesExamples.xproj

This file was deleted.

43 changes: 0 additions & 43 deletions samples/misc/NodeServicesExamples/project.json

This file was deleted.

11 changes: 0 additions & 11 deletions samples/misc/Webpack/Dockerfile

This file was deleted.

24 changes: 24 additions & 0 deletions samples/misc/Webpack/Webpack.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.SpaServices\Microsoft.AspNetCore.SpaServices.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
</ItemGroup>

<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
<Exec Command="npm install" />
</Target>

</Project>
20 changes: 0 additions & 20 deletions samples/misc/Webpack/Webpack.xproj

This file was deleted.

Loading