|
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 |
| - <ItemGroup> |
| 6 | + <PropertyGroup> |
| 7 | + <GeneratePlatformNotSupportedAssemblyMessage Condition="'$(TargetsAnyOS)' == 'true'">SR.IsolatedStorage_PlatformNotSupported</GeneratePlatformNotSupportedAssemblyMessage> |
| 8 | + </PropertyGroup> |
| 9 | + <ItemGroup Condition="'$(TargetsAnyOS)' != 'true'"> |
7 | 10 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageException.cs" />
|
8 | 11 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFile.cs" />
|
9 | 12 | <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFileStream.cs" />
|
|
18 | 21 | <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
|
19 | 22 | <Compile Include="System\IO\IsolatedStorage\Helper.Win32.cs" />
|
20 | 23 | </ItemGroup>
|
21 |
| - <ItemGroup Condition="'$(TargetsUnix)' == 'true' or '$(TargetsBrowser)' == 'true'"> |
| 24 | + <ItemGroup Condition="'$(TargetsUnix)' == 'true'"> |
22 | 25 | <Compile Include="System\IO\IsolatedStorage\Helper.Unix.cs" />
|
23 | 26 | </ItemGroup>
|
24 |
| - <ItemGroup> |
| 27 | + <ItemGroup Condition="'$(TargetsAnyOS)' != 'true'"> |
25 | 28 | <Reference Include="System.IO.FileSystem" />
|
26 | 29 | <Reference Include="System.Linq" />
|
27 |
| - <Reference Include="System.Runtime" /> |
28 | 30 | <Reference Include="System.Runtime.Extensions" />
|
29 | 31 | <Reference Include="System.Security.Cryptography.Algorithms" />
|
30 | 32 | <Reference Include="System.Security.Cryptography.Primitives" />
|
31 | 33 | <Reference Include="System.Threading" />
|
32 | 34 | </ItemGroup>
|
| 35 | + <ItemGroup> |
| 36 | + <Reference Include="System.Runtime" /> |
| 37 | + </ItemGroup> |
33 | 38 | <ItemGroup Condition="'$(TargetsWindows)' == 'true'">
|
34 | 39 | <Reference Include="System.IO.FileSystem.AccessControl" />
|
35 | 40 | <Reference Include="System.Security.AccessControl" />
|
|
0 commit comments