ssh-handler.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{2DE445A6-C911-4931-A971-09E5C61DD470}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ssh_handler</RootNamespace>
  11. <AssemblyName>ssh-handler</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <IsWebBootstrapper>false</IsWebBootstrapper>
  15. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  16. <PublishUrl>publish\</PublishUrl>
  17. <Install>true</Install>
  18. <InstallFrom>Disk</InstallFrom>
  19. <UpdateEnabled>false</UpdateEnabled>
  20. <UpdateMode>Foreground</UpdateMode>
  21. <UpdateInterval>7</UpdateInterval>
  22. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  23. <UpdatePeriodically>false</UpdatePeriodically>
  24. <UpdateRequired>false</UpdateRequired>
  25. <MapFileExtensions>true</MapFileExtensions>
  26. <ApplicationRevision>0</ApplicationRevision>
  27. <ApplicationVersion>1.1.0.%2a</ApplicationVersion>
  28. <UseApplicationTrust>false</UseApplicationTrust>
  29. <BootstrapperEnabled>true</BootstrapperEnabled>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  32. <PlatformTarget>AnyCPU</PlatformTarget>
  33. <DebugSymbols>true</DebugSymbols>
  34. <DebugType>full</DebugType>
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  42. <PlatformTarget>AnyCPU</PlatformTarget>
  43. <DebugType>pdbonly</DebugType>
  44. <Optimize>true</Optimize>
  45. <OutputPath>bin\Release\</OutputPath>
  46. <DefineConstants>TRACE</DefineConstants>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="PresentationCore" />
  52. <Reference Include="PresentationFramework" />
  53. <Reference Include="System" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Xaml" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="System.Data.DataSetExtensions" />
  58. <Reference Include="Microsoft.CSharp" />
  59. <Reference Include="System.Data" />
  60. <Reference Include="System.Deployment" />
  61. <Reference Include="System.Drawing" />
  62. <Reference Include="System.Windows.Forms" />
  63. <Reference Include="System.Xml" />
  64. <Reference Include="WindowsBase" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="AbstractHandler.cs" />
  68. <Compile Include="AutoYesNoOption.cs" />
  69. <Compile Include="Handler.cs" />
  70. <Compile Include="MatchOption.cs" />
  71. <Compile Include="OpensshHandler.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="PuttyHandler.cs" />
  74. <Compile Include="SshHandler.cs" />
  75. <Compile Include="SshHandlerSettings.xaml.cs">
  76. <DependentUpon>SshHandlerSettings.xaml</DependentUpon>
  77. </Compile>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  81. <Visible>False</Visible>
  82. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  83. <Install>true</Install>
  84. </BootstrapperPackage>
  85. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  86. <Visible>False</Visible>
  87. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  88. <Install>false</Install>
  89. </BootstrapperPackage>
  90. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  91. <Visible>False</Visible>
  92. <ProductName>.NET Framework 3.5 SP1</ProductName>
  93. <Install>false</Install>
  94. </BootstrapperPackage>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <None Include="app.config" />
  98. </ItemGroup>
  99. <ItemGroup>
  100. <Page Include="SshHandlerSettings.xaml">
  101. <SubType>Designer</SubType>
  102. <Generator>MSBuild:Compile</Generator>
  103. </Page>
  104. </ItemGroup>
  105. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  106. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  107. Other similar extension points exist, see Microsoft.Common.targets.
  108. <Target Name="BeforeBuild">
  109. </Target>
  110. <Target Name="AfterBuild">
  111. </Target>
  112. -->
  113. </Project>