|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 | <PropertyGroup>
|
3 |
| - <TargetFrameworks>$(NetCoreAppCurrent)-Windows_NT;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser</TargetFrameworks> |
| 3 | + <TargetFrameworks>$(NetCoreAppCurrent)-Windows_NT;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)</TargetFrameworks> |
4 | 4 | <Nullable>enable</Nullable>
|
5 | 5 | </PropertyGroup>
|
6 | 6 | <PropertyGroup>
|
7 |
| - <GeneratePlatformNotSupportedAssemblyMessage Condition="'$(TargetsBrowser)' == 'true'">SR.PlatformNotSupported_Browser</GeneratePlatformNotSupportedAssemblyMessage> |
| 7 | + <GeneratePlatformNotSupportedAssemblyMessage Condition="'$(TargetsAnyOS)' == 'true'">SR.IsolatedStorage_PlatformNotSupported</GeneratePlatformNotSupportedAssemblyMessage> |
8 | 8 | </PropertyGroup>
|
9 |
| - <ItemGroup Condition="'$(TargetsBrowser)' != 'true'"> |
| 9 | + <ItemGroup Condition="'$(TargetsAnyOS)' != 'true'"> |
10 | 10 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageException.cs" />
|
11 | 11 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFile.cs" />
|
12 | 12 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFileStream.cs" />
|
|
21 | 21 | <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
|
22 | 22 | <Compile Include="System\IO\IsolatedStorage\Helper.Win32.cs" />
|
23 | 23 | </ItemGroup>
|
24 |
| - <ItemGroup Condition="'$(TargetsUnix)' == 'true' and '$(TargetsBrowser)' != 'true'"> |
| 24 | + <ItemGroup Condition="'$(TargetsUnix)' == 'true'"> |
25 | 25 | <Compile Include="System\IO\IsolatedStorage\Helper.Unix.cs" />
|
26 | 26 | </ItemGroup>
|
27 |
| - <ItemGroup Condition="'$(TargetsBrowser)' != 'true'"> |
| 27 | + <ItemGroup Condition="'$(TargetsAnyOS)' != 'true'"> |
28 | 28 | <Reference Include="System.IO.FileSystem" />
|
29 | 29 | <Reference Include="System.Linq" />
|
30 |
| - <Reference Include="System.Runtime" /> |
31 | 30 | <Reference Include="System.Runtime.Extensions" />
|
32 | 31 | <Reference Include="System.Security.Cryptography.Algorithms" />
|
33 | 32 | <Reference Include="System.Security.Cryptography.Primitives" />
|
34 | 33 | <Reference Include="System.Threading" />
|
35 | 34 | </ItemGroup>
|
| 35 | + <ItemGroup> |
| 36 | + <Reference Include="System.Runtime" /> |
| 37 | + </ItemGroup> |
36 | 38 | <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
|
37 | 39 | <Reference Include="System.IO.FileSystem.AccessControl" />
|
38 | 40 | <Reference Include="System.Security.AccessControl" />
|
|
0 commit comments