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

System.Runtime.WindowsRuntime.csproj « ref « System.Runtime.WindowsRuntime « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd48a9a229c1e72ed665b4c3c73bd7ca3e9bde02 (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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <!--
         NOTE: Suppress false positive warning for the special case where we're building System.Runtime.WindowsRuntime itself
               at a version other than 4.0.0.0, which is referenced indirectly via the mscorlib.dll design-time facade, which
               in turn is a required compile-time-only reference when building anything with a reference to a WinMD.

         error CS1698: Warning as Error: Circular assembly reference 'System.Runtime.WindowsRuntime,
                       Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' does not
                       match the output assembly name 'System.Runtime.WindowsRuntime, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.
     -->
    <NoWarn>$(NoWarn);1698</NoWarn>
    <ProjectGuid>{FDDA3E4A-B182-4CD1-B624-EBD72D8A05DA}</ProjectGuid>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Release|AnyCPU'" />
  <ItemGroup>
    <Compile Include="System.Runtime.WindowsRuntime.cs" />
    <Compile Include="System.Runtime.WindowsRuntime.Manual.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\..\external\winrt\winrt.depproj" />
    <ProjectReference Include="..\..\mscorlib.WinRT-Facade\ref\mscorlib.WinRT-Facade.csproj" />
    <ProjectReference Include="..\..\System.Runtime\ref\System.Runtime.csproj" />
    <ProjectReference Include="..\..\System.Runtime.Extensions\ref\System.Runtime.Extensions.csproj" />
    <ProjectReference Include="..\..\System.IO\ref\System.IO.csproj" />
    <ProjectReference Include="..\..\System.Threading.Tasks\ref\System.Threading.Tasks.csproj" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>