- adding RequestUserLocation and RequestUserContact to Device class - Update to Device class - updating examples - adding example for data upload - small documentary Updates (Readme.md)
98 lines
4.2 KiB
XML
98 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.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')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{A61EDA27-CFDF-4BCB-B2D6-184F94904F2D}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>TelegramBotBase</RootNamespace>
|
|
<AssemblyName>TelegramBotBase</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Release\TelegramBotBase.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.ComponentModel.Composition" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.Numerics" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Base\ButtonClickedEventArgs.cs" />
|
|
<Compile Include="Base\ControlBase.cs" />
|
|
<Compile Include="Base\DataResult.cs" />
|
|
<Compile Include="Base\MessageClient.cs" />
|
|
<Compile Include="Base\MessageIncomeResult.cs" />
|
|
<Compile Include="Base\MessageResult.cs" />
|
|
<Compile Include="Base\MessageSentEventArgs.cs" />
|
|
<Compile Include="Base\ResultBase.cs" />
|
|
<Compile Include="Base\SessionBeginResult.cs" />
|
|
<Compile Include="Base\SystemExceptionEventArgs.cs" />
|
|
<Compile Include="Base\UnhandledCallEventArgs.cs" />
|
|
<Compile Include="Base\SystemCallEventArgs.cs" />
|
|
<Compile Include="BotBase.cs" />
|
|
<Compile Include="Controls\ProgressBar.cs" />
|
|
<Compile Include="Form\AlertDialog.cs" />
|
|
<Compile Include="Form\ArrayPromptDialog.cs" />
|
|
<Compile Include="Form\AutoCleanForm.cs" />
|
|
<Compile Include="Form\ButtonBase.cs" />
|
|
<Compile Include="Form\ButtonForm.cs" />
|
|
<Compile Include="Base\FormBase.cs" />
|
|
<Compile Include="Form\CallbackData.cs" />
|
|
<Compile Include="Form\PromptDialog.cs" />
|
|
<Compile Include="SessionBase.cs" />
|
|
<Compile Include="Sessions\DeviceSession.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Tools\Images.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
<Version>11.0.2</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Net.Requests">
|
|
<Version>4.3.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Telegram.Bot">
|
|
<Version>14.10.0</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |