diff options
author | George Hazan <ghazan@miranda.im> | 2022-11-30 17:48:47 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-11-30 17:48:47 +0300 |
commit | 0ece30dc7c0e34b4c5911969b8fa99c33c6d023c (patch) | |
tree | 671325d3fec09b999411e4e3ab84ef8259261818 /protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj | |
parent | 46c53ffc6809c67e4607e99951a2846c382b63b2 (diff) |
Telegram: update for TDLIB
Diffstat (limited to 'protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj')
-rw-r--r-- | protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj | 64 |
1 files changed, 49 insertions, 15 deletions
diff --git a/protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj b/protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj index ea2ad56532..6a511d8f74 100644 --- a/protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj +++ b/protocols/Telegram/tdlib/td/example/csharp/TdExample.csproj @@ -33,6 +33,24 @@ <PropertyGroup> <RootNamespace>TdExample</RootNamespace> </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> + <DebugSymbols>true</DebugSymbols> + <OutputPath>bin\x64\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <DebugType>full</DebugType> + <PlatformTarget>x64</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> + <OutputPath>bin\x64\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <Optimize>true</Optimize> + <DebugType>pdbonly</DebugType> + <PlatformTarget>x64</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + </PropertyGroup> <ItemGroup> <Reference Include="Microsoft.CSharp" /> <Reference Include="System" /> @@ -43,38 +61,54 @@ <Reference Include="System.Xml.Linq" /> <Reference Include="Telegram.Td, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64"> <SpecificVersion>False</SpecificVersion> - <HintPath Condition=" '$(Configuration)' == 'Debug' ">build\Debug\Telegram.Td.dll</HintPath> - <HintPath Condition=" '$(Configuration)' == 'Release' ">build\Release\Telegram.Td.dll</HintPath> + <HintPath Condition=" '$(Platform)' == 'x86' ">build\$(Configuration)\Telegram.Td.dll</HintPath> + <HintPath Condition=" '$(Platform)' == 'x64' ">build64\$(Configuration)\Telegram.Td.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <Compile Include="TdExample.cs" /> </ItemGroup> - <ItemGroup Condition=" '$(Configuration)' == 'Debug' "> - <Content Include="build\Debug\LIBEAY32.dll"> - <Link>LIBEAY32.dll</Link> + <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <Content Include="build\Debug\zlibd1.dll"> + <Link>zlibd1.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Include="build\Debug\SSLEAY32.dll"> - <Link>SSLEAY32.dll</Link> + </ItemGroup> + <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <Content Include="build\Release\zlib1.dll"> + <Link>zlib1.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Include="build\Debug\zlibd1.dll"> + </ItemGroup> + <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> + <Content Include="build64\Debug\zlibd1.dll"> <Link>zlibd1.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup> - <ItemGroup Condition=" '$(Configuration)' == 'Release' "> - <Content Include="build\Release\LIBEAY32.dll"> - <Link>LIBEAY32.dll</Link> + <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> + <Content Include="build64\Release\zlib1.dll"> + <Link>zlib1.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Include="build\Release\SSLEAY32.dll"> - <Link>SSLEAY32.dll</Link> + </ItemGroup> + <ItemGroup Condition=" '$(Platform)' == 'x86' "> + <Content Include="build\$(Configuration)\libcrypto-1_1.dll"> + <Link>libcrypto-1_1.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Include="build\Release\zlib1.dll"> - <Link>zlib1.dll</Link> + <Content Include="build\$(Configuration)\libssl-1_1.dll"> + <Link>libssl-1_1.dll</Link> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + </ItemGroup> + <ItemGroup Condition=" '$(Platform)' == 'x64' "> + <Content Include="build64\$(Configuration)\libcrypto-1_1-x64.dll"> + <Link>libcrypto-1_1-x64.dll</Link> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> + <Content Include="build64\$(Configuration)\libssl-1_1-x64.dll"> + <Link>libssl-1_1-x64.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup> |