Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.IO.IsolatedStorage.csproj « src « System.IO.IsolatedStorage « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cb834ca87928b0804d88ec580a86ce17450fb17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)'=='' and '$(TargetGroup)' == ''"></Configuration>
  </PropertyGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <AssemblyName>System.IO.IsolatedStorage</AssemblyName>
    <ProjectGuid>{FAF5D1E4-BA43-4663-8429-C069066D75CB}</ProjectGuid>
    <AssemblyVersion>4.1.0.0</AssemblyVersion>
    <EnableWinRT Condition="'$(TargetGroup)' == 'uap101'">true</EnableWinRT>
    <IsPartialFacadeAssembly Condition="'$(TargetGroup)' == 'net463'">true</IsPartialFacadeAssembly>
    <ResourcesSourceOutputDirectory Condition="'$(TargetGroup)' == 'net463'">None</ResourcesSourceOutputDirectory>
    <PackageTargetFramework Condition="'$(PackageTargetFramework)' == ''">netstandard1.7</PackageTargetFramework>
    <NuGetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.7</NuGetTargetMoniker>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the options -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap101_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap101_Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Release|AnyCPU'" />
  <ItemGroup Condition="'$(EnableWinRT)' == 'true'">
    <ProjectReference Include="$(SourceDir)mscorlib.WinRT-Facade\mscorlib.WinRT-Facade.csproj" />
    <TargetingPackReference Include="Windows" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' != 'net463'">
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageException.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFile.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageFileStream.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageSecurityState.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorage.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageScope.cs" />
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageSecurityOptions.cs" />
    <Compile Include="System\IO\IsolatedStorage\Helper.cs" />
    <Compile Include="System\IO\IsolatedStorage\INormalizeForIsolatedStorage.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == ''">
    <Compile Include="System\IO\IsolatedStorage\IsolatedStorageException.Serialization.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' != 'net463' and '$(EnableWinRT)' != 'true'">
    <Compile Include="System\IO\IsolatedStorage\Helper.Win32.Unix.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' != 'net463' and '$(EnableWinRT)' == 'true'">
    <Compile Include="System\IO\IsolatedStorage\Helper.WinRT.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'net463'">
    <TargetingPackReference Include="mscorlib" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>