Skip to content

Commit d7ad4c7

Browse files
authored
Fix incremental checks for test projects (#1186)
1 parent dd429e9 commit d7ad4c7

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

build/testsite.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<IISExpressAppHostConfig>$(MSBuildThisFileDirectory)applicationhost.config</IISExpressAppHostConfig>
77
<IISAppHostConfig>$(MSBuildThisFileDirectory)applicationhost.iis.config</IISAppHostConfig>
88
<PreserveCompilationContext>false</PreserveCompilationContext>
9+
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
910
</PropertyGroup>
1011

1112
<Import Project="assets.props" />

test/IIS.FunctionalTests/IIS.FunctionalTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
55
<TestGroupName>IIS.FunctionalTests</TestGroupName>
6+
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
67
</PropertyGroup>
78

89
<ItemGroup>

test/IISExpress.FunctionalTests/IISExpress.FunctionalTests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
5+
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
56
</PropertyGroup>
67

78
<ItemGroup>

0 commit comments

Comments
 (0)