UAS_PRINT.csproj 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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>{B8BBF7C9-BCCA-49B0-BC22-6519B594AB19}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>UAS_PRINT</RootNamespace>
  11. <AssemblyName>UAS_PRINT</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PropertyGroup>
  35. <ApplicationIcon>print.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="FastReport, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>.\FastReport.dll</HintPath>
  41. </Reference>
  42. <Reference Include="FastReport.Bars, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>.\FastReport.Bars.dll</HintPath>
  45. </Reference>
  46. <Reference Include="FastReport.Editor, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>.\FastReport.Editor.dll</HintPath>
  49. </Reference>
  50. <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  51. <HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
  52. <Private>True</Private>
  53. </Reference>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core" />
  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. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="Form2.cs">
  67. <SubType>Form</SubType>
  68. </Compile>
  69. <Compile Include="Form2.Designer.cs">
  70. <DependentUpon>Form2.cs</DependentUpon>
  71. </Compile>
  72. <Compile Include="ftpOperater.cs" />
  73. <Compile Include="PrinterList.cs">
  74. <SubType>Form</SubType>
  75. </Compile>
  76. <Compile Include="PrinterList.Designer.cs">
  77. <DependentUpon>PrinterList.cs</DependentUpon>
  78. </Compile>
  79. <Compile Include="PrintHandler.cs" />
  80. <Compile Include="PrintHelper.cs" />
  81. <Compile Include="Program.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="Settings.cs" />
  84. <EmbeddedResource Include="Form2.resx">
  85. <DependentUpon>Form2.cs</DependentUpon>
  86. </EmbeddedResource>
  87. <EmbeddedResource Include="PrinterList.resx">
  88. <DependentUpon>PrinterList.cs</DependentUpon>
  89. </EmbeddedResource>
  90. <EmbeddedResource Include="Properties\Resources.resx">
  91. <Generator>ResXFileCodeGenerator</Generator>
  92. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  93. <SubType>Designer</SubType>
  94. </EmbeddedResource>
  95. <Compile Include="Properties\Resources.Designer.cs">
  96. <AutoGen>True</AutoGen>
  97. <DependentUpon>Resources.resx</DependentUpon>
  98. </Compile>
  99. <None Include="app.config" />
  100. <None Include="packages.config" />
  101. <None Include="Properties\Settings.settings">
  102. <Generator>SettingsSingleFileGenerator</Generator>
  103. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  104. </None>
  105. <Compile Include="Properties\Settings.Designer.cs">
  106. <AutoGen>True</AutoGen>
  107. <DependentUpon>Settings.settings</DependentUpon>
  108. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  109. </Compile>
  110. </ItemGroup>
  111. <ItemGroup>
  112. <None Include="print.ico" />
  113. </ItemGroup>
  114. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  115. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  116. Other similar extension points exist, see Microsoft.Common.targets.
  117. <Target Name="BeforeBuild">
  118. </Target>
  119. <Target Name="AfterBuild">
  120. </Target>
  121. -->
  122. </Project>