Skip to content

Commit a2e6322

Browse files
authored
Restore testassets during build to prevent timeouts (#8038)
* Restore testassets during build to prevent timeouts Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1695
1 parent 1ca6202 commit a2e6322

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/Razor/Razor.Design/test/IntegrationTests/Microsoft.AspNetCore.Razor.Design.Test.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,8 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
6161
</ItemGroup>
6262
</Target>
6363

64+
<Target Name="RestoreTestProjects" BeforeTargets="Restore">
65+
<MSBuild Projects="..\testassets\RestoreTestProjects\RestoreTestProjects.csproj" Targets="Restore" />
66+
</Target>
67+
6468
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>netcoreapp2.1</TargetFramework>
4+
</PropertyGroup>
5+
6+
<ItemGroup>
7+
<ProjectReference Include="..\AppWithP2PReference\AppWithP2PReference.csproj" />
8+
<ProjectReference Include="..\ClassLibrary\ClassLibrary.csproj" />
9+
<ProjectReference Include="..\ClassLibrary2\ClassLibrary2.csproj" />
10+
<ProjectReference Include="..\SimpleMvc\SimpleMvc.csproj" />
11+
<ProjectReference Include="..\SimpleMvcFSharp\SimpleMvcFSharp.fsproj" />
12+
<ProjectReference Include="..\SimplePages\SimplePages.csproj" />
13+
</ItemGroup>
14+
</Project>

0 commit comments

Comments
 (0)