forked from microsoft/dotnet-apiport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApiPort.csproj
112 lines (112 loc) · 5.2 KB
/
ApiPort.csproj
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5A2EAD0F-FF3E-4968-A865-7B29C4B10A72}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ApiPort</RootNamespace>
<AssemblyName>ApiPort</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<DefineConstants>FEATURE_RICH_CONSOLE</DefineConstants>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>TRACE;DEBUG;$(DefineConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;$(DefineConstants)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<IntermediateOutputPath>$(OutputIntermediate)\$(AssemblyName)</IntermediateOutputPath>
<OutputPath>$(OutputDrop)\$(AssemblyName)\net45</OutputPath>
<DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<!-- Projects default to being signed, but Microsoft.Configuration.* assemblies are not signed -->
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AppCommands.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="CommandLine\AnalyzeOptions.cs" />
<Compile Include="CommandLine\ApiPortConfiguration.cs" />
<Compile Include="CommandLine\CommonCommands.cs" />
<Compile Include="CommandLine\ConsoleDefaultApiPortOptions.cs" />
<Compile Include="CommandLine\DocIdSearchOptions.cs" />
<Compile Include="CommandLine\ServiceEndpointOptions.cs" />
<Compile Include="ConsoleApiPort.cs" />
<Compile Include="DependencyBuilder.cs" />
<Compile Include="DocIdSearchRepl.cs" />
<Compile Include="EmptyDependencyFinder.cs" />
<Compile Include="FileOutputApiPortService.cs" />
<Compile Include="ApiPortServiceSearcher.cs" />
<Compile Include="ICommandLineOptions.cs" />
<Compile Include="Program.cs" />
<Compile Include="Resources\LocalizedStrings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>LocalizedStrings.resx</DependentUpon>
</Compile>
<Compile Include="ConsoleProgressReporter.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Fx.Portability.MetadataReader\Microsoft.Fx.Portability.MetadataReader.NET45.csproj">
<Project>{c14486ac-22be-480c-8235-2479c6c8f3ff}</Project>
<Name>Microsoft.Fx.Portability.MetadataReader.NET45</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Fx.Portability\Microsoft.Fx.Portability.NET45.csproj">
<Project>{18419457-1176-4989-8358-2024ab5b7085}</Project>
<Name>Microsoft.Fx.Portability.NET45</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\LocalizedStrings.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>LocalizedStrings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="app.config">
<SubType>Designer</SubType>
</None>
<None Include="ApiPort.project.json" />
</ItemGroup>
<ItemGroup>
<BinPlaceContent Include=".\Assets\KnownSafeBreaks.json" />
</ItemGroup>
<ItemGroup>
<Content Include="Properties\version.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
<Target Name="AfterBuild">
<Copy SourceFiles="@(BinPlaceContent)" DestinationFiles="@(BinPlaceContent->'$(TargetDir)\%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
</Target>
</Project>