Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 6ae650c

Browse files
author
moozzyk
committed
Review feedback
1 parent d3c8f4a commit 6ae650c

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

build/repo.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
2-
<Target Name="RestoreNpm">
2+
<Target Name="RestoreNpm" AfterTargets="Restore">
33
<Message Text="Restoring NPM modules" Importance="high" />
44
<Exec Command="npm install" WorkingDirectory="$(RepositoryRoot)" />
55
</Target>

samples/ChatSample/ChatSample.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR\Microsoft.AspNetCore.SignalR.csproj" />
15-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" />
15+
16+
<!-- ReferenceOutputAssembly="false" suppresses NuGet attempting to use the project reference as a compile reference.-->
17+
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" ReferenceOutputAssembly="false" />
1618
</ItemGroup>
1719

1820
<ItemGroup>

samples/SocketsSample/SocketsSample.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
<ItemGroup>
1313
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Redis\Microsoft.AspNetCore.SignalR.Redis.csproj" />
14-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" />
14+
<!-- ReferenceOutputAssembly="false" suppresses NuGet attempting to use the project reference as a compile reference.-->
15+
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" ReferenceOutputAssembly="false" />
1516

1617
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
1718
<PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCoreVersion)" />

src/Microsoft.AspNetCore.SignalR.Client.TS/Microsoft.AspNetCore.SignalR.Client.TS.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<Import Project="..\..\build\common.props" />
55
<PropertyGroup>
66
<TargetFramework>netstandard1.0</TargetFramework>
7+
<IsPackable>false</IsPackable>
78
</PropertyGroup>
89

910
<PropertyGroup>
@@ -28,7 +29,4 @@
2829
<Target Name="Clean">
2930
<RemoveDir Directories="$(SignalRClientDistFolder)" />
3031
</Target>
31-
32-
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\repo.targets" />
3332
</Project>
34-

test/Microsoft.AspNetCore.SignalR.Test.Server/Microsoft.AspNetCore.SignalR.Test.Server.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
<ItemGroup>
1212
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR\Microsoft.AspNetCore.SignalR.csproj" />
13-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" />
13+
<!-- ReferenceOutputAssembly="false" suppresses NuGet attempting to use the project reference as a compile reference.-->
14+
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client.TS\Microsoft.AspNetCore.SignalR.Client.TS.csproj" ReferenceOutputAssembly="false" />
1415
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="$(AspNetCoreVersion)" />
1516
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="$(AspNetCoreVersion)" />
1617
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(AspNetCoreVersion)" />

0 commit comments

Comments
 (0)