Skip to content

Commit a79bc75

Browse files
Migrate to csproj (aspnet#703)
Migrate to csproj
1 parent 795aac2 commit a79bc75

File tree

56 files changed

+576
-980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+576
-980
lines changed

.gitignore

Lines 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

JavaScriptServices.sln

Lines changed: 179 additions & 103 deletions
Large diffs are not rendered by default.
Lines 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>

global.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

pack-local.sh

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines 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>

samples/angular/MusicStore/MusicStore.xproj

Lines changed: 0 additions & 20 deletions
This file was deleted.

samples/angular/MusicStore/project.json

Lines changed: 0 additions & 79 deletions
This file was deleted.
Lines 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>

samples/misc/LatencyTest/LatencyTest.xproj

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)