33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<Project>
|
|
<Import Project="..\..\..\build\dependencies.props" />
|
|
<Import Project="..\..\..\build\runtimes.props" />
|
|
<PropertyGroup>
|
|
<!-- TODO: temporary while we reorganize source code and refactor dependency management -->
|
|
<DisablePackageReferenceRestrictions>true</DisablePackageReferenceRestrictions>
|
|
|
|
<StressTestWebSiteZipOutputPath>$(BuildDir)StressTestWebSite.zip</StressTestWebSiteZipOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\TestSites\*.csproj" />
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IISTestSite\*.csproj" />
|
|
<ExcludeSolutions Include="$(RepositoryRoot)IISIntegration.NoV1.sln" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(SkipIISTests)' == 'true'" >
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IIS.FunctionalTests\*.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(SkipIISExpressTests)' == 'true'" >
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IISExpress.FunctionalTests\*.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(SkipIISBackwardsCompatibilityTests)' == 'true'" >
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IIS.BackwardsCompatibility.FunctionalTests\*.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(SkipIISForwardsCompatibilityTests)' == 'true'" >
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IIS.ForwardsCompatibility.FunctionalTests\*.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|