Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 6fc97cf

Browse files
authored
Deactivating System.IO.FileSystem.AccessControl tests on uap/uapaot (#19750)
* Deactivating ACL tests on uap/uapaot * Add reason why disabling tests * Disabling tests for uap/uapaot * Changed project configs in test
1 parent f4332ab commit 6fc97cf

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/System.IO.FileSystem.AccessControl/tests/Configurations.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<BuildConfigurations>
5-
netstandard-Windows_NT;
5+
netfx-Windows_NT;
6+
netcoreapp-Windows_NT;
67
</BuildConfigurations>
78
</PropertyGroup>
89
</Project>

src/System.IO.FileSystem.AccessControl/tests/FileSystemAclExtensionsTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
65
using System.Security.AccessControl;
76
using Xunit;
87

src/System.IO.FileSystem.AccessControl/tests/System.IO.FileSystem.AccessControl.Tests.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
<PropertyGroup>
55
<ProjectGuid>{5915DD11-5D57-45A9-BFB0-56FEB7741E1F}</ProjectGuid>
66
</PropertyGroup>
7-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Windows_NT-Debug|AnyCPU'" />
8-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Windows_NT-Release|AnyCPU'" />
7+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netfx-Windows_NT-Debug|AnyCPU'" />
8+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netfx-Windows_NT-Release|AnyCPU'" />
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Windows_NT-Debug|AnyCPU'" />
10+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Windows_NT-Release|AnyCPU'" />
911
<ItemGroup>
1012
<Compile Include="FileSystemAclExtensionsTests.cs" />
1113
<Compile Include="$(CommonTestPath)\System\AssertExtensions.cs">

0 commit comments

Comments
 (0)