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

System.Resources.ResourceManager.csproj « src « System.Resources.ResourceManager « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b454505efa323138ba9ffdf3d97d30f2612223d1 (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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <AssemblyName>System.Resources.ResourceManager</AssemblyName>
    <IsPartialFacadeAssembly Condition="'$(TargetGroup)' != 'uap101aot'">true</IsPartialFacadeAssembly>
    <ResourcesSourceOutputDirectory Condition="'$(TargetGroup)' != 'uap101aot'">None</ResourcesSourceOutputDirectory>
    <SkipCommonResourcesIncludes Condition="'$(TargetGroup)'=='uap101aot'">true</SkipCommonResourcesIncludes>
    <AllowUnsafeBlocks Condition="'$(TargetGroup)' == 'uap101aot'">true</AllowUnsafeBlocks>
  </PropertyGroup>
  <!-- Help VS understand available configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='uap101aot-Windows_NT-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='uap101aot-Windows_NT-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Release|AnyCPU'" />
  <ItemGroup Condition="'$(TargetGroup)' == 'uap101aot'">
    <Compile Include="System\Resources\MissingManifestResourceException.cs" />
    <Compile Include="System\Resources\NeutralResourcesLanguageAttribute.cs" />
    <Compile Include="System\Resources\ResourceManager.cs" />
    <Compile Include="System\Resources\SatelliteContractVersionAttribute.cs" />
    <Compile Include="$(CommonPath)\System\HResults.cs">
      <Link>Common\System\HResults.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)\System\SR.Core.cs">
      <Link>Common\System\SR.Core.cs</Link>
    </Compile>
    <TargetingPackReference Include="System.Private.CoreLib.WinRTInterop" />
    <ProjectReference Include="$(SourceDir)/mscorlib.WinRT-Facade/mscorlib.WinRT-Facade.csproj" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'netstandard'">
    <TargetingPackReference Include="System.Private.CoreLib" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'net463'">
    <TargetingPackReference Include="mscorlib" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System.Diagnostics.Tools" />
    <Reference Include="System.Private.CoreLib" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>