mirror of
https://github.com/salexdv/Telemonitor1C.git
synced 2025-02-21 19:06:45 +02:00
78 lines
3.1 KiB
XML
78 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
|
|
<PropertyGroup>
|
|
<ProjectGuid>{0A4153D9-1029-4131-9D43-F4734D97F2AB}</ProjectGuid>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>Telemonitor</RootNamespace>
|
|
<AssemblyName>Telemonitor</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<TargetFrameworkProfile />
|
|
<ApplicationIcon>pic\Telemonitor_logo.ico</ApplicationIcon>
|
|
<NoWin32Manifest>False</NoWin32Manifest>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<DebugType>Full</DebugType>
|
|
<Optimize>False</Optimize>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DebugSymbols>False</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
<Optimize>True</Optimize>
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>Newtonsoft.Json.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="iniFile.cs" />
|
|
<Compile Include="Logger.cs" />
|
|
<Compile Include="MainForm.cs" />
|
|
<Compile Include="MainForm.Designer.cs">
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="PostData.cs" />
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Service.cs" />
|
|
<Compile Include="Settings.cs" />
|
|
<Compile Include="Structures.cs" />
|
|
<Compile Include="TelegramAnswer.cs" />
|
|
<Compile Include="TelegramAnswerMessage.cs" />
|
|
<Compile Include="TelegramCommand.cs" />
|
|
<Compile Include="TelegramGroupChat.cs" />
|
|
<Compile Include="TelegramMessage.cs" />
|
|
<Compile Include="TelegramUpdate.cs" />
|
|
<Compile Include="TelegramUser.cs" />
|
|
<Compile Include="TelegramWorker.cs" />
|
|
<Compile Include="V8Answer.cs" />
|
|
<Compile Include="V8Connector.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="MainForm.resx">
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="app.config" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |