Skip to content

Commit b8a7a73

Browse files
author
Emile Joubert
committed
Line endings
To minimize differences from default
1 parent b60a1c8 commit b8a7a73

File tree

1 file changed

+177
-177
lines changed

1 file changed

+177
-177
lines changed
Lines changed: 177 additions & 177 deletions
Original file line numberDiff line numberDiff line change
@@ -1,177 +1,177 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<!-- Warning! This file contains important customizations. Using Visual Studio to edit project's properties might break things. -->
4-
<!-- Props file -->
5-
<PropertyGroup>
6-
<LocalPropsFile>$(MSBuildProjectDirectory)\..\..\..\Local.props</LocalPropsFile>
7-
</PropertyGroup>
8-
<Import Project="$(LocalPropsFile)" />
9-
<!-- MSBuild Community Tasks -->
10-
<PropertyGroup>
11-
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\..\..\..\lib\MSBuild.Community.Tasks\</MSBuildCommunityTasksPath>
12-
</PropertyGroup>
13-
<Import Project="$(MSBuildCommunityTasksPath)MSBuild.Community.Tasks.Targets" />
14-
<!-- Gensrc dir -->
15-
<PropertyGroup>
16-
<GensrcDir>..\..\..\gensrc\$(MSBuildProjectName)\</GensrcDir>
17-
</PropertyGroup>
18-
<Target Name="CreateGensrcDir">
19-
<MakeDir Directories="$(GensrcDir)" />
20-
</Target>
21-
<!-- API autogeneration -->
22-
<PropertyGroup>
23-
<SpecsDir>..\..\..\docs\specs\</SpecsDir>
24-
<AmqpSpec0_9_1BaseName>amqp0-9-1.stripped.xml</AmqpSpec0_9_1BaseName>
25-
<AmqpSpec0_9BaseName>amqp0-9.stripped.xml</AmqpSpec0_9BaseName>
26-
<AmqpSpec0_8qpidBaseName>qpid-amqp.0-8.stripped.xml</AmqpSpec0_8qpidBaseName>
27-
<AmqpSpec0_8BaseName>amqp0-8.stripped.xml</AmqpSpec0_8BaseName>
28-
<AmqpSpec0_9_1>$(SpecsDir)$(AmqpSpec0_9_1BaseName)</AmqpSpec0_9_1>
29-
<AmqpSpec0_9>$(SpecsDir)$(AmqpSpec0_9BaseName)</AmqpSpec0_9>
30-
<AmqpSpec0_8qpid>$(SpecsDir)$(AmqpSpec0_8qpidBaseName)</AmqpSpec0_8qpid>
31-
<AmqpSpec0_8>$(SpecsDir)$(AmqpSpec0_8BaseName)</AmqpSpec0_8>
32-
<AutogeneratedApi0_9_1BaseName>autogenerated-api-0-9-1.cs</AutogeneratedApi0_9_1BaseName>
33-
<AutogeneratedApi0_9BaseName>autogenerated-api-0-9.cs</AutogeneratedApi0_9BaseName>
34-
<AutogeneratedApi0_8qpidBaseName>autogenerated-api-qpid-0-8.cs</AutogeneratedApi0_8qpidBaseName>
35-
<AutogeneratedApi0_8BaseName>autogenerated-api-0-8.cs</AutogeneratedApi0_8BaseName>
36-
<AutogeneratedApi0_9>$(GensrcDir)$(AutogeneratedApi0_9BaseName)</AutogeneratedApi0_9>
37-
<AutogeneratedApi0_9_1>$(GensrcDir)$(AutogeneratedApi0_9_1BaseName)</AutogeneratedApi0_9_1>
38-
<AutogeneratedApi0_8qpid>$(GensrcDir)$(AutogeneratedApi0_8qpidBaseName)</AutogeneratedApi0_8qpid>
39-
<AutogeneratedApi0_8>$(GensrcDir)$(AutogeneratedApi0_8BaseName)</AutogeneratedApi0_8>
40-
<ApiGenExe>..\Apigen\build\bin\rabbitmq-dotnet-apigen.exe</ApiGenExe>
41-
</PropertyGroup>
42-
<ItemGroup>
43-
<AmqpSpecs Include="$(AmqpSpec0_9_1)">
44-
<Link>specs\$(AmqpSpec0_9_1BaseName)</Link>
45-
</AmqpSpecs>
46-
<AmqpSpecs Include="$(AmqpSpec0_9)">
47-
<Link>specs\$(AmqpSpec0_9BaseName)</Link>
48-
</AmqpSpecs>
49-
<AmqpSpecs Include="$(AmqpSpec0_8qpid)">
50-
<Link>specs\$(AmqpSpec0_8qpidBaseName)</Link>
51-
</AmqpSpecs>
52-
<AmqpSpecs Include="$(AmqpSpec0_8)">
53-
<Link>specs\$(AmqpSpec0_8BaseName)</Link>
54-
</AmqpSpecs>
55-
<AutogeneratedApi Include="$(AutogeneratedApi0_9_1)">
56-
<Link>src\gensrc\$(AutogeneratedApi0_9_1BaseName)</Link>
57-
</AutogeneratedApi>
58-
<AutogeneratedApi Include="$(AutogeneratedApi0_9)">
59-
<Link>src\gensrc\$(AutogeneratedApi0_9BaseName)</Link>
60-
</AutogeneratedApi>
61-
<AutogeneratedApi Include="$(AutogeneratedApi0_8qpid)">
62-
<Link>src\gensrc\$(AutogeneratedApi0_8qpidBaseName)</Link>
63-
</AutogeneratedApi>
64-
<AutogeneratedApi Include="$(AutogeneratedApi0_8)">
65-
<Link>src\gensrc\$(AutogeneratedApi0_8BaseName)</Link>
66-
</AutogeneratedApi>
67-
<Compile Include="$(AutogeneratedApi0_9_1)">
68-
<Visible>false</Visible>
69-
</Compile>
70-
<Compile Include="$(AutogeneratedApi0_9)">
71-
<Visible>false</Visible>
72-
</Compile>
73-
<Compile Include="$(AutogeneratedApi0_8qpid)">
74-
<Visible>false</Visible>
75-
</Compile>
76-
<Compile Include="$(AutogeneratedApi0_8)">
77-
<Visible>false</Visible>
78-
</Compile>
79-
</ItemGroup>
80-
<Target Name="GenerateApi" DependsOnTargets="CreateGensrcDir" Inputs="@(AmqpSpecs);$(ApiGenExe)" Outputs="@(AutogeneratedApi)">
81-
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_9_1 /n:v0_9_1 $(AmqpSpec0_9_1) $(AutogeneratedApi0_9_1)" WorkingDirectory="$(ProjectDir)" />
82-
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_9 /n:v0_9 $(AmqpSpec0_9) $(AutogeneratedApi0_9)" WorkingDirectory="$(ProjectDir)" />
83-
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_8_QPID /n:v0_8qpid $(AmqpSpec0_8qpid) $(AutogeneratedApi0_8qpid)" WorkingDirectory="$(ProjectDir)" />
84-
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_8 /n:v0_8 $(AmqpSpec0_8) $(AutogeneratedApi0_8)" WorkingDirectory="$(ProjectDir)" />
85-
</Target>
86-
<Target Name="CleanGenerateApi">
87-
<Delete Files="@(AutogeneratedApi)" />
88-
</Target>
89-
<!-- Detokenize -->
90-
<PropertyGroup>
91-
<AssemblyInfoBaseName>AssemblyInfo.cs</AssemblyInfoBaseName>
92-
<AssemblyInfoTok>src\tokenized\$(AssemblyInfoBaseName).in</AssemblyInfoTok>
93-
<AssemblyInfoDetok>$(GensrcDir)$(AssemblyInfoBaseName)</AssemblyInfoDetok>
94-
</PropertyGroup>
95-
<ItemGroup>
96-
<Tokenized Include="$(AssemblyInfoTok)" />
97-
<Detokenized Include="$(AssemblyInfoDetok)">
98-
<Link>properties\$(AssemblyInfoBaseName)</Link>
99-
</Detokenized>
100-
<Compile Include="$(AssemblyInfoDetok)">
101-
<Visible>false</Visible>
102-
</Compile>
103-
<Tokens Include="PropAssemblyVersion">
104-
<ReplacementValue>$(PropAssemblyVersion)</ReplacementValue>
105-
<Visible>false</Visible>
106-
</Tokens>
107-
</ItemGroup>
108-
<Target Name="Detokenize" DependsOnTargets="CreateGensrcDir" Inputs="@(Tokenized); $(LocalPropsFile)" Outputs="@(Detokenized)">
109-
<Delete Files="@(Detokenized)" />
110-
<TemplateFile Template="$(AssemblyInfoTok)" OutputFilename="detok.out" Tokens="@(Tokens)" />
111-
<Move SourceFiles="src\tokenized\detok.out" DestinationFiles="$(AssemblyInfoDetok)" />
112-
</Target>
113-
<Target Name="CleanDetokenize">
114-
<Delete Files="@(Detokenized)" />
115-
</Target>
116-
<!-- Visual Studio generated -->
117-
<PropertyGroup>
118-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
119-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
120-
<ProductVersion>9.0.21022</ProductVersion>
121-
<SchemaVersion>2.0</SchemaVersion>
122-
<ProjectGuid>{71713FDD-D5EC-40B2-A924-76F80AD57E12}</ProjectGuid>
123-
<OutputType>Library</OutputType>
124-
<AppDesignerFolder>properties</AppDesignerFolder>
125-
<RootNamespace>RabbitMQ.Client</RootNamespace>
126-
<AssemblyName>RabbitMQ.Client</AssemblyName>
127-
<TargetFrameworkVersion>$(PropTargetFramework)</TargetFrameworkVersion>
128-
<FileAlignment>512</FileAlignment>
129-
</PropertyGroup>
130-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
131-
<DebugSymbols>true</DebugSymbols>
132-
<DebugType>full</DebugType>
133-
<Optimize>false</Optimize>
134-
<OutputPath>build\bin\</OutputPath>
135-
<DefineConstants>DEBUG;TRACE</DefineConstants>
136-
<ErrorReport>none</ErrorReport>
137-
<WarningLevel>4</WarningLevel>
138-
<DocumentationFile>build\bin\RabbitMQ.Client.xml</DocumentationFile>
139-
<NoWarn>1591</NoWarn>
140-
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
141-
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
142-
<RegisterForComInterop>false</RegisterForComInterop>
143-
</PropertyGroup>
144-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
145-
<DebugType>pdbonly</DebugType>
146-
<Optimize>true</Optimize>
147-
<OutputPath>build\bin\</OutputPath>
148-
<DefineConstants>TRACE</DefineConstants>
149-
<ErrorReport>none</ErrorReport>
150-
<WarningLevel>4</WarningLevel>
151-
<DocumentationFile>build\bin\RabbitMQ.Client.xml</DocumentationFile>
152-
<NoWarn>1591</NoWarn>
153-
<DebugSymbols>true</DebugSymbols>
154-
<RegisterForComInterop>false</RegisterForComInterop>
155-
<SignAssembly Condition="'$(PropKeyfile)' != ''">true</SignAssembly>
156-
<AssemblyOriginatorKeyFile>$(PropKeyfile)</AssemblyOriginatorKeyFile>
157-
</PropertyGroup>
158-
<ItemGroup>
159-
<Compile Include="src\client\**\*.cs" />
160-
<Compile Include="src\util\**\*.cs" />
161-
</ItemGroup>
162-
<ItemGroup>
163-
<Reference Include="System" />
164-
<Reference Include="System.Data" />
165-
<Reference Include="System.Xml" />
166-
</ItemGroup>
167-
<!-- Mono compatibility workarounds -->
168-
<PropertyGroup Condition=" '$(PropUsingMono)' == 'true'">
169-
<_DisabledWarnings>$(NoWarn)</_DisabledWarnings>
170-
</PropertyGroup>
171-
<!-- Microsoft CSharp targets -->
172-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
173-
<!-- Custom BeforeBuild-->
174-
<Target Name="BeforeBuild" DependsOnTargets="GenerateApi; Detokenize" />
175-
<!-- Custom BeforeClean -->
176-
<Target Name="BeforeClean" DependsOnTargets="CleanGenerateApi; CleanDetokenize" />
177-
</Project>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<!-- Warning! This file contains important customizations. Using Visual Studio to edit project's properties might break things. -->
4+
<!-- Props file -->
5+
<PropertyGroup>
6+
<LocalPropsFile>$(MSBuildProjectDirectory)\..\..\..\Local.props</LocalPropsFile>
7+
</PropertyGroup>
8+
<Import Project="$(LocalPropsFile)" />
9+
<!-- MSBuild Community Tasks -->
10+
<PropertyGroup>
11+
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\..\..\..\lib\MSBuild.Community.Tasks\</MSBuildCommunityTasksPath>
12+
</PropertyGroup>
13+
<Import Project="$(MSBuildCommunityTasksPath)MSBuild.Community.Tasks.Targets" />
14+
<!-- Gensrc dir -->
15+
<PropertyGroup>
16+
<GensrcDir>..\..\..\gensrc\$(MSBuildProjectName)\</GensrcDir>
17+
</PropertyGroup>
18+
<Target Name="CreateGensrcDir">
19+
<MakeDir Directories="$(GensrcDir)" />
20+
</Target>
21+
<!-- API autogeneration -->
22+
<PropertyGroup>
23+
<SpecsDir>..\..\..\docs\specs\</SpecsDir>
24+
<AmqpSpec0_9_1BaseName>amqp0-9-1.stripped.xml</AmqpSpec0_9_1BaseName>
25+
<AmqpSpec0_9BaseName>amqp0-9.stripped.xml</AmqpSpec0_9BaseName>
26+
<AmqpSpec0_8qpidBaseName>qpid-amqp.0-8.stripped.xml</AmqpSpec0_8qpidBaseName>
27+
<AmqpSpec0_8BaseName>amqp0-8.stripped.xml</AmqpSpec0_8BaseName>
28+
<AmqpSpec0_9_1>$(SpecsDir)$(AmqpSpec0_9_1BaseName)</AmqpSpec0_9_1>
29+
<AmqpSpec0_9>$(SpecsDir)$(AmqpSpec0_9BaseName)</AmqpSpec0_9>
30+
<AmqpSpec0_8qpid>$(SpecsDir)$(AmqpSpec0_8qpidBaseName)</AmqpSpec0_8qpid>
31+
<AmqpSpec0_8>$(SpecsDir)$(AmqpSpec0_8BaseName)</AmqpSpec0_8>
32+
<AutogeneratedApi0_9_1BaseName>autogenerated-api-0-9-1.cs</AutogeneratedApi0_9_1BaseName>
33+
<AutogeneratedApi0_9BaseName>autogenerated-api-0-9.cs</AutogeneratedApi0_9BaseName>
34+
<AutogeneratedApi0_8qpidBaseName>autogenerated-api-qpid-0-8.cs</AutogeneratedApi0_8qpidBaseName>
35+
<AutogeneratedApi0_8BaseName>autogenerated-api-0-8.cs</AutogeneratedApi0_8BaseName>
36+
<AutogeneratedApi0_9>$(GensrcDir)$(AutogeneratedApi0_9BaseName)</AutogeneratedApi0_9>
37+
<AutogeneratedApi0_9_1>$(GensrcDir)$(AutogeneratedApi0_9_1BaseName)</AutogeneratedApi0_9_1>
38+
<AutogeneratedApi0_8qpid>$(GensrcDir)$(AutogeneratedApi0_8qpidBaseName)</AutogeneratedApi0_8qpid>
39+
<AutogeneratedApi0_8>$(GensrcDir)$(AutogeneratedApi0_8BaseName)</AutogeneratedApi0_8>
40+
<ApiGenExe>..\Apigen\build\bin\rabbitmq-dotnet-apigen.exe</ApiGenExe>
41+
</PropertyGroup>
42+
<ItemGroup>
43+
<AmqpSpecs Include="$(AmqpSpec0_9_1)">
44+
<Link>specs\$(AmqpSpec0_9_1BaseName)</Link>
45+
</AmqpSpecs>
46+
<AmqpSpecs Include="$(AmqpSpec0_9)">
47+
<Link>specs\$(AmqpSpec0_9BaseName)</Link>
48+
</AmqpSpecs>
49+
<AmqpSpecs Include="$(AmqpSpec0_8qpid)">
50+
<Link>specs\$(AmqpSpec0_8qpidBaseName)</Link>
51+
</AmqpSpecs>
52+
<AmqpSpecs Include="$(AmqpSpec0_8)">
53+
<Link>specs\$(AmqpSpec0_8BaseName)</Link>
54+
</AmqpSpecs>
55+
<AutogeneratedApi Include="$(AutogeneratedApi0_9_1)">
56+
<Link>src\gensrc\$(AutogeneratedApi0_9_1BaseName)</Link>
57+
</AutogeneratedApi>
58+
<AutogeneratedApi Include="$(AutogeneratedApi0_9)">
59+
<Link>src\gensrc\$(AutogeneratedApi0_9BaseName)</Link>
60+
</AutogeneratedApi>
61+
<AutogeneratedApi Include="$(AutogeneratedApi0_8qpid)">
62+
<Link>src\gensrc\$(AutogeneratedApi0_8qpidBaseName)</Link>
63+
</AutogeneratedApi>
64+
<AutogeneratedApi Include="$(AutogeneratedApi0_8)">
65+
<Link>src\gensrc\$(AutogeneratedApi0_8BaseName)</Link>
66+
</AutogeneratedApi>
67+
<Compile Include="$(AutogeneratedApi0_9_1)">
68+
<Visible>false</Visible>
69+
</Compile>
70+
<Compile Include="$(AutogeneratedApi0_9)">
71+
<Visible>false</Visible>
72+
</Compile>
73+
<Compile Include="$(AutogeneratedApi0_8qpid)">
74+
<Visible>false</Visible>
75+
</Compile>
76+
<Compile Include="$(AutogeneratedApi0_8)">
77+
<Visible>false</Visible>
78+
</Compile>
79+
</ItemGroup>
80+
<Target Name="GenerateApi" DependsOnTargets="CreateGensrcDir" Inputs="@(AmqpSpecs);$(ApiGenExe)" Outputs="@(AutogeneratedApi)">
81+
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_9_1 /n:v0_9_1 $(AmqpSpec0_9_1) $(AutogeneratedApi0_9_1)" WorkingDirectory="$(ProjectDir)" />
82+
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_9 /n:v0_9 $(AmqpSpec0_9) $(AutogeneratedApi0_9)" WorkingDirectory="$(ProjectDir)" />
83+
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_8_QPID /n:v0_8qpid $(AmqpSpec0_8qpid) $(AutogeneratedApi0_8qpid)" WorkingDirectory="$(ProjectDir)" />
84+
<Exec Command="$(PropLaunchExe)$(ApiGenExe) /apiName:AMQP_0_8 /n:v0_8 $(AmqpSpec0_8) $(AutogeneratedApi0_8)" WorkingDirectory="$(ProjectDir)" />
85+
</Target>
86+
<Target Name="CleanGenerateApi">
87+
<Delete Files="@(AutogeneratedApi)" />
88+
</Target>
89+
<!-- Detokenize -->
90+
<PropertyGroup>
91+
<AssemblyInfoBaseName>AssemblyInfo.cs</AssemblyInfoBaseName>
92+
<AssemblyInfoTok>src\tokenized\$(AssemblyInfoBaseName).in</AssemblyInfoTok>
93+
<AssemblyInfoDetok>$(GensrcDir)$(AssemblyInfoBaseName)</AssemblyInfoDetok>
94+
</PropertyGroup>
95+
<ItemGroup>
96+
<Tokenized Include="$(AssemblyInfoTok)" />
97+
<Detokenized Include="$(AssemblyInfoDetok)">
98+
<Link>properties\$(AssemblyInfoBaseName)</Link>
99+
</Detokenized>
100+
<Compile Include="$(AssemblyInfoDetok)">
101+
<Visible>false</Visible>
102+
</Compile>
103+
<Tokens Include="PropAssemblyVersion">
104+
<ReplacementValue>$(PropAssemblyVersion)</ReplacementValue>
105+
<Visible>false</Visible>
106+
</Tokens>
107+
</ItemGroup>
108+
<Target Name="Detokenize" DependsOnTargets="CreateGensrcDir" Inputs="@(Tokenized); $(LocalPropsFile)" Outputs="@(Detokenized)">
109+
<Delete Files="@(Detokenized)" />
110+
<TemplateFile Template="$(AssemblyInfoTok)" OutputFilename="detok.out" Tokens="@(Tokens)" />
111+
<Move SourceFiles="src\tokenized\detok.out" DestinationFiles="$(AssemblyInfoDetok)" />
112+
</Target>
113+
<Target Name="CleanDetokenize">
114+
<Delete Files="@(Detokenized)" />
115+
</Target>
116+
<!-- Visual Studio generated -->
117+
<PropertyGroup>
118+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
119+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
120+
<ProductVersion>9.0.21022</ProductVersion>
121+
<SchemaVersion>2.0</SchemaVersion>
122+
<ProjectGuid>{71713FDD-D5EC-40B2-A924-76F80AD57E12}</ProjectGuid>
123+
<OutputType>Library</OutputType>
124+
<AppDesignerFolder>properties</AppDesignerFolder>
125+
<RootNamespace>RabbitMQ.Client</RootNamespace>
126+
<AssemblyName>RabbitMQ.Client</AssemblyName>
127+
<TargetFrameworkVersion>$(PropTargetFramework)</TargetFrameworkVersion>
128+
<FileAlignment>512</FileAlignment>
129+
</PropertyGroup>
130+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
131+
<DebugSymbols>true</DebugSymbols>
132+
<DebugType>full</DebugType>
133+
<Optimize>false</Optimize>
134+
<OutputPath>build\bin\</OutputPath>
135+
<DefineConstants>DEBUG;TRACE</DefineConstants>
136+
<ErrorReport>none</ErrorReport>
137+
<WarningLevel>4</WarningLevel>
138+
<DocumentationFile>build\bin\RabbitMQ.Client.xml</DocumentationFile>
139+
<NoWarn>1591</NoWarn>
140+
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
141+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
142+
<RegisterForComInterop>false</RegisterForComInterop>
143+
</PropertyGroup>
144+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
145+
<DebugType>pdbonly</DebugType>
146+
<Optimize>true</Optimize>
147+
<OutputPath>build\bin\</OutputPath>
148+
<DefineConstants>TRACE</DefineConstants>
149+
<ErrorReport>none</ErrorReport>
150+
<WarningLevel>4</WarningLevel>
151+
<DocumentationFile>build\bin\RabbitMQ.Client.xml</DocumentationFile>
152+
<NoWarn>1591</NoWarn>
153+
<DebugSymbols>true</DebugSymbols>
154+
<RegisterForComInterop>false</RegisterForComInterop>
155+
<SignAssembly Condition="'$(PropKeyfile)' != ''">true</SignAssembly>
156+
<AssemblyOriginatorKeyFile>$(PropKeyfile)</AssemblyOriginatorKeyFile>
157+
</PropertyGroup>
158+
<ItemGroup>
159+
<Compile Include="src\client\**\*.cs" />
160+
<Compile Include="src\util\**\*.cs" />
161+
</ItemGroup>
162+
<ItemGroup>
163+
<Reference Include="System" />
164+
<Reference Include="System.Data" />
165+
<Reference Include="System.Xml" />
166+
</ItemGroup>
167+
<!-- Mono compatibility workarounds -->
168+
<PropertyGroup Condition=" '$(PropUsingMono)' == 'true'">
169+
<_DisabledWarnings>$(NoWarn)</_DisabledWarnings>
170+
</PropertyGroup>
171+
<!-- Microsoft CSharp targets -->
172+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
173+
<!-- Custom BeforeBuild-->
174+
<Target Name="BeforeBuild" DependsOnTargets="GenerateApi; Detokenize" />
175+
<!-- Custom BeforeClean -->
176+
<Target Name="BeforeClean" DependsOnTargets="CleanGenerateApi; CleanDetokenize" />
177+
</Project>

0 commit comments

Comments
 (0)