Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a79bc75

Browse filesBrowse files
Migrate to csproj (aspnet#703)
Migrate to csproj
1 parent 795aac2 commit a79bc75
Copy full SHA for a79bc75

File tree

Expand file treeCollapse file tree

56 files changed

+576
-980
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

56 files changed

+576
-980
lines changed
Open diff view settings
Collapse file

‎.gitignore‎

Copy file name to clipboardExpand all lines: .gitignore
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ npm-debug.log
3939
/templates/*/ClientApp/dist/
4040
/templates/*/yarn.lock
4141
.vscode/
42+
43+
/templates/*/Properties/launchSettings.json
Collapse file

‎JavaScriptServices.sln‎

Copy file name to clipboardExpand all lines: JavaScriptServices.sln
+179-103Lines changed: 179 additions & 103 deletions
Large diffs are not rendered by default.
Collapse file
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<clear />
5-
<add key="AspNetVNext" value="https://www.myget.org/f/aspnetmaster/api/v3/index.json" />
4+
<add key="AspNetCoreTools" value="https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
65
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
76
</packageSources>
8-
</configuration>
7+
</configuration>
Collapse file

‎global.json‎

Copy file name to clipboardExpand all lines: global.json
-4Lines changed: 0 additions & 4 deletions
This file was deleted.
Collapse file

‎pack-local.sh‎

Copy file name to clipboardExpand all lines: pack-local.sh
-23Lines changed: 0 additions & 23 deletions
This file was deleted.
Collapse file
+29Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.AngularServices\Microsoft.AspNetCore.AngularServices.csproj" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
15+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.0" />
16+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" />
17+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="1.1.0" />
19+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
20+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.0" />
21+
<PackageReference Include="AutoMapper" Version="5.0.2" />
22+
</ItemGroup>
23+
24+
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
25+
<Exec Command="npm install" />
26+
<Exec Command="gulp" />
27+
</Target>
28+
29+
</Project>
Collapse file

‎samples/angular/MusicStore/MusicStore.xproj‎

Copy file name to clipboardExpand all lines: samples/angular/MusicStore/MusicStore.xproj
-20Lines changed: 0 additions & 20 deletions
This file was deleted.
Collapse file

‎samples/angular/MusicStore/project.json‎

Copy file name to clipboardExpand all lines: samples/angular/MusicStore/project.json
-79Lines changed: 0 additions & 79 deletions
This file was deleted.
Collapse file
+17Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<IsPackable>false</IsPackable>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.NodeServices\Microsoft.AspNetCore.NodeServices.csproj" />
10+
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.NodeServices.Sockets\Microsoft.AspNetCore.NodeServices.Sockets.csproj" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.0" />
15+
</ItemGroup>
16+
17+
</Project>
Collapse file

‎samples/misc/LatencyTest/LatencyTest.xproj‎

Copy file name to clipboardExpand all lines: samples/misc/LatencyTest/LatencyTest.xproj
-19Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.