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

System.Diagnostics.TraceSource.csproj « src « System.Diagnostics.TraceSource « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e6fed8e8ef07cf11cf769312e94cf4deda45a6f (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?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>
    <RootNamespace>System.Diagnostics.TraceSource</RootNamespace>
    <AssemblyName>System.Diagnostics.TraceSource</AssemblyName>
    <DefineConstants>$(DefineConstants);TRACE</DefineConstants>
    <ProjectGuid>{5380420C-EB1D-4C53-9CFC-916578C18334}</ProjectGuid>
    <IsPartialFacadeAssembly Condition="'$(TargetGroup)' == 'net463'">true</IsPartialFacadeAssembly>
    <PackageTargetFramework Condition="'$(TargetGroup)'=='netstandard'">netstandard;uap10.1</PackageTargetFramework>
  </PropertyGroup>
  <!-- Help VS understand available configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Unix-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Unix-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Windows_NT-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Windows_NT-Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='net463-Windows_NT-Release|AnyCPU'" />
  <ItemGroup>
    <Compile Include="FxCopBaseline.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'netstandard'">
    <Compile Include="System\Diagnostics\BooleanSwitch.cs" />
    <Compile Include="System\Diagnostics\CorrelationManager.cs" />
    <Compile Include="System\Diagnostics\DefaultTraceListener.cs" />
    <Compile Include="System\Diagnostics\DiagnosticsConfiguration.cs" />
    <Compile Include="System\Diagnostics\SeverityFilter.cs" />
    <Compile Include="System\Diagnostics\SourceFilter.cs" />
    <Compile Include="System\Diagnostics\SourceLevels.cs" />
    <Compile Include="System\Diagnostics\SourceSwitch.cs" />
    <Compile Include="System\Diagnostics\Switch.cs" />
    <Compile Include="System\Diagnostics\Trace.cs" />
    <Compile Include="System\Diagnostics\TraceEventCache.cs" />
    <Compile Include="System\Diagnostics\TraceEventType.cs" />
    <Compile Include="System\Diagnostics\TraceFilter.cs" />
    <Compile Include="System\Diagnostics\TraceInternal.cs" />
    <Compile Include="System\Diagnostics\TraceLevel.cs" />
    <Compile Include="System\Diagnostics\TraceListener.cs" />
    <Compile Include="System\Diagnostics\TraceListeners.cs" />
    <Compile Include="System\Diagnostics\TraceOptions.cs" />
    <Compile Include="System\Diagnostics\TraceSource.cs" />
    <Compile Include="System\Diagnostics\TraceSwitch.cs" />
    <Compile Include="System\Diagnostics\SwitchAttribute.cs" />
    <Compile Include="System\Diagnostics\SwitchLevelAttribute.cs" />
  </ItemGroup>
  <ItemGroup Condition=" '$(TargetsWindows)' == 'true' And '$(TargetGroup)' == 'netstandard'">
    <Compile Include="System\Diagnostics\TraceEventCache.Windows.cs" />
    <Compile Include="$(CommonPath)\Interop\Windows\Interop.Libraries.cs">
      <Link>Common\Interop\Windows\Interop.Libraries.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)\Interop\Windows\kernel32\Interop.GetCurrentProcessId.cs">
      <Link>Common\Interop\Windows\Interop.GetCurrentProcessId.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup Condition=" '$(TargetsUnix)' == 'true' And '$(TargetGroup)' == 'netstandard'">
    <Compile Include="$(CommonPath)\Interop\Unix\Interop.Libraries.cs">
      <Link>Common\Interop\Unix\Interop.Libraries.cs</Link>
    </Compile>
    <Compile Include="$(CommonPath)\Interop\Unix\System.Native\Interop.GetPid.cs">
      <Link>Common\Interop\Unix\Interop.GetPid.cs</Link>
    </Compile>
    <Compile Include="System\Diagnostics\TraceEventCache.Unix.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'net463'">
    <TargetingPackReference Include="mscorlib" />
    <TargetingPackReference Include="System" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System.Collections" />
    <Reference Include="System.Collections.NonGeneric" />
    <Reference Include="System.Collections.Specialized" />
    <Reference Include="System.Diagnostics.Debug" />
    <Reference Include="System.Diagnostics.Tools" />
    <Reference Include="System.Resources.ResourceManager" />
    <Reference Include="System.Runtime" />
    <Reference Include="System.Runtime.Extensions" />
    <Reference Include="System.Runtime.InteropServices" />
    <Reference Include="System.Threading" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>