DRGInterfaceClient.csproj 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{C1A2B3D4-0000-0000-0000-0000000000A1}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>DRG.DRGInterfaceClient</RootNamespace>
  10. <AssemblyName>DRGInterfaceClient</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <StartupObject>DRG.DRGInterfaceClient.Program</StartupObject>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Configuration" />
  37. <Reference Include="System.Drawing" />
  38. <Reference Include="System.Net.Http" />
  39. <Reference Include="System.Web.Extensions" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Config.cs" />
  45. <Compile Include="Logger.cs" />
  46. <Compile Include="SessionBuilder.cs" />
  47. <Compile Include="DrgApiClient.cs" />
  48. <Compile Include="TaskSchedulerHelper.cs" />
  49. <Compile Include="SchedulerService.cs" />
  50. <Compile Include="HeadlessRunner.cs" />
  51. <Compile Include="TrayIcon.cs" />
  52. <Compile Include="MainForm.cs">
  53. <SubType>Form</SubType>
  54. </Compile>
  55. <Compile Include="Program.cs" />
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Include="appsettings.json">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </None>
  62. <None Include="README.md">
  63. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  64. </None>
  65. </ItemGroup>
  66. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  67. </Project>